"olla/src/Kernel.cpp" did not exist on "949599defd18b98d68d054ef45ca65475e37c03f"
Commit 82554f15 authored by Peter Eastman's avatar Peter Eastman
Browse files

Increased the tolerance on two tests that started failing when we switched the...

Increased the tolerance on two tests that started failing when we switched the reference platform to double precision
parent 74c3def4
...@@ -371,7 +371,7 @@ void testLargeSystem() { ...@@ -371,7 +371,7 @@ void testLargeSystem() {
const int numParticles = numMolecules*2; const int numParticles = numMolecules*2;
const double cutoff = 2.0; const double cutoff = 2.0;
const double boxSize = 20.0; const double boxSize = 20.0;
const double tol = 1e-3; const double tol = 2e-3;
CudaPlatform cuda; CudaPlatform cuda;
ReferencePlatform reference; ReferencePlatform reference;
System system; System system;
......
...@@ -366,7 +366,7 @@ void testLargeSystem() { ...@@ -366,7 +366,7 @@ void testLargeSystem() {
const int numParticles = numMolecules*2; const int numParticles = numMolecules*2;
const double cutoff = 2.0; const double cutoff = 2.0;
const double boxSize = 20.0; const double boxSize = 20.0;
const double tol = 1e-3; const double tol = 2e-3;
OpenCLPlatform cl; OpenCLPlatform cl;
ReferencePlatform reference; ReferencePlatform reference;
System system; System system;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment