Typedef ripple::default_shared_exec_params_t¶
Typedef Documentation¶
-
template<size_t
Dims, typenameT, size_tPad= 0>
usingripple::default_shared_exec_params_t= std::conditional_t<Dims == 1, shared_exec_params_1d_t<T, Pad>, std::conditional_t<Dims == 2, shared_exec_params_2d_t<T, Pad>, shared_exec_params_3d_t<T, Pad>>>¶ Defines the default static execution parameters based on the number of dimensions, with a shared memory type and an optional padding amount.
- Template Parameters
Dims: The number of dimensions to get the execution params for.T: The type for the shared memory.Pad: The amount of padding for the space.