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:
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 For enabling autovectorization (GCC V4.4.0), we need to following steps:
|
||||
|
|