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
Currently, a few files (model_parameters.cc, fm_score.cc, and ffm_score.cc) depend on SSE, which isn't available on arm64 (used by the new M1 Macs). It'd be nice if there was support for ARM in the future.
model_parameters.cc compiles with:
#if defined(__SSE__)
#include<pmmintrin.h>// for SSE
#endif
but it looks like fm_score.cc and ffm_score.cc need larger changes.
The text was updated successfully, but these errors were encountered:
Hi, thanks for this great library!
Currently, a few files (
model_parameters.cc
,fm_score.cc
, andffm_score.cc
) depend on SSE, which isn't available on arm64 (used by the new M1 Macs). It'd be nice if there was support for ARM in the future.model_parameters.cc
compiles with:but it looks like
fm_score.cc
andffm_score.cc
need larger changes.The text was updated successfully, but these errors were encountered: