mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-10-12 08:01:29 +08:00
blas: Fix parenthesis suggestion warning
This commit is contained in:
parent
e524488eb2
commit
7292c78e18
@ -222,7 +222,7 @@ EIGEN_BLAS_FUNC(gemmtr)
|
||||
Eigen::internal::gemm_blocking_space<ColMajor, Scalar, Scalar, Dynamic, Dynamic, Dynamic> blocking(*n, *n, *k, 1,
|
||||
false);
|
||||
|
||||
int code = OP(*opa) | (OP(*opb) << 2) + (UPLO(*uplo) * 12);
|
||||
int code = OP(*opa) | ((OP(*opb) << 2) + (UPLO(*uplo) * 12));
|
||||
func[code](*n, *k, a, *lda, b, *ldb, c, 1, *ldc, alpha, blocking);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user