Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 1667d58

Browse files
committed
Added braces to expression to guarantee no-warnings
Signed-off-by: Vyacheslav N Klochkov <vyacheslav.n.klochkov@intel.com>
1 parent 21db007 commit 1667d58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SYCL/ESIMD/dpas/dpas_tf32.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ int main() {
6363
}).wait();
6464

6565
unsigned ErrCnt = 0;
66-
for (unsigned I = 0; I < M * N && ErrCnt < 10; ++I) {
66+
for (unsigned I = 0; (I < M * N) && (ErrCnt < 10); ++I) {
6767
int m = I / N;
6868
int n = I % N;
6969
float RefResC = 0.0f;

0 commit comments

Comments
 (0)