Macro nvtx::mark

source · []
macro_rules! mark {
    ($($tt:tt)*) => { ... };
}
Expand description

Marks an instantaneous event in the application.

Arguments

  • message - The message associated to this marker event.

Examples

use nvtx::{mark};
mark!("Operation A");