b04ad574ca
Signed-off-by: Connor Baker <ConnorBaker01@gmail.com>
19 lines
417 B
Nix
19 lines
417 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "nvpl";
|
|
pname = "nvpl_sparse";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"include"
|
|
"lib"
|
|
];
|
|
|
|
meta = {
|
|
description = "Provides a set of CPU-accelerated basic linear algebra subroutines used for handling sparse matrices";
|
|
homepage = "https://developer.nvidia.com/nvpl";
|
|
changelog = "https://docs.nvidia.com/nvpl/latest/sparse/release_notes.html";
|
|
};
|
|
}
|