Block-Structured AMR Software Framework
AMReX_MLEBNodeFDLap_1D_K.H
Go to the documentation of this file.
1 #ifndef AMREX_MLEBNODEFDLAP_1D_K_H_
2 #define AMREX_MLEBNODEFDLAP_1D_K_H_
3 
4 namespace amrex {
5 
7 void mlebndfdlap_adotx (int /*i*/, int /*j*/, int /*k*/, Array4<Real> const& /*y*/,
8  Array4<Real const> const& /*x*/, Array4<int const> const& /*dmsk*/,
9  Real /*bx*/) noexcept
10 {
11 }
12 
14 void mlebndfdlap_gsrb (int /*i*/, int /*j*/, int /*k*/, Array4<Real> const& /*x*/,
15  Array4<Real const> const& /*rhs*/, Array4<int const> const& /*dmsk*/,
16  Real /*bx*/, int /*redblack*/) noexcept
17 {
18 }
19 
21 void mlebndfdlap_sig_adotx (int /*i*/, int /*j*/, int /*k*/, Array4<Real> const& /*y*/,
22  Array4<Real const> const& /*x*/, Array4<int const> const& /*dmsk*/,
23  Array4<Real const> const& /* sig */, Real /*bx*/) noexcept
24 {
25 }
26 
28 void mlebndfdlap_sig_gsrb (int /*i*/, int /*j*/, int /*k*/, Array4<Real> const& /*x*/,
29  Array4<Real const> const& /*rhs*/, Array4<int const> const& /*dmsk*/,
30  Array4<Real const> const& /* sig */,
31  Real /*bx*/, int /*redblack*/) noexcept
32 {
33 }
34 
35 }
36 
37 #endif
#define AMREX_FORCE_INLINE
Definition: AMReX_Extension.H:119
#define AMREX_GPU_HOST_DEVICE
Definition: AMReX_GpuQualifiers.H:20
Definition: AMReX_Amr.cpp:49
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void mlebndfdlap_sig_adotx(int, int, int, Array4< Real > const &, Array4< Real const > const &, Array4< int const > const &, Array4< Real const > const &, Real) noexcept
Definition: AMReX_MLEBNodeFDLap_1D_K.H:21
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void mlebndfdlap_gsrb(int, int, int, Array4< Real > const &, Array4< Real const > const &, Array4< int const > const &, Real, int) noexcept
Definition: AMReX_MLEBNodeFDLap_1D_K.H:14
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void mlebndfdlap_sig_gsrb(int, int, int, Array4< Real > const &, Array4< Real const > const &, Array4< int const > const &, Array4< Real const > const &, Real, int) noexcept
Definition: AMReX_MLEBNodeFDLap_1D_K.H:28
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE void mlebndfdlap_adotx(int, int, int, Array4< Real > const &, Array4< Real const > const &, Array4< int const > const &, Real) noexcept
Definition: AMReX_MLEBNodeFDLap_1D_K.H:7
Definition: AMReX_Array4.H:61