Neko 1.99.1
A portable framework for high-order spectral element flow simulations
Loading...
Searching...
No Matches
schwarz.c
Go to the documentation of this file.
1/*
2 Copyright (c) 2022-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#ifdef __APPLE__
36#include <OpenCL/cl.h>
37#else
38#include <CL/cl.h>
39#endif
40
41#include <stdio.h>
43#include <device/opencl/jit.h>
45#include <device/opencl/check.h>
46
47#include "schwarz_kernel.cl.h"
48
50 void *arr2, int *l2, real *f2,
51 int *nx, int *nel,
53 cl_int err;
54
55 if (schwarz_program == NULL)
57
58 const size_t local_item_size = (*nx-2)*(*nx-2);
59 const size_t global_item_size = local_item_size * (*nel);
60
61
62#define STR(X) #X
63#define CASE(NX) \
64 case NX: \
65 { \
66 \
67 cl_kernel kernel = clCreateKernel(schwarz_program, \
68 STR(schwarz_extrude_kernel_nx##NX), \
69 &err); \
70 CL_CHECK(err); \
71 \
72 CL_CHECK(clSetKernelArg(kernel, 0, sizeof(cl_mem), (void *) &arr1)); \
73 CL_CHECK(clSetKernelArg(kernel, 1, sizeof(int), l1)); \
74 CL_CHECK(clSetKernelArg(kernel, 2, sizeof(real), f1)); \
75 CL_CHECK(clSetKernelArg(kernel, 3, sizeof(cl_mem), (void *) &arr2)); \
76 CL_CHECK(clSetKernelArg(kernel, 4, sizeof(int), l2)); \
77 CL_CHECK(clSetKernelArg(kernel, 5, sizeof(real), f2)); \
78 \
79 CL_CHECK(clEnqueueNDRangeKernel(command_queue, kernel, 1, NULL, \
80 &global_item_size, \
81 &local_item_size, 0, NULL, NULL)); \
82 } \
83 break
84
85 switch(*nx) {
86 CASE(2);
87 CASE(3);
88 CASE(4);
89 CASE(5);
90 CASE(6);
91 CASE(7);
92 CASE(8);
93 CASE(9);
94 CASE(10);
95 CASE(11);
96 CASE(12);
97 CASE(13);
98 CASE(14);
99 CASE(15);
100 CASE(16);
101 }
102}
103
104void opencl_schwarz_toext3d(void *a, void *b, int *nx, int *nel,
106 cl_int err;
107
108 if (schwarz_program == NULL)
110
112 "schwarz_toext3d_kernel", &err);
113 CL_CHECK(err);
114
115 CL_CHECK(clSetKernelArg(kernel, 0, sizeof(cl_mem), (void *) &a));
116 CL_CHECK(clSetKernelArg(kernel, 1, sizeof(cl_mem), (void *) &b));
117 CL_CHECK(clSetKernelArg(kernel, 2, sizeof(int), nx));
118
119 const size_t global_item_size = 256 * (*nel);
120 const size_t local_item_size = 256;
121
124 0, NULL, NULL));
125}
126
127void opencl_schwarz_toreg3d(void *b, void *a, int *nx, int *nel,
129 cl_int err;
130
131 if (schwarz_program == NULL)
133
135 "schwarz_toreg3d_kernel", &err);
136 CL_CHECK(err);
137
138 CL_CHECK(clSetKernelArg(kernel, 0, sizeof(cl_mem), (void *) &b));
139 CL_CHECK(clSetKernelArg(kernel, 1, sizeof(cl_mem), (void *) &a));
140 CL_CHECK(clSetKernelArg(kernel, 2, sizeof(int), nx));
141
142 const size_t global_item_size = 256 * (*nel);
143 const size_t local_item_size = 256;
144
147 0, NULL, NULL));
148}
__global__ void dirichlet_apply_scalar_kernel(const int *__restrict__ msk, T *__restrict__ x, const T g, const int m)
double real
void opencl_kernel_jit(const char *kernel, cl_program *program)
Definition jit.c:50
#define CL_CHECK(err)
Definition check.h:12
void * schwarz_program
void opencl_schwarz_toext3d(void *a, void *b, int *nx, int *nel, cl_command_queue command_queue)
Definition schwarz.c:104
void opencl_schwarz_extrude(void *arr1, int *l1, real *f1, void *arr2, int *l2, real *f2, int *nx, int *nel, cl_command_queue command_queue)
Definition schwarz.c:49
void opencl_schwarz_toreg3d(void *b, void *a, int *nx, int *nel, cl_command_queue command_queue)
Definition schwarz.c:127
#define CASE(NX)