Skip to content

Commit e155bc0

Browse files
authored
Merge pull request #5571 from mattip/issue5570
fix regression due to adding bgemv interfaces
2 parents 9023e76 + cbecf98 commit e155bc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/scal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ void CNAME(blasint n, FLOAT alpha, FLOAT *x, blasint incx){
7373
float alpha_float;
7474
SBF16TOS_K(1, &alpha, 1, &alpha_float, 1);
7575
#else
76-
float alpha_float = alpha;
76+
FLOAT alpha_float = alpha;
7777
#endif
7878

7979
if (alpha_float == ONE) return;

0 commit comments

Comments
 (0)