diff --git a/Makefile b/Makefile index 7d4306c..db483fe 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ .PHONY: all build debug clean profile bench CMAKE := cmake -NINJA := ninja BUILD_DIR := build BENCHMARK_DIR := benchmark_results diff --git a/environment.yml b/environment.yml index b7cfcec..674b1b6 100644 --- a/environment.yml +++ b/environment.yml @@ -3,7 +3,6 @@ channels: - conda-forge dependencies: - cmake - - ninja - python - matplotlib - seaborn diff --git a/scripts/kernel_10_autotuner.sh b/scripts/kernel_10_autotuner.sh index d6a1ba9..76a8761 100755 --- a/scripts/kernel_10_autotuner.sh +++ b/scripts/kernel_10_autotuner.sh @@ -98,7 +98,7 @@ sed -i "s/const uint K10_TM = .*/const uint K10_TM = $TM;/" $RUNNER sed -i "s/const uint K10_TN = .*/const uint K10_TN = $TN;/" $RUNNER # Rebuild the program -ninja +make echo "($CONFIG_NUM/$TOTAL_CONFIGS): BK=$BK BM=$BM BN=$BN WM=$WM WN=$WN WN_ITER=$WN_ITER TM=$TM TN=$TN NUM_THREADS=$NUM_THREADS" |& tee -a $OUTPUT # Run the benchmark and get the result diff --git a/scripts/kernel_9_autotuner.sh b/scripts/kernel_9_autotuner.sh index 8329ac4..89e0a38 100755 --- a/scripts/kernel_9_autotuner.sh +++ b/scripts/kernel_9_autotuner.sh @@ -72,7 +72,7 @@ for bk in ${BK_VALUES[@]}; do sed -i "s/const int K9_NUM_THREADS = .*/const int K9_NUM_THREADS = $nt;/" $KERNEL # Rebuild the program - ninja + make echo "($CONFIG_NUM/$TOTAL_CONFIGS): BK=$bk TM=$tm TN=$tn BM=$bm BN=$bn NUM_THREADS=$nt" |& tee -a $OUTPUT # Run the benchmark and get the result