mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-05 20:55:59 +00:00
Format.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user