Commit a398a5c1 authored by Paul's avatar Paul
Browse files

Use higher tolerance

parent 47fc908d
...@@ -47,7 +47,7 @@ int main(int argc, char const* argv[]) ...@@ -47,7 +47,7 @@ int main(int argc, char const* argv[])
auto x = run_cpu(file); auto x = run_cpu(file);
auto y = run_gpu(file); auto y = run_gpu(file);
visit_all(x, y)([](auto cpu, auto gpu) { visit_all(x, y)([](auto cpu, auto gpu) {
if(migraph::verify_range(cpu, gpu)) if(migraph::verify_range(cpu, gpu, 100))
{ {
std::cout << "Passed" << std::endl; std::cout << "Passed" << std::endl;
} }
......
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