Skip to content

Commit

Permalink
Update test/unit/cute/intel_xe/utils.hpp
Browse files Browse the repository at this point in the history
Co-authored-by: Joe Todd <[email protected]>
  • Loading branch information
aacostadiaz and joeatodd authored Jan 17, 2025
1 parent d6d00f6 commit 654a24b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/cute/intel_xe/utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ void verify(uint32_t m, uint32_t n, uint32_t k, atype *A, btype *B, ctype *C,
cnt++;
}
} else {
is_normal = (expect == 0 && val == 0);
// TODO(codeplay): Assert that at least some values are non-zero.
if(!(expect == 0 && val == 0)) is_normal = false;
}
}
}
Expand Down

0 comments on commit 654a24b

Please sign in to comment.