Remove HIP command dependency tracking.

Change-Id: I991c13bc5108193959ba70f9f6f9c692c9ad3a5b
This commit is contained in:
Ben Sander
2016-09-19 17:09:50 -05:00
parent 8c4cecf367
commit 7530fa6dbe
3 changed files with 3 additions and 72 deletions
-2
View File
@@ -39,7 +39,6 @@ hipError_t ihipEventCreate(hipEvent_t* event, unsigned flags)
eh->_stream = NULL;
eh->_flags = flags;
eh->_timestamp = 0;
eh->_copySeqId = 0;
*event = eh; // TODO - allocat the event directly, no copy needed.
} else {
e = hipErrorInvalidValue;
@@ -123,7 +122,6 @@ hipError_t hipEventSynchronize(hipEvent_t event)
return ihipLogStatus(hipSuccess);
} else {
event->_marker.wait((event->_flags & hipEventBlockingSync) ? hc::hcWaitModeBlocked : hc::hcWaitModeActive);
event->_stream->locked_reclaimSignals(event->_copySeqId);
return ihipLogStatus(hipSuccess);
}