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