Skip to content

Commit

Permalink
Test verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaem committed Apr 19, 2024
1 parent a76c009 commit 82c6c7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/bin/l2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ void test_forward_backward(size_t N, size_t maxs, size_t M, double m,
double *input_array = (double *)calloc(N, sizeof(double));
double *output_array = (double *)calloc(N, sizeof(double));

if (verbose > 1)
printf("Initializing\n");
// srand48((unsigned int)time(NULL));
srand48(1);
// Initialize some input array
Expand Down
2 changes: 1 addition & 1 deletion src/bin/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ l2c = executable('l2c',
link_with : l2clib)

test('test l2c forward-backward N1000', l2c, args : ['-N1000', '-d2'])
test('test l2c forward-backward N100', l2c, args : ['-N100', '-d2'])
test('test l2c forward-backward N100', l2c, args : ['-N100', '-d2', '-v2'])
test('test l2c direct', l2c, args : ['-N100', '-d3'])
test('test l2c forward 2d', l2c, args : ['-N400', '-d4'])
test('test l2c forward-backward 2d', l2c, args : ['-N400', '-d5'])
Expand Down

0 comments on commit 82c6c7f

Please sign in to comment.