Remove HIP command dependency tracking.

Change-Id: I991c13bc5108193959ba70f9f6f9c692c9ad3a5b
Tento commit je obsažen v:
Ben Sander
2016-09-19 17:09:50 -05:00
rodič 8c4cecf367
revize 7530fa6dbe
3 změnil soubory, kde provedl 3 přidání a 72 odebrání
-2
Zobrazit soubor
@@ -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);
}