Skip to content

Commit 0160db3

Browse files
committed
Fix bug
1 parent 5dcbaa6 commit 0160db3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/module_hsolver/kernels/math_kernel_op.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ struct gemm_op<T, base_device::DEVICE_CPU>
275275
const int& ldb,
276276
const T* beta,
277277
T* c,
278-
const int& ldc,)
278+
const int& ldc)
279279
{
280280
BlasConnector::gemm(transb, transa, n, m, k, *alpha, b, ldb, a, lda, *beta, c, ldc);
281281
}

0 commit comments

Comments
 (0)