diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-03-07 09:29:38 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-03-07 09:29:38 +0100 |
commit | c7a50f08b2415517a26d9081e85250ef2575382c (patch) | |
tree | 9e1aed02334417728d939efa3bfdb8e97f8d0262 /benchmark-scripts | |
parent | fbe786c11825f7d0ffdf828a09e457dd3a73ddce (diff) |
Diffstat (limited to 'benchmark-scripts')
-rwxr-xr-x | benchmark-scripts/milos.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/benchmark-scripts/milos.sh b/benchmark-scripts/milos.sh index 62ad036..88a15b4 100755 --- a/benchmark-scripts/milos.sh +++ b/benchmark-scripts/milos.sh @@ -20,6 +20,7 @@ set -x # idle system : > log/${TS}-milos-dram-idle.txt : > log/${TS}-milos-hbm-idle.txt +: > log/${TS}-milos-cxl-idle.txt for cpunode in $(seq 0 7); do for datanode in $(seq 0 7); do @@ -34,4 +35,10 @@ for cpunode in $(seq 0 7); do ${CHASE} -n map ${cpunode}:${datanode} -a forward ${stride} >> log/${TS}-milos-hbm-idle.txt done done + for datanode in 16; do + ${CHASE} -n map ${cpunode}:${datanode} >> log/${TS}-milos-cxl-idle.txt + for stride in 1 2 4 8 16 32 64; do + ${CHASE} -n map ${cpunode}:${datanode} -a forward ${stride} >> log/${TS}-milos-cxl-idle.txt + done + done done |