Skip to content

Commit db6a2c7

Browse files
committed
Squashed commit of the following:
commit 7de194f Author: Patrick Gartung <[email protected]> Date: Wed Mar 12 16:52:59 2025 +0100 Add MALLOC_CONF=zero:true commit 694749d Author: Patrick Gartung <[email protected]> Date: Sat Mar 8 02:42:26 2025 +0100 set ONEDNN_MAX_CPU_ISA=AVX2 when running igprof -pp
1 parent 3d6930e commit db6a2c7

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

reco_profiling/profileRunner.py

+3
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,9 @@ def writeProfilingScript(wfdir, runscript, cmdlist):
428428
fi.write("\n")
429429

430430
fi.write("")
431+
fi.write("ONEDNN_MAX_CPU_ISA=AVX2\n")
432+
fi.write("\n")
433+
fi.write("MALLOC_CONF=zero:true\n")
431434
fi.write("\n")
432435
for cmd in cmdlist:
433436
fi.write(cmd + "\n")

run-ib-igprof

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ for prof in ${PROFILES} ; do
4747
done
4848
cd -
4949
else
50+
ONEDNN_MAX_CPU_ISA=AVX2
51+
MALLOC_CONF=zero:true
5052
runTheMatrix.py $WF --command " -n $EVENTS --profile $prof" > ./runTheMatrix.log 2>&1 || ERR=1
5153
mv runTheMatrix.log $(ls -d $WORKFLOW*)
5254
fi

0 commit comments

Comments
 (0)