Skip to content
Snippets Groups Projects
Commit c1b608c3 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing example

parent 8eafde4b
No related branches found
No related tags found
No related merge requests found
Pipeline #4049 failed
......@@ -140,12 +140,12 @@ void check_read(in_type & in, out_type & out)
float h = in.template get<0>(i)[0];
success &= in.template get<0>(i)[1] == (a+b+c+d+e+f+g+h);
}
if (success == false)
{
std::cout << "FAIL READ" << std::endl;
if (success == false)
{
std::cout << "FAIL READ " << i << in.template get<0>(i)[1] << " != " << a+b+c+d+e+f+g+h << std::endl;
exit(1);
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment