forked from rarias/jungle
Add tests for Intel OCL
This commit is contained in:
parent
bd22d6650d
commit
0be0ebe359
@ -83,7 +83,9 @@ let
|
|||||||
hello-sycl = callPackage ./test/compilers/hello-sycl.nix { };
|
hello-sycl = callPackage ./test/compilers/hello-sycl.nix { };
|
||||||
hello-syclompss = callPackage ./test/compilers/icpx-ompss2.nix { };
|
hello-syclompss = callPackage ./test/compilers/icpx-ompss2.nix { };
|
||||||
hello-sycl-pocl = (callPackage ./test/compilers/hello-sycl.nix { }).withPocl;
|
hello-sycl-pocl = (callPackage ./test/compilers/hello-sycl.nix { }).withPocl;
|
||||||
|
hello-sycl-intel = (callPackage ./test/compilers/hello-sycl.nix { }).withIntel;
|
||||||
hello-syclompss-pocl = (callPackage ./test/compilers/icpx-ompss2.nix { }).withPocl;
|
hello-syclompss-pocl = (callPackage ./test/compilers/icpx-ompss2.nix { }).withPocl;
|
||||||
|
hello-syclompss-intel = (callPackage ./test/compilers/icpx-ompss2.nix { }).withIntel;
|
||||||
|
|
||||||
lto = callPackage ./test/compilers/lto.nix { };
|
lto = callPackage ./test/compilers/lto.nix { };
|
||||||
asan = callPackage ./test/compilers/asan.nix { };
|
asan = callPackage ./test/compilers/asan.nix { };
|
||||||
|
|||||||
@ -61,19 +61,31 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
cp test-output $out
|
cp test-output $out
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru.withPocl = finalAttrs.finalPackage.overrideAttrs (old: {
|
passthru = {
|
||||||
nativeBuildInputs = old.nativeBuildInputs ++ [ pocl ];
|
withPocl = finalAttrs.finalPackage.overrideAttrs (old: {
|
||||||
env = (old.env or { }) // {
|
nativeBuildInputs = old.nativeBuildInputs ++ [ pocl ];
|
||||||
POCL_DEBUG = "error,warn";
|
env = (old.env or { }) // {
|
||||||
POCL_CACHE_DIR = "/build/pocl_cache";
|
POCL_DEBUG = "error,warn";
|
||||||
|
POCL_CACHE_DIR = "/build/pocl_cache";
|
||||||
|
|
||||||
# Make PoCL report Intel vendor id so oneapi SYCL works
|
# Make PoCL report Intel vendor id so oneapi SYCL works
|
||||||
POCL_DRIVER_VERSION_OVERRIDE = "2024.18.6.0.02_160000";
|
POCL_DRIVER_VERSION_OVERRIDE = "2024.18.6.0.02_160000";
|
||||||
POCL_CPU_VENDOR_ID_OVERRIDE = 32902;
|
POCL_CPU_VENDOR_ID_OVERRIDE = 32902;
|
||||||
};
|
};
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
installCheckPhase = ''
|
installCheckPhase = ''
|
||||||
grep "Hello World! (on device)" $out
|
grep "Hello World! (on device)" $out
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
withIntel = finalAttrs.finalPackage.overrideAttrs (old: {
|
||||||
|
env = (old.env or { }) // {
|
||||||
|
OCL_ICD_VENDORS = intelPackages.compiler + "/etc/OpenCL/vendors";
|
||||||
|
};
|
||||||
|
doInstallCheck = true;
|
||||||
|
installCheckPhase = ''
|
||||||
|
grep "Hello World! (on device)" $out
|
||||||
|
'';
|
||||||
|
|
||||||
|
});
|
||||||
|
};
|
||||||
})
|
})
|
||||||
|
|||||||
@ -49,21 +49,33 @@ intelPackages.stdenv.mkDerivation (finalAttrs: {
|
|||||||
nosv
|
nosv
|
||||||
];
|
];
|
||||||
|
|
||||||
passthru.withPocl = finalAttrs.finalPackage.overrideAttrs (old: {
|
passthru = {
|
||||||
nativeBuildInputs = old.nativeBuildInputs ++ [ pocl ];
|
withPocl = finalAttrs.finalPackage.overrideAttrs (old: {
|
||||||
env = (old.env or { }) // {
|
nativeBuildInputs = old.nativeBuildInputs ++ [ pocl ];
|
||||||
POCL_DEBUG = "error,warn";
|
env = (old.env or { }) // {
|
||||||
POCL_CACHE_DIR = "/build/pocl_cache";
|
POCL_DEBUG = "error,warn";
|
||||||
|
POCL_CACHE_DIR = "/build/pocl_cache";
|
||||||
|
|
||||||
# Make PoCL report Intel vendor id so oneapi SYCL works
|
# Make PoCL report Intel vendor id so oneapi SYCL works
|
||||||
POCL_DRIVER_VERSION_OVERRIDE = "2024.18.6.0.02_160000";
|
POCL_DRIVER_VERSION_OVERRIDE = "2024.18.6.0.02_160000";
|
||||||
POCL_CPU_VENDOR_ID_OVERRIDE = 32902;
|
POCL_CPU_VENDOR_ID_OVERRIDE = 32902;
|
||||||
};
|
};
|
||||||
doInstallCheck = true;
|
doInstallCheck = true;
|
||||||
installCheckPhase = ''
|
installCheckPhase = ''
|
||||||
grep "Hello World! (on device)" $out
|
grep "Hello World! (on device)" $out
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
withIntel = finalAttrs.finalPackage.overrideAttrs (old: {
|
||||||
|
env = (old.env or { }) // {
|
||||||
|
OCL_ICD_VENDORS = intelPackages.compiler + "/etc/OpenCL/vendors";
|
||||||
|
};
|
||||||
|
doInstallCheck = true;
|
||||||
|
installCheckPhase = ''
|
||||||
|
grep "Hello World! (on device)" $out
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
dontUnpack = true;
|
dontUnpack = true;
|
||||||
dontConfigure = true;
|
dontConfigure = true;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user