nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 24 lines 652 B view raw
1{ buildRedist }: 2buildRedist { 3 redistName = "cuda"; 4 pname = "libcurand"; 5 6 outputs = [ 7 "out" 8 "dev" 9 "include" 10 "lib" 11 "static" 12 "stubs" 13 ]; 14 15 meta = { 16 description = "Helper module for the cuBLASMp library that allows it to efficiently perform communications between different GPUs"; 17 longDescription = '' 18 Communication Abstraction Library (CAL) is a helper module for the cuBLASMp library that allows it to 19 efficiently perform communications between different GPUs. 20 ''; 21 homepage = "https://developer.nvidia.com/curand"; 22 changelog = "https://docs.nvidia.com/cuda/cublasmp/release_notes"; 23 }; 24}