summaryrefslogtreecommitdiffstats
path: root/pkgs/development/cuda-modules/packages/nvpl_blas.nix
blob: 114bb9a436f8a1f4d20ec85179e074fb624b0957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ buildRedist }:
buildRedist {
  redistName = "nvpl";
  pname = "nvpl_blas";

  outputs = [
    "out"
    "dev"
    "include"
    "lib"
  ];

  meta = {
    description = "Part of NVIDIA Performance Libraries that provides standard Fortran 77 BLAS APIs as well as C (CBLAS)";
    homepage = "https://developer.nvidia.com/nvpl";
    changelog = "https://docs.nvidia.com/nvpl/latest/blas/release_notes.html";
  };
}