Skip to content
Snippets Groups Projects
Commit 637cf7ae authored by James Willis's avatar James Willis
Browse files

Added unaligned vec_load.

parent 622df1ee
Branches
Tags
1 merge request!320Dopair1 vectorisation merge
......@@ -125,6 +125,7 @@
#define VEC_DBL __m256d
#define VEC_INT __m256i
#define vec_load(a) _mm256_load_ps(a)
#define vec_unaligned_load(a) _mm256_loadu_ps(a)
#define vec_store(a, addr) _mm256_store_ps(addr, a)
#define vec_unaligned_store(a, addr) _mm256_storeu_ps(addr, a)
#define vec_setzero() _mm256_setzero_ps()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment