Skip to content

Commit a6cf6f4

Browse files
committed
bench : minor fixes
1 parent 472a473 commit a6cf6f4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extra/bench-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ printf "\n"
1919
./bench -w 1 -t 1 2>&1
2020

2121
printf "\n"
22-
printf "Running ggml_mul_mat benchmark with " $n_threads " threads\n"
22+
printf "Running ggml_mul_mat benchmark with $n_threads threads\n"
2323
printf "\n"
2424

2525
./bench -w 2 -t $n_threads 2>&1

whisper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4103,7 +4103,7 @@ WHISPER_API int whisper_bench_memcpy(int n_threads) {
41034103

41044104
for (size_t i = 0; i < size; i++) sum += dst[i];
41054105

4106-
fprintf(stderr, "sum: %s\n", sum == -536870910.00 ? "ok" : "error");
4106+
fprintf(stderr, "sum: %s %f\n", sum == -536870910.00 ? "ok" : "error", sum);
41074107
}
41084108

41094109
free(src);

0 commit comments

Comments
 (0)