diff options
author | Thomas White <taw@physics.org> | 2019-06-04 17:11:11 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-06-04 17:11:11 +0200 |
commit | 48942c4eeb4f41d9b55efdb54fbacc2b28f4e22b (patch) | |
tree | f17f5a6e971b2223add00621afb395eb06beef72 /tests/gpu_sim_check.c | |
parent | 02af27133bb83a2ca187d52623d9db35375489a7 (diff) |
gpu_sim_check: Increase tolerance from 1.1% to 1.2%
1.13% deviation now observed in the wild, with no other problems.
Diffstat (limited to 'tests/gpu_sim_check.c')
-rw-r--r-- | tests/gpu_sim_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gpu_sim_check.c b/tests/gpu_sim_check.c index c9508a7c..c864e9c6 100644 --- a/tests/gpu_sim_check.c +++ b/tests/gpu_sim_check.c @@ -237,7 +237,7 @@ int main(int argc, char *argv[]) STATUS("CPU: min=%8e, max=%8e, total=%8e\n", cpu_min, cpu_max, cpu_tot); STATUS("dev = %8e (%5.2f%% of CPU total)\n", dev, perc); - if ( perc > 1.1 ) { + if ( perc > 1.2 ) { STATUS("Test failed! I'm writing cpu-sim.h5 and gpu-sim.h5" " for you to inspect.\n"); |