xref: /petsc/include/petscvec_kokkos.hpp (revision f0b74427b291237450348b8514d67555ad08bce6)
1 #pragma once
2 
3 #include <petscconf.h>
4 
5 /* SUBMANSEC = Vec */
6 
7 #if defined(PETSC_HAVE_KOKKOS)
8   #if defined(petsccomplexlib)
9     #error "Error: You must include petscvec_kokkos.hpp before other PETSc headers in this C++ file to use PetscComplex with Kokkos"
10   #endif
11 
12   #define PETSC_DESIRE_KOKKOS_COMPLEX 1 /* To control the definition of petsccomplexlib in petscsystypes.h */
13 #endif
14 
15 #include <petscvec.h>
16 
17 #if defined(PETSC_HAVE_KOKKOS)
18   #include <Kokkos_Core.hpp>
19 
20 /*@C
21      VecGetKokkosView - Returns a constant Kokkos View that contains up-to-date data of a vector in the specified memory space.
22 
23    Synopsis:
24    #include <petscvec_kokkos.hpp>
25    PetscErrorCode VecGetKokkosView  (Vec v,Kokkos::View<const PetscScalar*,MemorySpace>* kv);
26    PetscErrorCode VecGetKokkosView  (Vec v,Kokkos::View<PetscScalar*,MemorySpace>* kv);
27 
28    Logically Collective, No Fortran Support
29 
30    Input Parameter:
31 .  v - the vector in type of `VECKOKKOS`
32 
33    Output Parameter:
34 .  kv - the Kokkos View with a user-specified template parameter MemorySpace
35 
36    Level: beginner
37 
38    Notes:
39    If the vector is not of type `VECKOKKOS`, an error will be raised.
40 
41    The functions are similar to `VecGetArrayRead()` and `VecGetArray()` respectively. One can read-only or read/write the returned Kokkos View.
42 
43    Passing in a const View enables read-only access.
44 
45    One must return the View by a matching `VecRestoreKokkosView()` after finishing using the View. Currently, only two memory
46    spaces are supported: HostMirrorMemorySpace and Kokkos::DefaultExecutionSpace::memory_space.
47    If needed, a memory copy will be internally called to copy the latest vector data to the specified memory space.
48 
49 .seealso: `VecRestoreKokkosView()`, `VecRestoreArray()`, `VecGetKokkosViewWrite()`, `VecGetArrayRead()`, `VecGetArrays()`, `VecPlaceArray()`, `VecGetArray2d()`,
50           `VecGetArrayPair()`, `VecRestoreArrayPair()`, `VecGetArrayWrite()`, `VecRestoreArrayWrite()`
51 @*/
52 template <class MemorySpace>
53 PetscErrorCode VecGetKokkosView(Vec, Kokkos::View<const PetscScalar *, MemorySpace> *);
54 template <class MemorySpace>
55 PetscErrorCode VecGetKokkosView(Vec, Kokkos::View<PetscScalar *, MemorySpace> *);
56 
57 /*@C
58    VecRestoreKokkosView - Returns a Kokkos View gotten by `VecGetKokkosView()`.
59 
60    Synopsis:
61    #include <petscvec_kokkos.hpp>
62    PetscErrorCode VecRestoreKokkosView  (Vec v,Kokkos::View<const PetscScalar*,MemorySpace>* kv);
63    PetscErrorCode VecRestoreKokkosView  (Vec v,Kokkos::View<PetscScalar*,MemorySpace>* kv);
64 
65    Logically Collective, No Fortran Support
66 
67    Input Parameters:
68 +  v  - the vector in type of `VECKOKKOS`
69 -  kv - the Kokkos View with a user-specified template parameter MemorySpace
70 
71    Level: beginner
72 
73    Note:
74    If the vector is not of type `VECKOKKOS`, an error will be raised.
75    The functions are similar to `VecRestoreArrayRead()` and `VecRestoreArray()` respectively. They are the counterpart of `VecGetKokkosView()`.
76 
77 .seealso: `VecGetKokkosView()`, `VecRestoreKokkosViewWrite()`, `VecRestoreArray()`, `VecGetArrayRead()`, `VecGetArrays()`, `VecPlaceArray()`, `VecGetArray2d()`,
78           `VecGetArrayPair()`, `VecRestoreArrayPair()`, `VecGetArrayWrite()`, `VecRestoreArrayWrite()`
79 @*/
80 template <class MemorySpace>
81 PetscErrorCode VecRestoreKokkosView(Vec, Kokkos::View<const PetscScalar *, MemorySpace> *)
82 {
83   return PETSC_SUCCESS;
84 }
85 template <class MemorySpace>
86 PetscErrorCode VecRestoreKokkosView(Vec, Kokkos::View<PetscScalar *, MemorySpace> *);
87 
88 /*@C
89    VecGetKokkosViewWrite - Returns a Kokkos View that contains the array of a vector in the specified memory space.
90 
91    Synopsis:
92    #include <petscvec_kokkos.hpp>
93    PetscErrorCode VecGetKokkosViewWrite  (Vec v,Kokkos::View<PetscScalar*,MemorySpace>* kv);
94 
95    Logically Collective, No Fortran Support
96 
97    Input Parameter:
98 .  v - the vector in type of `VECKOKKOS`
99 
100    Output Parameter:
101 .  kv - the Kokkos View with a user-specified template parameter MemorySpace
102 
103    Level: beginner
104 
105    Notes:
106    If the vector is not of type `VECKOKKOS`, an error will be raised.
107 
108    The functions is similar to `VecGetArrayWrite()`. The returned view might contain garbage data or stale data and one is not
109    expected to read data from the View. Instead, one is expected to overwrite all data in the View.
110    One must return the View by a matching `VecRestoreKokkosViewWrite()` after finishing using the View.
111 
112    Currently, only two memory spaces are supported: HostMirrorMemorySpace and Kokkos::DefaultExecutionSpace::memory_space.
113 
114 .seealso: `VecRestoreKokkosViewWrite()`, `VecRestoreKokkosView()`, `VecGetKokkosView()`, `VecRestoreArray()`, `VecGetArrayRead()`, `VecGetArrays()`, `VecPlaceArray()`, `VecGetArray2d()`,
115           `VecGetArrayPair()`, `VecRestoreArrayPair()`, `VecGetArrayWrite()`, `VecRestoreArrayWrite()`
116 @*/
117 template <class MemorySpace>
118 PetscErrorCode VecGetKokkosViewWrite(Vec, Kokkos::View<PetscScalar *, MemorySpace> *);
119 
120 /*@C
121    VecRestoreKokkosViewWrite - Returns a Kokkos View gotten with `VecGetKokkosViewWrite()`.
122 
123    Synopsis:
124    #include <petscvec_kokkos.hpp>
125    PetscErrorCode VecRestoreKokkosViewWrite  (Vec v,Kokkos::View<PetscScalar*,MemorySpace>* kv);
126 
127    Logically Collective, No Fortran Support
128 
129    Input Parameters:
130 +  v  - the vector in type of `VECKOKKOS`
131 -  kv - the Kokkos View with a user-specified template parameter MemorySpace
132 
133    Level: beginner
134 
135    Notes:
136    If the vector is not of type `VECKOKKOS`, an error will be raised.
137 
138    The function is similar to `VecRestoreArrayWrite()`. It is the counterpart of `VecGetKokkosViewWrite()`.
139 
140 .seealso: `VecGetKokkosViewWrite()`, `VecGetKokkosView()`, `VecGetKokkosView()`, `VecRestoreArray()`, `VecGetArrayRead()`, `VecGetArrays()`, `VecPlaceArray()`, `VecGetArray2d()`,
141           `VecGetArrayPair()`, `VecRestoreArrayPair()`, `VecGetArrayWrite()`, `VecRestoreArrayWrite()`
142 @*/
143 template <class MemorySpace>
144 PetscErrorCode VecRestoreKokkosViewWrite(Vec, Kokkos::View<PetscScalar *, MemorySpace> *);
145 
146   #if defined(PETSC_HAVE_COMPLEX) && defined(PETSC_USE_COMPLEX)
147 static_assert(std::alignment_of<Kokkos::complex<PetscReal>>::value == std::alignment_of<std::complex<PetscReal>>::value,
148               "Alignment of Kokkos::complex<PetscReal> and std::complex<PetscReal> mismatch. Reconfigure your Kokkos with -DKOKKOS_ENABLE_COMPLEX_ALIGN=OFF, or let PETSc install Kokkos for you with --download-kokkos --download-kokkos-kernels");
149   #endif
150 
151 #endif
152