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
#include "KokkosBatched_Vector_SIMD.hpp"
#include "Eigen/Core"
int main() {
return 0;
}
The problem here is that KokkosBatched_Vector_SIMD.hpp moves a #include <immintrin.h> inside the KokkosBatched::Experimental namespace. Thus the include of Eigen/Core will result in an error, because it's also using intrinsic functions (which are now inside the namespace).
I would suggest that you move the include of the intrinsic functions outside of the namespace.
The text was updated successfully, but these errors were encountered:
hcedwar
added a commit
to hcedwar/kokkos-kernels
that referenced
this issue
Oct 3, 2018
I'm trying to compile this:
The problem here is that KokkosBatched_Vector_SIMD.hpp moves a
#include <immintrin.h>
inside theKokkosBatched::Experimental
namespace. Thus the include of Eigen/Core will result in an error, because it's also using intrinsic functions (which are now inside the namespace).I would suggest that you move the include of the intrinsic functions outside of the namespace.
The text was updated successfully, but these errors were encountered: