"vscode:/vscode.git/clone" did not exist on "b1d3c95425737dcb51598c044b9f2119955882fa"
Commit b6acf57f authored by Paul's avatar Paul
Browse files

Print out if it passed

parent c9e3af8e
......@@ -42,7 +42,11 @@ int main(int argc, char const* argv[])
std::string file = argv[1];
auto x = run_cpu(file);
auto y = run_gpu(file);
if(x != y)
if(x == y)
{
std::cout << "Passed" << std::endl;
}
else
{
std::cout << "Not equal" << std::endl;
std::cout << x << 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