mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, config
|
|
, cudaSupport ? config.cudaSupport
|
|
, cudaPackages ? null
|
|
}:
|
|
|
|
assert cudaSupport -> cudaPackages != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "umpire";
|
|
version = "2024.07.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "LLNL";
|
|
repo = "umpire";
|
|
rev = "v${version}";
|
|
hash = "sha256-JbYaJe4bqlB272aZxB3Amw8fX/pmZr/4/7kaukAiK8c=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
] ++ lib.optionals cudaSupport [
|
|
cudaPackages.cuda_nvcc
|
|
];
|
|
|
|
buildInputs = lib.optionals cudaSupport (with cudaPackages; [
|
|
cudatoolkit
|
|
cuda_cudart
|
|
]);
|
|
|
|
cmakeFlags = lib.optionals cudaSupport [
|
|
"-DCUDA_TOOLKIT_ROOT_DIR=${cudaPackages.cudatoolkit}"
|
|
"-DENABLE_CUDA=ON"
|
|
(lib.cmakeFeature "CMAKE_CUDA_ARCHITECTURES" cudaPackages.flags.cmakeCudaArchitecturesString)
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Application-focused API for memory management on NUMA & GPU architectures";
|
|
homepage = "https://github.com/LLNL/Umpire";
|
|
maintainers = with maintainers; [ sheepforce ];
|
|
license = with licenses; [ mit ];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|