blob: 046ddebebfaf0276ff7f87e34139dd32b40d6203 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{ buildRedist }:
buildRedist {
redistName = "cuda";
pname = "cuda_cuxxfilt";
outputs = [
"out"
"bin"
"dev"
"include"
"static"
];
meta = {
description = "Decode low-level identifiers that have been mangled by CUDA C++ into user readable names";
longDescription = ''
cu++filt decodes (demangles) low-level identifiers that have been mangled by CUDA C++ into user readable names.
'';
homepage = "https://docs.nvidia.com/cuda/cuda-binary-utilities#cu-filt";
};
}
|