ebd2e2aa9c
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
19 lines
704 B
Nix
19 lines
704 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "cuda_ctadvisor";
|
|
|
|
outputs = [ "out" ];
|
|
|
|
meta = {
|
|
description = "Analyzes trace files containing compilation time information generated by NVCC or NVRTC";
|
|
longDescription = ''
|
|
CUDA Compile Time Advisor (ctadvisor) analyzes trace files containing compilation time information generated by
|
|
NVCC or NVRTC. ctadvisor identifies compilation bottlenecks that take significant amount of time, for examples,
|
|
template instantiation and headers processing. The tool provides users with suggestions to reduce compilation
|
|
time.
|
|
'';
|
|
homepage = "https://docs.nvidia.com/cuda/cuda-compile-time-advisor";
|
|
};
|
|
}
|