Go to the source code of this file.
|
| template<typename T > |
| AMREX_GPU_DEVICE AMREX_FORCE_INLINE T | utils::algorithms::linear_interp (T x0, T x1, T f0, T f1, T x) |
| | Performs a linear interpolation. More...
|
| |
| template<typename T > |
| AMREX_GPU_DEVICE AMREX_FORCE_INLINE T | utils::algorithms::bilinear_interp (T x0, T x1, T y0, T y1, T f00, T f01, T f10, T f11, T x, T y) |
| | Performs a bilinear interpolation. More...
|
| |
| template<typename T > |
| AMREX_GPU_DEVICE AMREX_FORCE_INLINE T | utils::algorithms::trilinear_interp (T x0, T x1, T y0, T y1, T z0, T z1, T f000, T f001, T f010, T f011, T f100, T f101, T f110, T f111, T x, T y, T z) |
| | Performs a trilinear interpolation. More...
|
| |