Skip to content

Commit

Permalink
Make linpack test more robust (emscripten-core#8404)
Browse files Browse the repository at this point in the history
This reduces the noise there. But it is still surprisingly noisy.
  • Loading branch information
kripken authored and VirtualTim committed May 21, 2019
1 parent 9e2efb0 commit fc3dbcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/linpack2.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ int main(int argc, char **argv) {
N is the problem size.
*/
# define N 1000
# define N 2000
# define LDA ( N + 1 )

double *a;
Expand Down Expand Up @@ -85,7 +85,7 @@ int main(int argc, char **argv) {
printf ( " Matrix order N = %d\n", N );
printf ( " Leading matrix dimension LDA = %d\n", LDA );

ops = ( double ) ( 2 * N * N * N ) / 3.0 + 2.0 * ( double ) ( N * N );
ops = ( double ) ( 2.0 * N * N * N ) / 3.0 + 2.0 * ( double ) ( N * N );
/*
Allocate space for arrays.
*/
Expand Down

0 comments on commit fc3dbcb

Please sign in to comment.