[package]
edition = "2021"
name = "zer-prof"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Host-side NVTX profiling annotations for zer, trace! and trace_cuda! macros with zero-cost no-op fallback"
readme = "README.md"
keywords = [
"nvtx",
"profiling",
"cuda",
"gpu",
"nsight",
]
categories = ["development-tools::profiling"]
license = "Apache-2.0"
repository = "https://github.com/ZAL-Analytics/zer"
[features]
avx2 = ["nvtx"]
cpu = ["nvtx"]
cuda = ["nvtx"]
default = []
nvtx = ["dep:nvtx"]
vulkan = ["nvtx"]
[lib]
name = "zer_prof"
path = "src/lib.rs"
[dependencies.nvtx]
version = "1.3"
optional = true