Skip to content

Commit

Permalink
fix csv format
Browse files Browse the repository at this point in the history
  • Loading branch information
erincatto committed Jan 22, 2025
1 parent 59aac9f commit 69fb5a0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion benchmark/amd7950x_avx2/joint_grid.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
threads, ms
threads,ms
1,2664.01
2,1567.06
3,1080.91
Expand Down
2 changes: 1 addition & 1 deletion benchmark/amd7950x_avx2/large_pyramid.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
threads, ms
threads,ms
1,1570.29
2,871.185
3,613.11
Expand Down
2 changes: 1 addition & 1 deletion benchmark/amd7950x_avx2/many_pyramids.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
threads, ms
threads,ms
1,2682.25
2,1481.3
3,977.918
Expand Down
2 changes: 1 addition & 1 deletion benchmark/amd7950x_avx2/rain.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
threads, ms
threads,ms
1,6819.14
2,4114.75
3,3104.05
Expand Down
2 changes: 1 addition & 1 deletion benchmark/amd7950x_avx2/smash.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
threads, ms
threads,ms
1,1722.58
2,1081.59
3,812.772
Expand Down
2 changes: 1 addition & 1 deletion benchmark/amd7950x_avx2/spinner.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
threads, ms
threads,ms
1,4341.12
2,2694.07
3,2050.24
Expand Down
2 changes: 1 addition & 1 deletion benchmark/amd7950x_avx2/tumbler.csv
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
threads, ms
threads,ms
1,1743.49
2,1096.53
3,824.097
Expand Down
2 changes: 1 addition & 1 deletion benchmark/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ int main( int argc, char** argv )
continue;
}

fprintf( file, "threads, ms\n" );
fprintf( file, "threads,ms\n" );
for ( int threadIndex = 1; threadIndex <= maxThreadCount; ++threadIndex )
{
fprintf( file, "%d,%g\n", threadIndex, minTime[threadIndex - 1] );
Expand Down

0 comments on commit 69fb5a0

Please sign in to comment.