Typedef ripple::default_exec_params_t¶
Defined in File execution_traits.hpp
Typedef Documentation¶
-
template<size_t
Dims
>
usingripple
::
default_exec_params_t
= std::conditional_t<Dims == 1, exec_params_1d_t, std::conditional_t<Dims == 2, exec_params_2d_t, exec_params_3d_t>>¶ Defines the execution parameter type based on the number of dimensions.
- Template Parameters
Dims
: The number of dimensions to get the execution params for.