Neko
1.99.1
A portable framework for high-order spectral element flow simulations
Loading...
Searching...
No Matches
makeoifs_kernel.h
Go to the documentation of this file.
1
/*
2
Copyright (c) 2025, The Neko Authors
3
All rights reserved.
4
5
Redistribution and use in source and binary forms, with or without
6
modification, are permitted provided that the following conditions
7
are met:
8
9
* Redistributions of source code must retain the above copyright
10
notice, this list of conditions and the following disclaimer.
11
12
* Redistributions in binary form must reproduce the above
13
copyright notice, this list of conditions and the following
14
disclaimer in the documentation and/or other materials provided
15
with the distribution.
16
17
* Neither the name of the authors nor the names of its
18
contributors may be used to endorse or promote products derived
19
from this software without specific prior written permission.
20
21
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
POSSIBILITY OF SUCH DAMAGE.
33
*/
34
35
#ifndef __COMMON_MAKEOIFS_KERNEL__
36
#define __COMMON_MAKEOIFS_KERNEL__
37
38
template
<
typename
T >
39
__global__
void
makeoifs_kernel
(
const
T
*
__restrict__
phi_x
,
40
const
T
*
__restrict__
phi_y
,
41
const
T
*
__restrict__
phi_z
,
42
T
*
__restrict__
bf_x
,
43
T
*
__restrict__
bf_y
,
44
T
*
__restrict__
bf_z
,
45
const
T
rho,
46
const
T
dt
,
47
const
int
n) {
48
49
const
int
idx =
blockIdx
.x *
blockDim
.x +
threadIdx
.x;
50
const
int
str
=
blockDim
.x *
gridDim
.x;
51
52
for
(
int
i
= idx;
i
< n;
i
+=
str
) {
53
54
bf_x
[
i
] =
bf_x
[
i
] +
phi_x
[
i
] * (rho /
dt
);
55
bf_y
[
i
] =
bf_y
[
i
] +
phi_y
[
i
] * (rho /
dt
);
56
bf_z
[
i
] =
bf_z
[
i
] +
phi_z
[
i
] * (rho /
dt
);
57
}
58
59
}
60
61
template
<
typename
T >
62
__global__
void
scalar_makeoifs_kernel
(
const
T
*
__restrict__
phi_s
,
63
T
*
__restrict__
bf_s
,
64
const
T
rho,
65
const
T
dt
,
66
const
int
n) {
67
68
const
int
idx =
blockIdx
.x *
blockDim
.x +
threadIdx
.x;
69
const
int
str
=
blockDim
.x *
gridDim
.x;
70
71
for
(
int
i
= idx;
i
< n;
i
+=
str
) {
72
73
bf_s
[
i
] =
bf_s
[
i
] +
phi_s
[
i
] * (rho /
dt
);
74
}
75
76
}
77
78
#endif
// __COMMON_MAKEOIFS_KERNEL__
i
const int i
Definition
ax_helm_full_kernel.h:95
dt
__global__ void const T *__restrict__ const T *__restrict__ const T *__restrict__ const T *__restrict__ dt
Definition
cdtp_kernel.h:109
dirichlet_apply_scalar_kernel
__global__ void dirichlet_apply_scalar_kernel(const int *__restrict__ msk, T *__restrict__ x, const T g, const int m)
Definition
dirichlet_kernel.h:42
scalar_makeoifs_kernel
__global__ void scalar_makeoifs_kernel(const T *__restrict__ phi_s, T *__restrict__ bf_s, const T rho, const T dt, const int n)
Definition
makeoifs_kernel.h:62
makeoifs_kernel
__global__ void makeoifs_kernel(const T *__restrict__ phi_x, const T *__restrict__ phi_y, const T *__restrict__ phi_z, T *__restrict__ bf_x, T *__restrict__ bf_y, T *__restrict__ bf_z, const T rho, const T dt, const int n)
Definition
makeoifs_kernel.h:39
src
common
bcknd
device
cuda
makeoifs_kernel.h
Generated on Mon Oct 13 2025 03:46:25 for Neko by
1.9.8