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?
|
|
|||
|
|
|
This page offers details on getting gcc to automatically vectorize loops, including a few examples: http://gcc.gnu.org/projects/tree-ssa/vectorization.html In summary, the following options will work for x86 chips with SSE2, giving a log of loops that have been vectorized: gcc -O2 -ftree-vectorize -msse2 -ftree-vectorizer-verbose=5 Note that -msse is also a possibility, but it will only vectorize loops using floats, not doubles or ints. |
||
|
|
|
|
There is a gimple (an Intermediate Representation of GCC) pass "pass_vectorize". This pass will enable auto-vectorization at gimple level. For enabling autovectorization (GCC V4.4.0), we need to following steps VECTOR_MODES (INT, 8); /* V8QI V4HI V2SI */ 4) Build the port. Vectorization can be enabled using the command line options -O2 -ftree-vectorize. |
||
|
|
