Commit 64f71de8 authored by Paul's avatar Paul
Browse files

Formatting

parent 60917cc7
......@@ -14,7 +14,8 @@ hip_event_ptr create_event()
{
hipEvent_t event;
// Default is hipEventReleaseToDevice
auto status = hipEventCreateWithFlags(&event, hipEventDisableTiming | hipEventReleaseToSystem | hipEventBlockingSync);
auto status = hipEventCreateWithFlags(
&event, hipEventDisableTiming | hipEventReleaseToSystem | hipEventBlockingSync);
if(status != hipSuccess)
MIGRAPHX_THROW("Failed to create event");
return hip_event_ptr{event};
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment