Commit 4d07aa12 authored by myamlak's avatar myamlak
Browse files

Format.

parent 0c2d00df
......@@ -17,7 +17,4 @@
#include "gemm_specialization.hpp"
// stub only
int main()
{
return 0;
}
int main() { return 0; }
......@@ -64,8 +64,7 @@ struct ReferenceCGemm : public device::BaseOperator
if(K != arg.a_m_k_imag_.mDesc.GetLengths()[1])
{
throw std::runtime_error(
"wrong! Incompatible real and imag sizes in CGEMM");
throw std::runtime_error("wrong! Incompatible real and imag sizes in CGEMM");
}
float v_acc = 0;
......@@ -97,8 +96,7 @@ struct ReferenceCGemm : public device::BaseOperator
if(K != arg.a_m_k_imag_.mDesc.GetLengths()[1])
{
throw std::runtime_error(
"wrong! Incompatible real and imag sizes in CGEMM");
throw std::runtime_error("wrong! Incompatible real and imag sizes in CGEMM");
}
float v_acc = 0;
......
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