Lines Matching refs:Kokkos
14 return Kokkos::view_alloc(Kokkos::WithoutInitializing, std::move(label));
49 using MatRowMapKokkosDualView = Kokkos::DualView<MatRowMapType *>;
50 using MatColIdxKokkosDualView = Kokkos::DualView<MatColIdxType *>;
51 using MatScalarKokkosDualView = Kokkos::DualView<MatScalarType *>;
55 using KokkosTeamMemberType = Kokkos::TeamPolicy<DefaultExecutionSpace>::member_type;
107 PetscBool host_aij_allocated_by_kokkos = PETSC_FALSE; /* Are host views of a, i, j in the duals allocated by Kokkos? */
132 auto a_d = Kokkos::create_mirror_view(Kokkos::WithoutInitializing, exec, a_h);
133 auto i_d = Kokkos::create_mirror_view_and_copy(exec, i_h);
134 auto j_d = Kokkos::create_mirror_view_and_copy(exec, j_h);
135 auto diag_d = Kokkos::create_mirror_view_and_copy(exec, diag_h);
155 auto a_h = Kokkos::create_mirror_view(Kokkos::WithoutInitializing, HostMirrorMemorySpace(), a_d);
156 auto i_h = Kokkos::create_mirror_view_and_copy(HostMirrorMemorySpace(), i_d);
157 auto j_h = Kokkos::create_mirror_view_and_copy(HostMirrorMemorySpace(), j_d);
189 auto diag_d = Kokkos::create_mirror_view_and_copy(DefaultMemorySpace(), diag_h);