src/share/cxx/RemapFunctor.hpp(458): warning: calling a __host__ function("__builtin_isnan") from a __host__ __device__ function("Kokkos::parallel_reduce<int, ::, int> ") is not allowed
--expt-relaxed-constexpr is not sufficient. Cuda provides its own
isnan. We can abstract Cuda's isnan vs std::isnan in ExecSpaceDefs.
GPU tests are failing because of
--expt-relaxed-constexpr
is not sufficient. Cuda provides its own isnan. We can abstract Cuda's isnan vsstd::isnan
in ExecSpaceDefs.