removed hwloc

main
Claudius Holeksa 2023-02-04 23:57:46 +01:00
parent 4be9ce496a
commit d1fa27b32a
2 changed files with 7 additions and 2 deletions

View File

@ -37,7 +37,6 @@ let
gtest
];
build_inputs = [
hwloc
gflags
rapidjson
];

View File

@ -1,6 +1,10 @@
{ ... }:
let
pkgs = (import <nixpkgs>{config = {allowUnfree = true;};});
pkgs = (import <nixpkgs>{
config = {
allowUnfree = true;
};
});
in
{
ginkgo-project = {
@ -10,6 +14,7 @@ in
"-DGINKGO_CUDA=OFF"
"-DGINKGO_BUILD_BENCHMARKS=OFF"
"-DGINKGO_BUILD_EXAMPLES=OFF"
"-DGINKGO-BUILD_HWLOC=OFF"
];
};
cuda = pkgs.callPackage ./derivation.nix {
@ -17,6 +22,7 @@ in
"-DGINKGO_CUDA=ON"
"-DGINKGO_BUILD_BENCHMARKS=OFF"
"-DGINKGO_BUILD_EXAMPLES=OFF"
"-DGINKGO-BUILD_HWLOC=OFF"
];
extraBuildInputs = [
pkgs.cudatoolkit