macro_rules! dynamo_nvtx_range {
($name:expr) => { ... };
}Expand description
Open a named NVTX range that closes automatically at end of scope.
ⓘ
let _r = dynamo_nvtx_range!("preprocess.tokenize");
// range closes hereZero-cost when the nvtx Cargo feature is off.