You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trigonometric functions, ex. _mm256_sin_ps, are now only available when using intel compiler and intel svml library found. We could integrate the intrinsics below into vec.h to improve the performance of helmholtz kernel when using gcc.
This is something that was done in the previous exafmm using Agner Fog's vectorclass. https://www.agner.org/optimize/vectorclass/read.php?i=2
It's like a more complete version of vec.h with all possible functions implemented for SSE, AVX, AVX2, AVX512.
I stopped using it because it had some problems on some machines we were using.
Maybe these problems have been fixed so we can use it again.
Take a look at how it was done in the older versions of exafmm.
I don't remember exactly which version of exafmm it was.
I think it was exafmm-beta in an older revision.
Trigonometric functions, ex.
_mm256_sin_ps
, are now only available when using intel compiler and intel svml library found. We could integrate the intrinsics below intovec.h
to improve the performance of helmholtz kernel when using gcc.http://software-lisc.fbk.eu/avx_mathfun/avx_mathfun.h
http://gruntthepeon.free.fr/ssemath/
The text was updated successfully, but these errors were encountered: