1#ifndef AMREX_EB2_IF_BASE_H_
2#define AMREX_EB2_IF_BASE_H_
3#include <AMReX_Config.H>
24template <
class D,
class Enable =
void>
struct IsGPUable : std::false_type {};
27struct IsGPUable<D, std::enable_if_t<std::is_base_of_v<GPUable,D>>>
Definition AMReX_Amr.cpp:49
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