Skip to content

Commit

Permalink
Larger tolerance in timer calibration routine.
Browse files Browse the repository at this point in the history
  • Loading branch information
matteo-frigo committed Sep 6, 2005
1 parent ed07b94 commit 8c4b74a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libbench2/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
*
*/

/* $Id: timer.c,v 1.6 2003-05-12 22:22:16 stevenj Exp $ */
/* $Id: timer.c,v 1.7 2005-09-06 02:22:50 athena Exp $ */

#include "bench.h"
#include <stdio.h>
Expand Down Expand Up @@ -114,7 +114,7 @@ if you find them useful.
typedef char *TYPE;
static const double tmin_try = 1.0e-6; /* seconds */
static const double tmax_try = 1.0; /* seconds */
static const double tolerance = 0.001;
static const double tolerance = 0.01;

static TYPE **work(int n, TYPE **p)
{
Expand Down

0 comments on commit 8c4b74a

Please sign in to comment.