Skip to content

Commit 99c077a

Browse files
authored
Update gemm_batch.c
1 parent fc042d9 commit 99c077a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interface/gemm_batch.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ void NAME(char *transa_array, char *transb_array,
121121
IFLOAT ** a_array, blasint * lda_array,
122122
IFLOAT ** b_array, blasint * ldb_array,
123123
FLOAT * beta_array,
124-
FLOAT ** c_array, blasint * ldc_array, blasint group_count, blasint * group_size) {
125-
124+
FLOAT ** c_array, blasint * ldc_array, blasint * gcount, blasint * group_size) {
125+
blasint group_count = *gcount;
126126
#else
127127

128128
void CNAME(enum CBLAS_ORDER order, enum CBLAS_TRANSPOSE * transa_array, enum CBLAS_TRANSPOSE * transb_array,

0 commit comments

Comments
 (0)