summaryrefslogtreecommitdiff
path: root/modules/remote-hip/.nix/derivation.nix
blob: af99c43090ad262df1d9962da1e6ee1fc9ff0639 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, scons
, clang-tools
, version
, forstio
, keldu
, rocmPackages

, build_examples ? "true"
, build_benchmarks ? "false"
}:

let

in rocmPackages.llvm.rocmClangStdenv.mkDerivation {
  pname = "forstio-remote-hip";
  inherit version;
  src = ./..;

  enableParallelBuilding = true;

  nativeBuildInputs = [
		clang-tools
    scons
    rocmPackages.clr
  ];

  buildInputs = [
    forstio.core
		forstio.codec
		forstio.async
		forstio.remote
	];

	buildPhase = ''
		HIP_ROOT_DIR=${rocmPackages.clr} scons build_benchmarks=${build_benchmarks} build_examples=${build_examples}
	'';

	installPhase = ''
		HIP_ROOT_DIR=${rocmPackages.clr} scons prefix=$out build_benchmarks=${build_benchmarks} build_examples=${build_examples} install
	'';

  doCheck = false;
  outputs = ["out" "dev"];
}