mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 05:04:40 +00:00
19 lines
559 B
Nix
19 lines
559 B
Nix
{ buildRedist }:
|
|
buildRedist {
|
|
redistName = "cuda";
|
|
pname = "cuda_sanitizer_api";
|
|
|
|
outputs = [ "out" ];
|
|
|
|
allowFHSReferences = true;
|
|
|
|
meta = {
|
|
description = "Enables the creation of sanitizing and tracing tools that target CUDA applications";
|
|
longDescription = ''
|
|
The Compute Sanitizer API enables the creation of sanitizing and tracing tools that target CUDA applications.
|
|
Examples of such tools are memory and race condition checkers.
|
|
'';
|
|
homepage = "https://docs.nvidia.com/compute-sanitizer/SanitizerApiGuide";
|
|
};
|
|
}
|