Fix elapsed time calculation for null stream

SWDEV-237377 - This fixes time calculation where the event may
be recorded on Null stream and work submitted on other streams

Change-Id: Ie36310dea5cee2fed4a514ed01f04db4b47e571c


[ROCm/hip commit: fb2d7bcd2b]
Αυτή η υποβολή περιλαμβάνεται σε:
Saleel Kudchadker
2020-05-27 00:36:27 -07:00
γονέας bb268f27fc
υποβολή 3c9945976e
3 αρχεία άλλαξαν με 27 προσθήκες και 9 διαγραφές
@@ -458,11 +458,11 @@ hipError_t ihipModuleLaunchKernel(hipFunction_t f,
command->enqueue();
if(startEvent != nullptr) {
eStart->addMarker(queue, command);
eStart->addMarker(queue, command, false);
command->retain();
}
if(stopEvent != nullptr) {
eStop->addMarker(queue, command);
eStop->addMarker(queue, command, false);
command->retain();
}
command->release();