-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update notes, add message behavior and versioning details
- Loading branch information
Showing
2 changed files
with
4 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -491,7 +491,9 @@ | |
|
||
/// @} | ||
|
||
// Use assert when on device | ||
// Use assert when on device (note that messages are omitted). | ||
// Device HIP assert() tested with [email protected] | ||
// (ROCm support for device assert() begins with version 5.1.0). | ||
#elif defined(AXOM_DEBUG) && defined(AXOM_DEVICE_CODE) | ||
#define SLIC_ASSERT(EXP) assert(EXP) | ||
#define SLIC_ASSERT_MSG(EXP, msg) assert(EXP) | ||
|