SWDEV-307915 - hipHccModuleLaunchKernel correct event timing

Change-Id: I397a3d6cf0cf8639666befb9ed7a357c6753741c
Cette révision appartient à :
anusha GodavarthySurya
2021-10-25 21:46:46 -07:00
Parent 63c6799130
révision 8d30df5ccf
2 fichiers modifiés avec 4 ajouts et 3 suppressions
+2 -2
Voir le fichier
@@ -390,7 +390,7 @@ hipError_t ihipModuleLaunchKernel(hipFunction_t f, uint32_t globalWorkSizeX,
if (startEvent != nullptr) {
hip::Event* eStart = reinterpret_cast<hip::Event*>(startEvent);
status = eStart->addMarker(hStream, nullptr, false);
status = eStart->addMarker(hStream, nullptr, true);
if (status != hipSuccess) {
return status;
}
@@ -400,7 +400,7 @@ hipError_t ihipModuleLaunchKernel(hipFunction_t f, uint32_t globalWorkSizeX,
if (stopEvent != nullptr) {
hip::Event* eStop = reinterpret_cast<hip::Event*>(stopEvent);
eStop->BindCommand(*command);
eStop->BindCommand(*command, true);
}
command->release();