64 lines
1.3 KiB
Nix
64 lines
1.3 KiB
Nix
{
|
|
autoAddDriverRunpath,
|
|
cmake,
|
|
cudaPackages,
|
|
lib,
|
|
saxpy,
|
|
}:
|
|
let
|
|
inherit (cudaPackages)
|
|
backendStdenv
|
|
cuda_cccl
|
|
cuda_cudart
|
|
cuda_nvcc
|
|
cudaAtLeast
|
|
flags
|
|
libcublas
|
|
;
|
|
inherit (lib) getDev getLib getOutput;
|
|
in
|
|
backendStdenv.mkDerivation {
|
|
pname = "saxpy";
|
|
version = "unstable-2023-07-11";
|
|
|
|
src = ./src;
|
|
|
|
__structuredAttrs = true;
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
autoAddDriverRunpath
|
|
cuda_nvcc
|
|
];
|
|
|
|
buildInputs = [
|
|
(getDev libcublas)
|
|
(getLib libcublas)
|
|
(getOutput "static" libcublas)
|
|
cuda_cudart
|
|
]
|
|
++ lib.optionals (cudaAtLeast "12.0") [ cuda_cccl ];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "CMAKE_VERBOSE_MAKEFILE" true)
|
|
(lib.cmakeFeature "CMAKE_CUDA_ARCHITECTURES" flags.cmakeCudaArchitecturesString)
|
|
];
|
|
|
|
passthru.gpuCheck = saxpy.overrideAttrs (_: {
|
|
requiredSystemFeatures = [ "cuda" ];
|
|
doInstallCheck = true;
|
|
postInstallCheck = ''
|
|
$out/bin/${saxpy.meta.mainProgram or (lib.getName saxpy)}
|
|
'';
|
|
});
|
|
|
|
meta = {
|
|
description = "Simple (Single-precision AX Plus Y) FindCUDAToolkit.cmake example for testing cross-compilation";
|
|
license = lib.licenses.mit;
|
|
teams = [ lib.teams.cuda ];
|
|
mainProgram = "saxpy";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|