nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist }:
2buildRedist {
3 redistName = "cuda";
4 pname = "libcublas";
5
6 outputs = [
7 "out"
8 "dev"
9 "include"
10 "lib"
11 "static"
12 "stubs"
13 ];
14
15 meta = {
16 description = "CUDA Basic Linear Algebra Subroutine library";
17 longDescription = ''
18 The cuBLAS library is an implementation of BLAS (Basic Linear Algebra Subprograms) on top of the NVIDIA CUDA runtime.
19 '';
20 homepage = "https://developer.nvidia.com/cublas";
21 };
22}