cs205-lecture-examples

Example codes used during Harvard CS205 lectures
git clone https://git.0xfab.ch/cs205-lecture-examples.git
Log | Files | Refs | README | LICENSE

reverse_load_store.c (89B)


      1 #include <x86intrin.h>
      2 void f(float *a, float *b) { _mm_storeu_ps(b, _mm_loadr_ps(a)); }