Skip to content

Commit 1ab9f50

Browse files
authored
Merge pull request #4690 from mattip/blasint
use blasint instead of int to quiet warnings
2 parents f0560f9 + 243640c commit 1ab9f50

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

utest/test_extensions/test_cgemm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ static float check_cgemm(char transa, char transb, blasint m, blasint n, blasint
7575
char transb_verify = transb;
7676
char cc[2]="C", cr[2]="R";
7777

78-
int arows = k, acols = m;
79-
int brows = n, bcols = k;
78+
blasint arows = k, acols = m;
79+
blasint brows = n, bcols = k;
8080

8181
if (transa == 'T' || transa == 'C'){
8282
arows = m; acols = k;

utest/test_extensions/test_zgemm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ static double check_zgemm(char transa, char transb, blasint m, blasint n, blasin
7575
char transb_verify = transb;
7676
char cc[2]="C", cr[2]="R";
7777

78-
int arows = k, acols = m;
79-
int brows = n, bcols = k;
78+
blasint arows = k, acols = m;
79+
blasint brows = n, bcols = k;
8080

8181
if (transa == 'T' || transa == 'C'){
8282
arows = m; acols = k;

0 commit comments

Comments
 (0)