Skip to content

Commit f745f02

Browse files
committed
benchmark: Fix missing colons in outputs of ./strsv.goto
1 parent d36b86a commit f745f02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmark/trsv.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ int main(int argc, char *argv[]){
127127
long long muls = n*(n+1)/2.0;
128128
long long adds = (n - 1.0)*n/2.0;
129129

130-
fprintf(stderr, "%10d %10.2f MFlops %10.6f sec\n", n,(muls+adds) / timeg * 1.e-6, timeg);
130+
fprintf(stderr, "%10d : %10.2f MFlops %10.6f sec\n", n,(muls+adds) / timeg * 1.e-6, timeg);
131131
if(a != NULL){
132132
free(a);
133133
}

0 commit comments

Comments
 (0)