11 Commits

Author SHA1 Message Date
39ccc19282 Update versions to 2025.2
Some checks failed
CI / build:all (pull_request) Failing after 5m4s
2025-10-08 12:16:23 +02:00
a1086d8c67 Minify packages.json 2025-10-08 12:16:22 +02:00
2b5abf4990 Use packages.json for intel packages instead of awk script 2025-10-08 12:16:22 +02:00
67a7abbb70 Use gcc13 for llvm-ompss2 for intel 2025-10-08 12:16:22 +02:00
dc96b999cb Use gcc13 for intel compiler 2025-10-08 12:16:22 +02:00
9d2604ebb8 Add passthru in ompss2 wrapper for icpx compat 2025-10-08 12:16:22 +02:00
68b74f61fe Remove wrapper flags when clang called from intel 2025-10-08 12:16:22 +02:00
88f480fddf Add oneMath 2025-10-08 12:16:22 +02:00
0b0de30d12 Fix parsing of new apt package list for oneapi 2023
New apt list does not have Package: as the first entry for all packages
2025-10-08 12:16:21 +02:00
745b435dba Add TASYCL 2.1.0 2025-10-08 12:16:18 +02:00
d60713ef9e Add test for icpx with ompss-2 as host compiler 2025-10-08 11:41:25 +02:00
2 changed files with 4 additions and 4 deletions

View File

@@ -95,7 +95,6 @@ let
wrappedCCIntel = wrapCCWith {
inherit bintools extraPackages;
cc = cc.override { gcc = gcc13; }; # Intel uses gcc13, so we have to match it
gccForLibs = gcc13;
# extraPackages adds packages to depsTargetTargetPropagated
extraBuildCommands = intelExtraBuildCommands + envExports;
};

View File

@@ -44,12 +44,13 @@ intelPackages.stdenv.mkDerivation {
dontUnpack = true;
dontConfigure = true;
# NODES requires access to /sys/devices to request NUMA information
requiredSystemFeatures = [ "sys-devices" ];
# NODES requires access to /sys/devices to request NUMA information. It will
# fail to run otherwise, so we disable the sandbox for this test.
__noChroot = true;
env.NODES_HOME = nodes;
NIX_DEBUG = 1;
NIX_DEBUG = 0;
buildPhase = ''
cp $src hello.cpp
set -x