This commit is contained in:
myamlak
2022-05-12 09:38:59 +00:00
parent 0c2d00df8a
commit 4d07aa1249
2 changed files with 3 additions and 8 deletions

View File

@@ -17,7 +17,4 @@
#include "gemm_specialization.hpp"
// stub only
int main()
{
return 0;
}
int main() { return 0; }

View File

@@ -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;