29ce053617
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
23 lines
462 B
Nix
23 lines
462 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "libcublas";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"include"
|
|
"lib"
|
|
"static"
|
|
"stubs"
|
|
];
|
|
|
|
meta = {
|
|
description = "CUDA Basic Linear Algebra Subroutine library";
|
|
longDescription = ''
|
|
The cuBLAS library is an implementation of BLAS (Basic Linear Algebra Subprograms) on top of the NVIDIA CUDA runtime.
|
|
'';
|
|
homepage = "https://developer.nvidia.com/cublas";
|
|
};
|
|
}
|