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
#219 changed all uses of assert() to use ALPAKA_ASSERT_OFFLOAD, and this disables the assertions by default. This behavior corresponds what we do in cuda program, but in cudacompat we have asserts enabled. A ALPAKA_DEBUG_OFFLOAD_ASSUME_HOST macro can be used to enable assertions, so the question is, should we enable that macro for Alpaka CPU backends to be consistent with the behavior of cudacompat?
(or vice versa, should we disable asserts also in cudacompat?)
The text was updated successfully, but these errors were encountered:
#219 changed all uses of
assert()
to useALPAKA_ASSERT_OFFLOAD
, and this disables the assertions by default. This behavior corresponds what we do incuda
program, but incudacompat
we have asserts enabled. AALPAKA_DEBUG_OFFLOAD_ASSUME_HOST
macro can be used to enable assertions, so the question is, should we enable that macro for Alpaka CPU backends to be consistent with the behavior ofcudacompat
?(or vice versa, should we disable asserts also in
cudacompat
?)The text was updated successfully, but these errors were encountered: