diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-31 15:44:51 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2023-05-31 15:44:51 +0200 |
commit | 20e2656d51a2d13a6d4783b97933e8098a1ff158 (patch) | |
tree | aaefe7575476ab8f8ac3032fa4dbc8cb3bb6304a /TS/baselines/cpu/Makefile | |
parent | ea5352505750377a1de36c1fa12e012dc0d3af4c (diff) |
TS: port CPU and NMC versions to dfatool
Diffstat (limited to 'TS/baselines/cpu/Makefile')
-rw-r--r-- | TS/baselines/cpu/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/TS/baselines/cpu/Makefile b/TS/baselines/cpu/Makefile index 69121ed..b0b9a86 100644 --- a/TS/baselines/cpu/Makefile +++ b/TS/baselines/cpu/Makefile @@ -1,4 +1,3 @@ - all: streamp_openmp streamp_openmp: streamp_openmp.cpp tools.cpp @@ -13,10 +12,15 @@ streamp_openmp_O2: streamp_openmp.cpp tools.cpp run: streamp_openmp ./streamp_openmp inputs/randomlist33M.txt 256 +# may need OMP_NUM_THREADS=32 (≈ tinos) -- does not work with 88 threads @ ios + run_O0: streamp_openmp_O0 ./streamp_openmp_O0 inputs/randomlist33M.txt 256 run_O2: streamp_openmp_O2 ./streamp_openmp_O2 inputs/randomlist33M.txt 256 +clean: + rm -f streamp_openmp streamp_openmp_O0 streamp_openmp_O2 + .PHONY: all run run_O0 run_O2 clean |