Neko
0.9.99
A portable framework for high-order spectral element flow simulations
Loading...
Searching...
No Matches
fdm.c
Go to the documentation of this file.
1
/*
2
Copyright (c) 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 "fdm_kernel.cl.h"
48
49
void
opencl_fdm_do_fast
(
void
*
e
,
void
*r,
void
*s,
void
*d,
int
*
nl
,
int
*nel,
50
cl_command_queue
cmd_queue
) {
51
cl_int
err
;
52
53
if
(
fdm_program
==
NULL
)
54
opencl_kernel_jit
(
fdm_kernel
, (
cl_program
*) &
fdm_program
);
55
56
const
size_t
global_item_size
= 256 * (*nel);
57
const
size_t
local_item_size
= 256;
58
59
#define STR(X) #X
60
#define CASE(NL) \
61
case NL: \
62
{ \
63
cl_kernel kernel = clCreateKernel(fdm_program, \
64
STR(fdm_do_fast_kernel_nl##NL), &err); \
65
CL_CHECK(err); \
66
\
67
CL_CHECK(clSetKernelArg(kernel, 0, sizeof(cl_mem), (void *) &e)); \
68
CL_CHECK(clSetKernelArg(kernel, 1, sizeof(cl_mem), (void *) &r)); \
69
CL_CHECK(clSetKernelArg(kernel, 2, sizeof(cl_mem), (void *) &s)); \
70
CL_CHECK(clSetKernelArg(kernel, 3, sizeof(cl_mem), (void *) &d)); \
71
\
72
CL_CHECK(clEnqueueNDRangeKernel(cmd_queue, kernel, \
73
1, NULL, &global_item_size, \
74
&local_item_size, 0, NULL, NULL)); \
75
} \
76
break
77
78
switch
(*
nl
) {
79
CASE
(2);
80
CASE
(3);
81
CASE
(4);
82
CASE
(5);
83
CASE
(6);
84
CASE
(7);
85
CASE
(8);
86
CASE
(9);
87
CASE
(10);
88
CASE
(11);
89
CASE
(12);
90
CASE
(13);
91
CASE
(14);
92
CASE
(15);
93
}
94
}
e
const int e
Definition
ax_helm_full_kernel.h:93
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_fdm_do_fast
void opencl_fdm_do_fast(void *e, void *r, void *s, void *d, int *nl, int *nel, cl_command_queue cmd_queue)
Definition
fdm.c:49
CASE
#define CASE(NL)
opencl_kernel_jit
void opencl_kernel_jit(const char *kernel, cl_program *program)
Definition
jit.c:50
jit.h
check.h
prgm_lib.h
fdm_program
void * fdm_program
src
math
bcknd
device
opencl
fdm.c
Generated on Sun Dec 22 2024 03:38:31 for Neko by
1.9.8