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
Instead of expecting the user to set `SIMD_CP`U for GPU builds it may be possible to check of AMReX itself was built with GPU support (via AMREX_USE_GPU which is defined in AMReX/include/AMReX_Config.H).
The text was updated successfully, but these errors were encountered:
The problem is that neither nvcc nor hipcc can handle the Intel SIMD intrinsics. They report errors when reading the respective header files for various reasons, e.g. hipcc claims that float16 is not a type that can be vectorized. (It can.) We thus need to disable SIMD vectorization for these compilers. This is more of a compiler problem that we need to work around than a fundamental design issue.
Instead of expecting the user to set `SIMD_CP`U for GPU builds it may be possible to check of AMReX itself was built with GPU support (via
AMREX_USE_GPU
which is defined inAMReX/include/AMReX_Config.H
).The text was updated successfully, but these errors were encountered: