1 2 3 4 5 6 7 8 9
// SPDX-License-Identifier: MIT OR Apache-2.0 //! Internal kernel-parameter macros. macro_rules! cuda_kernel_params { ($($arg:ident),+ $(,)?) => { [$(cuda_kernel_param(&mut $arg)),+] }; }