Lines Matching refs:PetscCallCXX

83     PetscCallCXX(a_local_d = Kokkos::View<PetscScalar *>("a_local_d", di[5]));  in main()
84 PetscCallCXX(i_local_d = Kokkos::View<PetscInt *>("i_local_d", m + 1)); in main()
85 PetscCallCXX(j_local_d = Kokkos::View<PetscInt *>("j_local_d", di[5])); in main()
88 PetscCallCXX(a_nonlocal_d = Kokkos::View<PetscScalar *>("a_nonlocal_d", oi[5])); in main()
89 PetscCallCXX(i_nonlocal_d = Kokkos::View<PetscInt *>("i_nonlocal_d", m + 1)); in main()
90 PetscCallCXX(j_nonlocal_d = Kokkos::View<PetscInt *>("j_nonlocal_d", oi[5])); 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()
112 PetscCallCXX(Kokkos::deep_copy(a_local_d, a_local_h)); in main()
113 PetscCallCXX(Kokkos::deep_copy(i_local_d, i_local_h)); in main()
114 PetscCallCXX(Kokkos::deep_copy(j_local_d, j_local_h)); in main()
115 PetscCallCXX(Kokkos::deep_copy(a_nonlocal_d, a_nonlocal_h)); in main()
116 PetscCallCXX(Kokkos::deep_copy(i_nonlocal_d, i_nonlocal_h)); in main()
117 PetscCallCXX(Kokkos::deep_copy(j_nonlocal_d, j_nonlocal_h)); in main()