nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 _cuda,
3 buildRedist,
4 cuda_cudart,
5 libcublas,
6 libcusolver,
7 nccl,
8}:
9buildRedist {
10 redistName = "cusolvermp";
11 pname = "libcusolvermp";
12
13 outputs = [
14 "out"
15 "dev"
16 "include"
17 "lib"
18 ];
19
20 buildInputs = [
21 cuda_cudart
22 libcublas
23 libcusolver
24 nccl
25 ];
26
27 meta = {
28 description = "High-performance, distributed-memory, GPU-accelerated library that provides tools for solving dense linear systems and eigenvalue problems";
29 longDescription = ''
30 The NVIDIA cuSOLVERMp library is a high-performance, distributed-memory, GPU-accelerated library that provides
31 tools for solving dense linear systems and eigenvalue problems.
32 '';
33 homepage = "https://developer.nvidia.com/cusolver";
34 };
35}