Open pkestene opened 11 months ago
A tentative fix for this example.
the type simd::simd<double,simd::simd_abi::cuda_warp<32>>, used in the old example, disappeared, so replaced by simd_t = Kokkos::Experimental::native_simd<double> which width/ simd size is 1 when exec space is Cuda (scalar type).
simd::simd<double,simd::simd_abi::cuda_warp<32>>
simd_t = Kokkos::Experimental::native_simd<double>
A tentative fix for this example.
the type
simd::simd<double,simd::simd_abi::cuda_warp<32>>
, used in the old example, disappeared, so replaced bysimd_t = Kokkos::Experimental::native_simd<double>
which width/ simd size is 1 when exec space is Cuda (scalar type).