| 102 | event_wrapper::~event_wrapper() { static_cast<void>(hipEventDestroy(m_event)); } |
| 103 | |
| 104 | void event_wrapper::record(hipStream_t stream) |
| 105 | { |
| 106 | m_stream = stream; |
| 107 | CHECK_ROCM(hipEventRecord(m_event, m_stream)); |
| 108 | } |
| 109 | |
| 110 | bool event_wrapper::query() const |
| 111 | { |
no outgoing calls
no test coverage detected