Neko 1.99.7
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-2026, 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 <stdlib.h>
44#include <device/opencl/jit.h>
46#include <device/opencl/check.h>
47
48#include "schwarz_kernel.cl.h"
49
51 void *arr2, int *l2, real *f2,
52 int *nx, int *nel,
54 cl_int err;
55
56 if (schwarz_program == NULL)
58
59 const size_t local_item_size = (*nx-2)*(*nx-2);
60 const size_t global_item_size = local_item_size * (*nel);
61
62
63#define STR(X) #X
64#define CASE(NX) \
65 case NX: \
66 { \
67 \
68 cl_kernel kernel = clCreateKernel(schwarz_program, \
69 STR(schwarz_extrude_kernel_nx##NX), \
70 &err); \
71 CL_CHECK(err); \
72 \
73 CL_CHECK(clSetKernelArg(kernel, 0, sizeof(cl_mem), (void *) &arr1)); \
74 CL_CHECK(clSetKernelArg(kernel, 1, sizeof(int), l1)); \
75 CL_CHECK(clSetKernelArg(kernel, 2, sizeof(real), f1)); \
76 CL_CHECK(clSetKernelArg(kernel, 3, sizeof(cl_mem), (void *) &arr2)); \
77 CL_CHECK(clSetKernelArg(kernel, 4, sizeof(int), l2)); \
78 CL_CHECK(clSetKernelArg(kernel, 5, sizeof(real), f2)); \
79 \
80 CL_CHECK(clEnqueueNDRangeKernel(command_queue, kernel, 1, NULL, \
81 &global_item_size, \
82 &local_item_size, 0, NULL, NULL)); \
83 CL_CHECK(clReleaseKernel(kernel)); \
84 } \
85 break
86
87 switch(*nx) {
88 CASE(2);
89 CASE(3);
90 CASE(4);
91 CASE(5);
92 CASE(6);
93 CASE(7);
94 CASE(8);
95 CASE(9);
96 CASE(10);
97 CASE(11);
98 CASE(12);
99 CASE(13);
100 CASE(14);
101 CASE(15);
102 CASE(16);
103 default:
104 {
105 fprintf(stderr, __FILE__ ": size not supported: %d\n", *nx);
106 exit(1);
107 }
108 }
109}
110
111void opencl_schwarz_toext3d(void *a, void *b, int *nx, int *nel,
113 cl_int err;
114
115 if (schwarz_program == NULL)
117
119 "schwarz_toext3d_kernel", &err);
120 CL_CHECK(err);
121
122 CL_CHECK(clSetKernelArg(kernel, 0, sizeof(cl_mem), (void *) &a));
123 CL_CHECK(clSetKernelArg(kernel, 1, sizeof(cl_mem), (void *) &b));
124 CL_CHECK(clSetKernelArg(kernel, 2, sizeof(int), nx));
125
126 const size_t global_item_size = 256 * (*nel);
127 const size_t local_item_size = 256;
128
131 0, NULL, NULL));
133}
134
135void opencl_schwarz_toreg3d(void *b, void *a, int *nx, int *nel,
137 cl_int err;
138
139 if (schwarz_program == NULL)
141
143 "schwarz_toreg3d_kernel", &err);
144 CL_CHECK(err);
145
146 CL_CHECK(clSetKernelArg(kernel, 0, sizeof(cl_mem), (void *) &b));
147 CL_CHECK(clSetKernelArg(kernel, 1, sizeof(cl_mem), (void *) &a));
148 CL_CHECK(clSetKernelArg(kernel, 2, sizeof(int), nx));
149
150 const size_t global_item_size = 256 * (*nel);
151 const size_t local_item_size = 256;
152
155 0, NULL, NULL));
157}
__global__ void ale_add_kinematics_kernel(const int n, T *__restrict__ wx, T *__restrict__ wy, T *__restrict__ wz, const T *__restrict__ x_ref, const T *__restrict__ y_ref, const T *__restrict__ z_ref, const T *__restrict__ phi, const T *__restrict__ x, const T *__restrict__ y, const T *__restrict__ z, const kinematics_params_t kin_params)
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:111
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:50
void opencl_schwarz_toreg3d(void *b, void *a, int *nx, int *nel, cl_command_queue command_queue)
Definition schwarz.c:135
#define CASE(NX)