Add hipEventDisableSystemRelease flag.

[ROCm/clr commit: 2c2625cb9e]
This commit is contained in:
Ben Sander
2017-05-12 15:57:32 -05:00
parent 42292df1a3
commit 9b222c0ae4
3 changed files with 12 additions and 1 deletions
+9 -1
View File
@@ -56,6 +56,9 @@ THE SOFTWARE.
#define USE_ROCR_1_4 1
#endif
// needs HCC change for hc::no_scope
#define USE_NO_SCOPE 0
//=================================================================================================
//Global variables:
//=================================================================================================
@@ -364,8 +367,13 @@ void ihipStream_t::locked_recordEvent(hipEvent_t event)
LockedAccessor_StreamCrit_t crit(_criticalData);
this->ensureHaveQueue(crit);
#if USE_NO_SCOPE
printf ("create_marker, flags = %x\n", event->_flags);
event->_marker = crit->_av.create_marker((event->_flags & hipEventDisableSystemRelease) ? hc::no_scope : hc::system_scope);
#else
event->_marker = crit->_av.create_marker();
}
#endif
};
//=============================================================================