nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ buildRedist, nvpl_blas }:
2buildRedist {
3 redistName = "nvpl";
4 pname = "nvpl_tensor";
5
6 outputs = [
7 "out"
8 "dev"
9 "include"
10 "lib"
11 ];
12
13 buildInputs = [ nvpl_blas ];
14
15 meta = {
16 description = "Part of NVIDIA Performance Libraries that provides tensor primitives";
17 homepage = "https://developer.nvidia.com/nvpl";
18 changelog = "https://docs.nvidia.com/nvpl/latest/tensor/release_notes.html";
19 };
20}