nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 16 lines 425 B view raw
1{ buildRedist, zlib }: 2buildRedist { 3 redistName = "cuda"; 4 pname = "imex"; 5 6 outputs = [ "out" ]; 7 8 allowFHSReferences = true; 9 10 buildInputs = [ zlib ]; 11 12 meta = { 13 description = "Service which supports GPU memory export and import (NVLink P2P) and shared memory operations across OS domains in an NVLink multi-node deployment"; 14 homepage = "https://docs.nvidia.com/multi-node-nvlink-systems/imex-guide"; 15 }; 16}