summaryrefslogtreecommitdiffstats
path: root/pkgs/development/cuda-modules/packages/cuquantum.nix
blob: b9fed9c551c0036e6d80a5e08c1b7a81b8c76318 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
  buildRedist,
  cuda_cudart,
  libcublas,
  libcurand,
  libcusolver,
  libcutensor,
}:
buildRedist {
  redistName = "cuquantum";
  pname = "cuquantum";

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

  buildInputs = [
    cuda_cudart
    libcublas
    libcurand
    libcusolver
    libcutensor
  ];

  autoPatchelfIgnoreMissingDeps = [
    "libnvidia-ml.so.1"
  ];

  meta = {
    description = "Set of high-performance libraries and tools for accelerating quantum computing simulations at both the circuit and device level by orders of magnitude";
    longDescription = ''
      NVIDIA cuQuantum SDK is a set of high-performance libraries and tools for accelerating quantum computing
      simulations at both the circuit and device level by orders of magnitude.
    '';
    homepage = "https://developer.nvidia.com/cuquantum-sdk";
    changelog = "https://docs.nvidia.com/cuda/cuquantum/latest/cuquantum-sdk-release-notes.html";
  };
}