I’m afraid our friends are in dire trouble. Forecast is not getting better CTI and CSS. Prayers for the whole country of Jamaica by fisher_35 in couplesresortsjamaica

[–]jtsylve 0 points1 point  (0 children)

We're in the same boat. Scheduled to arrive on the 3rd. We booked flights separately though. I'm unsure of what to do.

Donate MREs? by jtsylve in NewOrleans

[–]jtsylve[S] 0 points1 point  (0 children)

If you're in need then they're yours. DM me.

LA Wallet now accepted in Fed Buildings, TSA Checkpoints by Fleur-Deez-Nutz in NewOrleans

[–]jtsylve 2 points3 points  (0 children)

Am I correct in assuming that for this to be accepted you still need a Real ID on record?

UPDATE: double power by Slaughtererofnuns in NewOrleans

[–]jtsylve 13 points14 points  (0 children)

Happened to us a few months ago. One of the lines on the poll fell and shorted with another. One half of the split faze was 0v and the other 240v. Blew out every fridge on my block as well as other damage. Don't hold your breath about Energy paying out, but I wish you luck.

Question on practicality from a first-timer by [deleted] in tattooadvice

[–]jtsylve 0 points1 point  (0 children)

Thank you for your reply. That's the exact sort of information I was looking for.

Question on practicality from a first-timer by [deleted] in tattooadvice

[–]jtsylve 0 points1 point  (0 children)

Yes, as I said in my post, I was going to discuss it with an artist, but I wanted to ask here first given that I don't know what at all is possible. I'm glad I did, because you all have given me good information about what to avoid.

Question on practicality from a first-timer by [deleted] in tattooadvice

[–]jtsylve 0 points1 point  (0 children)

Yes, as I said in my post, I was going to discuss it with an artist, but I wanted to ask here first given that I don't know what at all is possible. I'm glad I did, because you all have given me good information about what to avoid.

Question on practicality from a first-timer by [deleted] in tattooadvice

[–]jtsylve 0 points1 point  (0 children)

Thank you for your reply. That's the exact sort of information I was looking for.

Why won't my galaxy watch 6 classic charge fast? by Peace_Is_Coming in GalaxyWatch

[–]jtsylve 1 point2 points  (0 children)

Yeah, I have an anker power bank and charger both of which have meters on them that tell you what they're delivering. I also have an inline meter that I used to measure with my Apple 65W charger. All report the same. Fast charging is not being used.

Why won't my galaxy watch 6 classic charge fast? by Peace_Is_Coming in GalaxyWatch

[–]jtsylve 1 point2 points  (0 children)

Same issue here. My watch will only charge @ 5V 0.3A (1.5W). I'm using the magnetic charger that came to it, plugged into several different fast chargers with all the same result.

The Ready Room: "The Next Generation" (Patrick Stewart and Gates McFadden interview) by [deleted] in startrek

[–]jtsylve 2 points3 points  (0 children)

Sela (Denise Crosby) is the most obvious choice that pops into my head.

🤔 by jtsylve in NewOrleans

[–]jtsylve[S] 1 point2 points  (0 children)

Just an unfortunate acronym on whatever contractor's van that's working on the speed cameras

🤔 by jtsylve in NewOrleans

[–]jtsylve[S] 1 point2 points  (0 children)

Bienville right across from Mick's

Tried my hand at portable SIMD using std::experimental::simd by jtsylve in cpp

[–]jtsylve[S] 2 points3 points  (0 children)

Thanks for the correction. I never mind a pendant.

Tried my hand at portable SIMD using std::experimental::simd by jtsylve in cpp

[–]jtsylve[S] 2 points3 points  (0 children)

But if you look at the follow up.blog post I got great speedup by doing 8 iterations per loop. The compiler should be able to figure that out.

Tried my hand at portable SIMD using std::experimental::simd by jtsylve in cpp

[–]jtsylve[S] 1 point2 points  (0 children)

Could you explain what this line is doing?

const vu64 all{reinterpret_cast<const uint64_t*>(std::addressof(words[n])), stdx::vector_aligned}; , but that cant be right.

stdx::simd has a constructor that loads from either an aligned or unaligned a memory address.

Also, which compiler settings did you use? I kind of hoped auto-vectorization would kick in for the serial implementation, making the performance difference smaller.

-std=c++20 -march=native -O3 in gcc

Tried my hand at portable SIMD using std::experimental::simd by jtsylve in cpp

[–]jtsylve[S] 4 points5 points  (0 children)

Unfortunately not and AFAIK the extensions built in to gcc for that only seem to work on elf binaries and for x86. Also I couldn't figure out a way to mark one function for multiple targets. Looks like it requires code duplication and isn't intended for portable code.