Cholla 3.0.1-dev
Cholla - Massively parallel hydro on GPUs
Loading...
Searching...
No Matches
h_correction_2D_cuda.h
Go to the documentation of this file.
1
5#ifdef H_CORRECTION
6 #ifndef H_CORRECTION_2D_H
7 #define H_CORRECTION_2D_H
8
9 #include <math.h>
10
11 #include "../global/global.h"
12 #include "../global/global_cuda.h"
13 #include "../utils/gpu.hpp"
14
20__global__ void calc_eta_x_2D(Real *dev_bounds_L, Real *dev_bounds_R, Real *eta_x, int nx, int ny, int n_ghost,
21 Real gamma);
22
28__global__ void calc_eta_y_2D(Real *dev_bounds_L, Real *dev_bounds_R, Real *eta_y, int nx, int ny, int n_ghost,
29 Real gamma);
30
36__global__ void calc_etah_x_2D(Real *eta_x, Real *eta_y, Real *etah_x, int nx, int ny, int n_ghost);
37
43__global__ void calc_etah_y_2D(Real *eta_x, Real *eta_y, Real *etah_y, int nx, int ny, int n_ghost);
44
45 #endif // H_CORRECTION_2D_H
46#endif // H_CORRECTION