Lines Matching refs:HostMirrorMemorySpace
10 using HostMirrorMemorySpace = Kokkos::DualView<PetscScalar *>::host_mirror_space::memory_space; typedef
96 Kokkos::View<PetscScalar *, HostMirrorMemorySpace> a_local_h; in main()
97 Kokkos::View<PetscInt *, HostMirrorMemorySpace> i_local_h; in main()
98 Kokkos::View<PetscInt *, HostMirrorMemorySpace> j_local_h; in main()
99 Kokkos::View<PetscScalar *, HostMirrorMemorySpace> a_nonlocal_h; in main()
100 Kokkos::View<PetscInt *, HostMirrorMemorySpace> i_nonlocal_h; in main()
101 Kokkos::View<PetscInt *, HostMirrorMemorySpace> j_nonlocal_h; in main()
103 PetscCallCXX(a_local_h = Kokkos::View<PetscScalar *, HostMirrorMemorySpace>(da, di[5])); in main()
104 PetscCallCXX(i_local_h = Kokkos::View<PetscInt *, HostMirrorMemorySpace>(di, m + 1)); in main()
105 PetscCallCXX(j_local_h = Kokkos::View<PetscInt *, HostMirrorMemorySpace>(dj, di[5])); in main()
106 PetscCallCXX(a_nonlocal_h = Kokkos::View<PetscScalar *, HostMirrorMemorySpace>(oa, oi[5])); in main()
107 PetscCallCXX(i_nonlocal_h = Kokkos::View<PetscInt *, HostMirrorMemorySpace>(oi, m + 1)); in main()
108 PetscCallCXX(j_nonlocal_h = Kokkos::View<PetscInt *, HostMirrorMemorySpace>(oj, oi[5])); in main()