The vector-processing tag has no wiki summary.
6
votes
2answers
522 views
How to find the horizontal maximum in a 256-bit AVX vector
I have a __m256d vector packed with four 64-bit floating-point values.
I need to find the horizontal maximum of the vector's elements and store the result in a double-precision scalar value;
My ...
3
votes
1answer
835 views
Fastest way to do horizontal vector sum with AVX instructions
I have a packed vector of four 64-bit floating-point values.
I would like to get the sum of the vector's elements.
With SSE (and using 32-bit floats) I could just do the following:
v_sum = ...
2
votes
2answers
236 views
Pluggable vector processing units in Clojure
I'm developing some simulation software in Clojure that will need to process lots of vector data (basically originating as offsets into arrays of Java floats, length typically in 10-10000 range). ...
3
votes
3answers
2k views
Auto-vectorizing vs. vectorized code by hand
Is it better in some sense to vectorize code by hand, using explicit pragmas or to rely on or use auto-vectorization? For optimum performance using auto-vectorization, one would have to monitor the ...
4
votes
5answers
1k views
Practical use of automatic vectorization?
Has anyone taken advantage of the automatic vectorization that gcc can do? In the real world (as opposed to example code)? Does it take restructuring of existing code to take advantage? Are there a ...
4
votes
9answers
2k views
What compilers besides gcc can vectorize code?
GCC can vectorize loops automatically when certain options are specified and given the right conditions. Are there other compilers widely available that can do the same?
9
votes
2answers
11k views
How to vectorize with gcc?
The v4 series of the gcc compiler can automatically vectorize loops using the SIMD processor some modern CPUs, such as the AMD Athlon or Intel Pentium/Core chips. How is this done?