Commit 47fc908d authored by Paul's avatar Paul
Browse files

Fix tolerance

parent a55b0793
...@@ -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, 1)) if(migraph::verify_range(cpu, gpu))
{ {
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