XGC1
grid_deriv.hpp
Go to the documentation of this file.
1 #ifndef GRID_DERIV_HPP
2 #define GRID_DERIV_HPP
3 
4 #include "gradient_matrices.hpp"
5 #include "grid.hpp"
6 
7 void grid_deriv(const GradientMatrices<DeviceType>& gm, const Grid<DeviceType>& grid, const Kokkos::View<double*,Kokkos::LayoutRight,DeviceType>& qty, const Kokkos::View<double*,Kokkos::LayoutRight,DeviceType>& qty_deriv_x, const Kokkos::View<double*,Kokkos::LayoutRight,DeviceType>& qty_deriv_y, bool discard_when_basis_is_one);
8 
9 #endif
void grid_deriv(const GradientMatrices< DeviceType > &gm, const Grid< DeviceType > &grid, const Kokkos::View< double *, Kokkos::LayoutRight, DeviceType > &qty, const Kokkos::View< double *, Kokkos::LayoutRight, DeviceType > &qty_deriv_x, const Kokkos::View< double *, Kokkos::LayoutRight, DeviceType > &qty_deriv_y, bool discard_when_basis_is_one)
Definition: grid_deriv.cpp:18