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