From bebcf360d8efb20af32f9254ef79ac71b3521e15 Mon Sep 17 00:00:00 2001 From: Vinh Dang Date: Mon, 3 Apr 2023 15:04:20 -0600 Subject: [PATCH] Using Kokkos::ArithTraits instead of Kokkos::Details::ArithTraits --- sparse/unit_test/Test_Sparse_spiluk.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sparse/unit_test/Test_Sparse_spiluk.hpp b/sparse/unit_test/Test_Sparse_spiluk.hpp index 44e9c37258..d6ffa5f46c 100644 --- a/sparse/unit_test/Test_Sparse_spiluk.hpp +++ b/sparse/unit_test/Test_Sparse_spiluk.hpp @@ -276,7 +276,7 @@ void run_test_spiluk_streams(int test_algo, int nstreams) { using KernelHandle = KokkosKernels::Experimental::KokkosKernelsHandle< size_type, lno_t, scalar_t, execution_space, memory_space, memory_space>; using crsMat_t = CrsMatrix; - using AT = Kokkos::Details::ArithTraits; + using AT = Kokkos::ArithTraits; const size_type nrows = 9; const size_type nnz = 21;