nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "cuda_nvdisasm";
5
6 outputs = [ "out" ];
7
8 meta = {
9 description = "Extracts information from standalone cubin files and presents them in human readable format";
10 longDescription = ''
11 `nvdisasm` extracts information from standalone cubin files and presents them in human readable format. The
12 output of `nvdisasm` includes CUDA assembly code for each kernel, listing of ELF data sections and other CUDA
13 specific sections. Output style and options are controlled through `nvdisasm` command-line options. `nvdisasm`
14 also does control flow analysis to annotate jump/branch targets and makes the output easier to read.
15 '';
16 homepage = "https://docs.nvidia.com/cuda/cuda-binary-utilities#nvdisasm";
17 };
18}