You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our asserts need to be tweaked. With a verbose compiler I'm getting the following warning for most all of the asserts:
"<path>/kokkos_types.h", line 3834: warning: pointless comparison of unsigned integer with zero [unsigned_compare_with_zero]
assert(j >= 0 && j < dims_[1] && "j is out of bounds in ViewCArrayKokkos 2D!");
Its a valid point, since j is a size_t, it is impossible for it to be anything other than >=0.
The text was updated successfully, but these errors were encountered:
Our asserts need to be tweaked. With a verbose compiler I'm getting the following warning for most all of the asserts:
Its a valid point, since j is a size_t, it is impossible for it to be anything other than >=0.
The text was updated successfully, but these errors were encountered: