Files
Connor Baker 29ce053617 cudaPackages: build redists from manifests
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
2025-10-22 13:14:45 -07:00

25 lines
652 B
Nix

{ buildRedist }:
buildRedist {
redistName = "cuda";
pname = "libcurand";
outputs = [
"out"
"dev"
"include"
"lib"
"static"
"stubs"
];
meta = {
description = "Helper module for the cuBLASMp library that allows it to efficiently perform communications between different GPUs";
longDescription = ''
Communication Abstraction Library (CAL) is a helper module for the cuBLASMp library that allows it to
efficiently perform communications between different GPUs.
'';
homepage = "https://developer.nvidia.com/curand";
changelog = "https://docs.nvidia.com/cuda/cublasmp/release_notes";
};
}