Neko 1.99.9
A portable framework for high-order spectral element flow simulations
Loading...
Searching...
No Matches
ax_helm_svv_one_sided_full_device.F90
Go to the documentation of this file.
1! Copyright (c) 2025-2026, The Neko Authors
2! All rights reserved.
3!
4! Redistribution and use in source and binary forms, with or without
5! modification, are permitted provided that the following conditions
6! are met:
7!
8! * Redistributions of source code must retain the above copyright
9! notice, this list of conditions and the following disclaimer.
10!
11! * Redistributions in binary form must reproduce the above
12! copyright notice, this list of conditions and the following
13! disclaimer in the documentation and/or other materials provided
14! with the distribution.
15!
16! * Neither the name of the authors nor the names of its
17! contributors may be used to endorse or promote products derived
18! from this software without specific prior written permission.
19!
20! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21! "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22! LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23! FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24! COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25! INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26! BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27! LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28! CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29! LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30! ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31! POSSIBILITY OF SUCH DAMAGE.
32!
36 use num_types, only : rp
37 use coefs, only : coef_t
38 use space, only : space_t
39 use mesh, only : mesh_t
40 use device_math, only : device_addcol4
41 use device, only : device_get_ptr
42 use utils, only : neko_error
43 use, intrinsic :: iso_c_binding, only : c_ptr, c_int
44 implicit none
45 private
46
48 type, public, extends(ax_helm_svv_full_t) :: &
50 contains
52 procedure, pass(this) :: compute_vector => &
55
56#ifdef HAVE_HIP
57 interface
58 subroutine hip_ax_helm_svv_one_sided_full(au_d, av_d, aw_d, &
59 u_d, v_d, w_d, &
60 dx_d, dy_d, dz_d, h1_d, &
61 drdx_d, drdy_d, drdz_d, dsdx_d, dsdy_d, dsdz_d, &
62 dtdx_d, dtdy_d, dtdz_d, jacinv_d, w3_d, svv_h1_d, &
63 filter_r_d, filter_s_d, filter_t_d, nelv, lx) &
64 bind(c, name='hip_ax_helm_svv_one_sided_full')
65 use, intrinsic :: iso_c_binding, only : c_ptr, c_int
66 type(c_ptr), value :: au_d, av_d, aw_d
67 type(c_ptr), value :: u_d, v_d, w_d
68 type(c_ptr), value :: dx_d, dy_d, dz_d, h1_d
69 type(c_ptr), value :: drdx_d, drdy_d, drdz_d
70 type(c_ptr), value :: dsdx_d, dsdy_d, dsdz_d
71 type(c_ptr), value :: dtdx_d, dtdy_d, dtdz_d
72 type(c_ptr), value :: jacinv_d, w3_d, svv_h1_d
73 type(c_ptr), value :: filter_r_d, filter_s_d, filter_t_d
74 integer(c_int) :: nelv, lx
76 end interface
77#elif HAVE_CUDA
78 interface
79 subroutine cuda_ax_helm_svv_one_sided_full(au_d, av_d, aw_d, &
80 u_d, v_d, w_d, &
81 dx_d, dy_d, dz_d, h1_d, &
82 drdx_d, drdy_d, drdz_d, dsdx_d, dsdy_d, dsdz_d, &
83 dtdx_d, dtdy_d, dtdz_d, jacinv_d, w3_d, svv_h1_d, &
84 filter_r_d, filter_s_d, filter_t_d, nelv, lx) &
85 bind(c, name='cuda_ax_helm_svv_one_sided_full')
86 use, intrinsic :: iso_c_binding, only : c_ptr, c_int
87 type(c_ptr), value :: au_d, av_d, aw_d
88 type(c_ptr), value :: u_d, v_d, w_d
89 type(c_ptr), value :: dx_d, dy_d, dz_d, h1_d
90 type(c_ptr), value :: drdx_d, drdy_d, drdz_d
91 type(c_ptr), value :: dsdx_d, dsdy_d, dsdz_d
92 type(c_ptr), value :: dtdx_d, dtdy_d, dtdz_d
93 type(c_ptr), value :: jacinv_d, w3_d, svv_h1_d
94 type(c_ptr), value :: filter_r_d, filter_s_d, filter_t_d
95 integer(c_int) :: nelv, lx
97 end interface
98#endif
99
100contains
101
114 av, aw, u, v, w, coef, msh, Xh)
115 class(ax_helm_svv_one_sided_full_device_t), intent(in) :: this
116 type(mesh_t), intent(in) :: msh
117 type(space_t), intent(in) :: Xh
118 type(coef_t), intent(in) :: coef
119 real(kind=rp), intent(inout) :: au(xh%lx, xh%ly, xh%lz, msh%nelv)
120 real(kind=rp), intent(inout) :: av(xh%lx, xh%ly, xh%lz, msh%nelv)
121 real(kind=rp), intent(inout) :: aw(xh%lx, xh%ly, xh%lz, msh%nelv)
122 real(kind=rp), intent(in) :: u(xh%lx, xh%ly, xh%lz, msh%nelv)
123 real(kind=rp), intent(in) :: v(xh%lx, xh%ly, xh%lz, msh%nelv)
124 real(kind=rp), intent(in) :: w(xh%lx, xh%ly, xh%lz, msh%nelv)
125 type(c_ptr) :: au_d, av_d, aw_d, u_d, v_d, w_d
126 type(c_ptr) :: filter_r_d, filter_s_d, filter_t_d
127
128 au_d = device_get_ptr(au)
129 av_d = device_get_ptr(av)
130 aw_d = device_get_ptr(aw)
131 u_d = device_get_ptr(u)
132 v_d = device_get_ptr(v)
133 w_d = device_get_ptr(w)
134
135 if (index(this%svv%direction, "r") > 0) then
136 filter_r_d = this%svv%filter%fh_d
137 else
138 filter_r_d = this%svv%ident_d
139 end if
140
141 if (index(this%svv%direction, "s") > 0) then
142 filter_s_d = this%svv%filter%fht_d
143 else
144 filter_s_d = this%svv%ident_d
145 end if
146
147 if (index(this%svv%direction, "t") > 0) then
148 filter_t_d = this%svv%filter%fht_d
149 else
150 filter_t_d = this%svv%ident_d
151 end if
152
153#ifdef HAVE_HIP
154 call hip_ax_helm_svv_one_sided_full(au_d, av_d, aw_d, u_d, v_d, w_d, &
155 xh%dx_d, xh%dy_d, xh%dz_d, coef%h1_d, &
156 coef%drdx_d, coef%drdy_d, coef%drdz_d, &
157 coef%dsdx_d, coef%dsdy_d, coef%dsdz_d, &
158 coef%dtdx_d, coef%dtdy_d, coef%dtdz_d, coef%jacinv_d, &
159 xh%w3_d, this%svv%h1_d, filter_r_d, filter_s_d, filter_t_d, &
160 msh%nelv, xh%lx)
161#elif HAVE_CUDA
162 call cuda_ax_helm_svv_one_sided_full(au_d, av_d, aw_d, u_d, v_d, w_d, &
163 xh%dx_d, xh%dy_d, xh%dz_d, coef%h1_d, &
164 coef%drdx_d, coef%drdy_d, coef%drdz_d, &
165 coef%dsdx_d, coef%dsdy_d, coef%dsdz_d, &
166 coef%dtdx_d, coef%dtdy_d, coef%dtdz_d, coef%jacinv_d, &
167 xh%w3_d, this%svv%h1_d, filter_r_d, filter_s_d, filter_t_d, &
168 msh%nelv, xh%lx)
169#elif HAVE_OPENCL
170 call neko_error('OPENCL is not implemented for full SVV')
171#endif
172
173 if (coef%ifh2) then
174 call device_addcol4(au_d, coef%h2_d, coef%B_d, u_d, coef%dof%size())
175 call device_addcol4(av_d, coef%h2_d, coef%B_d, v_d, coef%dof%size())
176 call device_addcol4(aw_d, coef%h2_d, coef%B_d, w_d, coef%dof%size())
177 end if
178
180
void cuda_ax_helm_svv_one_sided_full(void *au, void *av, void *aw, void *u, void *v, void *w, void *dx, void *dy, void *dz, void *h1, void *drdx, void *drdy, void *drdz, void *dsdx, void *dsdy, void *dsdz, void *dtdx, void *dtdy, void *dtdz, void *jacinv, void *w3, void *h1_svv, void *filter_r, void *filter_s, void *filter_t, int *nelv, int *lx)
Return the device pointer for an associated Fortran array.
Definition device.F90:113
Defines the full-stress SVV Helmholtz operator.
Device implementation of the full-stress one-sided SVV operator.
subroutine ax_helm_svv_one_sided_full_device_compute_vector(this, au, av, aw, u, v, w, coef, msh, xh)
Compute the coupled one-sided full-stress SVV Helmholtz product.
Coefficients.
Definition coef.f90:34
subroutine, public device_addcol4(a_d, b_d, c_d, d_d, n, strm)
Returns .
Device abstraction, common interface for various accelerators.
Definition device.F90:34
Defines a mesh.
Definition mesh.f90:34
integer, parameter, public rp
Global precision used in computations.
Definition num_types.f90:14
Defines a function space.
Definition space.f90:34
Utilities.
Definition utils.f90:35
Matrix-vector product for a Helmholtz problem.
Coefficients defined on a given (mesh, ) tuple. Arrays use indices (i,j,k,e): element e,...
Definition coef.f90:93
The function space for the SEM solution fields.
Definition space.f90:64