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
{{ message }}
This repository has been archived by the owner on May 6, 2024. It is now read-only.
The checks in mathfu/utilities.h to enable MATHFU_COMPILE_WITH_SIMD don't cover Visual Studio x64 targets. The code currently checks the existence (and value) of _M_IX86_FP, which is only defined for x86 (32-bit) targets. SSE and SSE2 support is implicit on x64 targets, which can be handled with the following addition (or similar):
Just did, thank you. Indeed x64 is irrelevant to the issue you mentioned, I was running my bench in x86.
For me the way the lib was designed and coded make its hard to really benefit of SSE2 Instruction as there're still conversion, copy constructors, temp objects...
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The checks in
mathfu/utilities.h
to enableMATHFU_COMPILE_WITH_SIMD
don't cover Visual Studio x64 targets. The code currently checks the existence (and value) of_M_IX86_FP
, which is only defined for x86 (32-bit) targets. SSE and SSE2 support is implicit on x64 targets, which can be handled with the following addition (or similar):The text was updated successfully, but these errors were encountered: