1#ifndef AMREX_EB2_IF_BASE_H_
2#define AMREX_EB2_IF_BASE_H_
3#include <AMReX_Config.H>
24template <
class D>
struct IsGPUable : std::false_type {};
27requires (std::is_base_of_v<GPUable,D>)
Definition AMReX_Amr.cpp:50
Type trait that reports whether a functor derives from GPUable.
Definition AMReX_EB2_IF_Base.H:24
Marker base that denotes an implicit function callable on device kernels.
Definition AMReX_EB2_IF_Base.H:19