Slashdot Mirror


User: zubab13

zubab13's activity in the archive.

Stories
0
Comments
3
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 3

  1. Re:Not sure why it's troubling. on Comparing G++ and Intel Compilers and Vectorized Code · · Score: 4, Informative

    Just use something like libsimdpp[1] and you are sure that your code stays vectorized between compiler versions. As a bonus, this and similar wrapper libraries give you an option to produce assembly for multiple instruction sets (say SSE2, AVX and NEON) from the same code. [1]: https://github.com/p12tic/libsimdpp

  2. Re:does the Intel one still slow down on AMD syste on Speed Test 2: Comparing C++ Compilers On WIndows · · Score: 1

    Sorry, my post was directed to the parent of your post. Somehow I misclicked somewhere and didn't notice.

  3. Re:does the Intel one still slow down on AMD syste on Speed Test 2: Comparing C++ Compilers On WIndows · · Score: 1

    Just use libsimdpp ( https://github.com/p12tic/libsimdpp ) or any of the myriad similar wrappers. With modest time investment you get almost optimal implementation for multiple instruction sets on any compiler you use.