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
This commit is contained in:
Saleel Kudchadker
2020-05-27 00:36:27 -07:00
parent cbe2bedf42
commit facb05495f
3 changed files with 27 additions and 9 deletions
+2 -2
View File
@@ -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();