summaryrefslogtreecommitdiffstats
path: root/pkgs/development/cuda-modules/packages/cuda_demo_suite.nix
blob: 61e8e39a51920544b8523722d147970b245b4c23 (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
{
  buildRedist,
  libcufft,
  libcurand,
  libGLU,
  libglut,
  libglvnd,
}:
buildRedist {
  redistName = "cuda";
  pname = "cuda_demo_suite";

  buildInputs = [
    libcufft
    libcurand
    libGLU
    libglut
    libglvnd
  ];

  outputs = [ "out" ];

  meta = {
    description = "Pre-built applications which use CUDA";
    longDescription = ''
      The CUDA Demo Suite contains pre-built applications which use CUDA. These applications demonstrate the
      capabilities and details of NVIDIA GPUs.
    '';
    homepage = "https://docs.nvidia.com/cuda/demo-suite";
  };
}