Files
nixpkgs/pkgs/development/cuda-modules/packages/cuda_cuobjdump.nix
T
Connor Baker 29ce053617 cudaPackages: build redists from manifests
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
2025-10-22 13:14:45 -07:00

18 lines
786 B
Nix

{ buildRedist }:
buildRedist {
redistName = "cuda";
pname = "cuda_cuobjdump";
outputs = [ "out" ];
meta = {
description = "Extracts information from CUDA binary files (both standalone and those embedded in host binaries) and presents them in human readable format";
longDescription = ''
`cuobjdump` extracts information from CUDA binary files (both standalone and those embedded in host binaries)
and presents them in human readable format. The output of cuobjdump includes CUDA assembly code for each kernel,
CUDA ELF section headers, string tables, relocators and other CUDA specific sections. It also extracts embedded
ptx text from host binaries.
'';
homepage = "https://docs.nvidia.com/cuda/cuda-binary-utilities#cuobjdump";
};
}