Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README | 2013-01-10 | 301 Bytes | |
axpy.c | 2013-01-10 | 1.9 kB | |
Totals: 2 Items | 2.2 kB | 0 |
Source code which implements AXPY operation with Intel's SSE instructions. To compile without Intel's SSE invoke gnu-gcc compiler as: gcc -o axpy axpy.c -O2 -msse2 To compile with Intel's SSE invoke compiler as: gcc -o axpy axpy.c -O2 -msse2 -ftree-vectorize -march=x86-64 -ftree-vectorizer-verbose=5