nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "cuda_ctadvisor";
5
6 outputs = [ "out" ];
7
8 meta = {
9 description = "Analyzes trace files containing compilation time information generated by NVCC or NVRTC";
10 longDescription = ''
11 CUDA Compile Time Advisor (ctadvisor) analyzes trace files containing compilation time information generated by
12 NVCC or NVRTC. ctadvisor identifies compilation bottlenecks that take significant amount of time, for examples,
13 template instantiation and headers processing. The tool provides users with suggestions to reduce compilation
14 time.
15 '';
16 homepage = "https://docs.nvidia.com/cuda/cuda-compile-time-advisor";
17 };
18}