Skip to content

Commit c859d54

Browse files
committed
Fix bug 2
1 parent acfd3f7 commit c859d54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/module_base/blas_connector.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ void BlasConnector::gemm(const char transa, const char transb, const int m, cons
110110
}
111111
#ifdef __DSP
112112
else if (device_type == base_device::AbacusDevice_t::DspDevice){
113-
sgemm_mt_(&transb, &transa, &n, &m, &k,
113+
dgemm_mt_(&transb, &transa, &n, &m, &k,
114114
&alpha, b, &ldb, a, &lda,
115115
&beta, c, &ldc);
116116
}

0 commit comments

Comments
 (0)