"mmdet3d/vscode:/vscode.git/clone" did not exist on "9247e72cd70ab1408c4db0231a3c4fabd48a43ef"
Unverified Commit 69e9994c authored by Rostyslav Geyyer's avatar Rostyslav Geyyer Committed by GitHub
Browse files

Merge branch 'develop' into lwpck-359_int4

parents a7da01f0 88e43744
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include "ck/ck.hpp" #include "ck/ck.hpp"
#include "ck/utility/data_type.hpp" #include "ck/utility/data_type.hpp"
#include "ck/utility/type.hpp"
#include "ck/host_utility/io.hpp" #include "ck/host_utility/io.hpp"
namespace ck { namespace ck {
...@@ -164,7 +165,7 @@ check_err(const std::vector<T>& out, ...@@ -164,7 +165,7 @@ check_err(const std::vector<T>& out,
{ {
if(out.size() != ref.size()) if(out.size() != ref.size())
{ {
std::cout << msg << " out.size() != ref.size(), :" << out.size() << " != " << ref.size() std::cerr << msg << " out.size() != ref.size(), :" << out.size() << " != " << ref.size()
<< std::endl; << std::endl;
return false; return false;
} }
...@@ -185,8 +186,7 @@ check_err(const std::vector<T>& out, ...@@ -185,8 +186,7 @@ check_err(const std::vector<T>& out,
err_count++; err_count++;
if(err_count < 5) if(err_count < 5)
{ {
std::cout << msg << " out[" << i << "] != ref[" << i std::cerr << msg << " out[" << i << "] != ref[" << i << "]: " << o << " != " << r
<< "]: " << static_cast<int>(out[i]) << " != " << static_cast<int>(ref[i])
<< std::endl; << std::endl;
} }
res = false; res = false;
......
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