Loading [MathJax]/extensions/tex2jax.js
Neko
0.9.99
A portable framework for high-order spectral element flow simulations
Toggle main menu visibility
Main Page
User Guide
Developer Guide
Modules
Modules List
Module Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions/Subroutines
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Variables
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
x
z
Enumerator
c
h
Data Types
Data Types List
Data Type Index
Class Hierarchy
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions/Subroutines
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions/Subroutines
_
a
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
v
z
Variables
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
z
Typedefs
Macros
_
c
d
g
h
m
n
p
s
Examples
▼
Neko
►
Neko Manual
User Guide
Developer Guide
►
Modules
►
Data Types
▼
Files
►
File List
►
File Members
►
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerator
Macros
Pages
Loading...
Searching...
No Matches
facet_normal.c
Go to the documentation of this file.
1
/*
2
Copyright (c) 2021-2022, 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
#ifdef __APPLE__
36
#include <OpenCL/cl.h>
37
#else
38
#include <CL/cl.h>
39
#endif
40
41
#include <stdio.h>
42
#include <
device/device_config.h
>
43
#include <
device/opencl/jit.h
>
44
#include <
device/opencl/prgm_lib.h
>
45
#include <
device/opencl/check.h
>
46
47
#include "facet_normal_kernel.cl.h"
48
52
void
opencl_facet_normal_apply_surfvec
(
void
*msk,
void
*facet,
53
void
*
x
,
void
*y,
void
*z,
54
void
*
u
,
void
*
v
,
void
*
w
,
55
void
*nx,
void
* ny,
void
*nz,
56
void
*area,
int
*lx,
int
*m) {
57
58
cl_int
err
;
59
60
if
(
facet_normal_program
==
NULL
)
61
opencl_kernel_jit
(
facet_normal_kernel
, (
cl_program
*) &
facet_normal_program
);
62
63
cl_kernel
kernel
=
clCreateKernel
(
facet_normal_program
,
64
"facet_normal_apply_surfvec_kernel"
, &
err
);
65
CL_CHECK
(
err
);
66
67
CL_CHECK
(
clSetKernelArg
(
kernel
, 0,
sizeof
(
cl_mem
), (
void
*) &msk));
68
CL_CHECK
(
clSetKernelArg
(
kernel
, 1,
sizeof
(
cl_mem
), (
void
*) &facet));
69
CL_CHECK
(
clSetKernelArg
(
kernel
, 2,
sizeof
(
cl_mem
), (
void
*) &
x
));
70
CL_CHECK
(
clSetKernelArg
(
kernel
, 3,
sizeof
(
cl_mem
), (
void
*) &y));
71
CL_CHECK
(
clSetKernelArg
(
kernel
, 4,
sizeof
(
cl_mem
), (
void
*) &z));
72
CL_CHECK
(
clSetKernelArg
(
kernel
, 5,
sizeof
(
cl_mem
), (
void
*) &
u
));
73
CL_CHECK
(
clSetKernelArg
(
kernel
, 6,
sizeof
(
cl_mem
), (
void
*) &
v
));
74
CL_CHECK
(
clSetKernelArg
(
kernel
, 7,
sizeof
(
cl_mem
), (
void
*) &
w
));
75
CL_CHECK
(
clSetKernelArg
(
kernel
, 8,
sizeof
(
cl_mem
), (
void
*) &nx));
76
CL_CHECK
(
clSetKernelArg
(
kernel
, 9,
sizeof
(
cl_mem
), (
void
*) &ny));
77
CL_CHECK
(
clSetKernelArg
(
kernel
, 10,
sizeof
(
cl_mem
), (
void
*) &nz));
78
CL_CHECK
(
clSetKernelArg
(
kernel
, 11,
sizeof
(
cl_mem
), (
void
*) &area));
79
CL_CHECK
(
clSetKernelArg
(
kernel
, 12,
sizeof
(
int
), lx));
80
CL_CHECK
(
clSetKernelArg
(
kernel
, 13,
sizeof
(
int
), m));
81
82
const
int
nb
= ((*m) + 256 - 1) / 256;
83
const
size_t
global_item_size
= 256 *
nb
;
84
const
size_t
local_item_size
= 256;
85
86
CL_CHECK
(
clEnqueueNDRangeKernel
((
cl_command_queue
) glb_cmd_queue,
kernel
, 1,
87
NULL
, &
global_item_size
, &
local_item_size
,
88
0,
NULL
,
NULL
));
89
}
52
void
opencl_facet_normal_apply_surfvec
(
void
*msk,
void
*facet, {
…
}
w
__global__ void T *__restrict__ T *__restrict__ const T *__restrict__ const T *__restrict__ const T *__restrict__ w
Definition
ax_helm_full_kernel.h:48
u
__global__ void T *__restrict__ T *__restrict__ const T *__restrict__ u
Definition
ax_helm_full_kernel.h:46
v
__global__ void T *__restrict__ T *__restrict__ const T *__restrict__ const T *__restrict__ v
Definition
ax_helm_full_kernel.h:47
x
__global__ void const T *__restrict__ x
Definition
cdtp_kernel.h:106
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
device_config.h
opencl_facet_normal_apply_surfvec
void opencl_facet_normal_apply_surfvec(void *msk, void *facet, void *x, void *y, void *z, void *u, void *v, void *w, void *nx, void *ny, void *nz, void *area, int *lx, int *m)
Definition
facet_normal.c:52
opencl_kernel_jit
void opencl_kernel_jit(const char *kernel, cl_program *program)
Definition
jit.c:50
jit.h
check.h
CL_CHECK
#define CL_CHECK(err)
Definition
check.h:12
prgm_lib.h
facet_normal_program
void * facet_normal_program
src
bc
bcknd
device
opencl
facet_normal.c
Generated on Fri Mar 14 2025 03:42:46 for Neko by
1.9.8