diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-01-10 10:23:41 +0100 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2025-01-10 10:23:41 +0100 |
commit | 871ab174f5edc761adc0e21bf8fb9ce82b898d26 (patch) | |
tree | fec338717fd36c5d5ba551d870c8e6a4b7bd98ed /TRNS/dimes-hetsim-hbm.sh | |
parent | ffc37b5f40278ff6b736fb2aeaa407171bd103da (diff) |
TRNS: Support compilation without -march=native
Diffstat (limited to 'TRNS/dimes-hetsim-hbm.sh')
-rwxr-xr-x | TRNS/dimes-hetsim-hbm.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/TRNS/dimes-hetsim-hbm.sh b/TRNS/dimes-hetsim-hbm.sh index e2efaee..cc5dc68 100755 --- a/TRNS/dimes-hetsim-hbm.sh +++ b/TRNS/dimes-hetsim-hbm.sh @@ -32,7 +32,7 @@ fn=log/$(hostname)/dimes-hetsim-hbm ( -make -B NUMA=1 NUMA_MEMCPY=1 +make -B numa=1 numa_memcpy=1 echo "CPU single-node operation with setup cost, memcpy node == input node, cpu node == output node (1/3)" >&2 @@ -43,10 +43,9 @@ parallel -j1 --eta --joblog ${fn}.1.joblog --resume --header : \ ::: ram_in $(seq 0 15) \ :::+ cpu_memcpy $(seq 0 7) $(seq 0 7) \ ::: ram_local $(seq 0 15) \ - :::+ cpu $(seq 0 7) $(seq 0 7) \ - ::: input_size 167772160 + :::+ cpu $(seq 0 7) $(seq 0 7) -make -B NUMA=1 +make -B numa=1 echo "CPU single-node operation (2/3)" >&2 |