Remove HIP command dependency tracking.

Change-Id: I991c13bc5108193959ba70f9f6f9c692c9ad3a5b
Este commit está contenido en:
Ben Sander
2016-09-19 17:09:50 -05:00
padre b0509c5a58
commit c365785c5c
Se han modificado 3 ficheros con 3 adiciones y 72 borrados
-2
Ver fichero
@@ -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);
}