Skip to content

Commit

Permalink
Merge pull request #1095 from LLNL/bugfix/han12/shaping_hang
Browse files Browse the repository at this point in the history
Change to fix intersection shaper unit tests with HIP
  • Loading branch information
bmhan12 committed May 30, 2023
2 parents b1c06e2 + b68ea35 commit 1ae02ac
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/axom/slic/interface/slic_macros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -522,7 +522,11 @@ AXOM_HOST_DEVICE inline blackhole &operator<<(blackhole &bh, T)
} // namespace internal
} // namespace slic
} // namespace axom
#define SLIC_ASSERT(EXP) ((void)(EXP))

// Bug: Causes intersection shaper unit tests to hang with HIP
// #define SLIC_ASSERT(EXP) ((void)(EXP))

#define SLIC_ASSERT(EXP) ((void)(0))
#define SLIC_ASSERT_MSG(EXP, msg) \
{ \
if(false) \
Expand Down

0 comments on commit 1ae02ac

Please sign in to comment.