Merge "SWDEV-235495 Fix elapsed time calculation" into amd-master-next

Этот коммит содержится в:
Saleel Kudchadker
2020-05-12 15:23:23 -04:00
коммит произвёл Gerrit Code Review
родитель a5f15bd7bc 5b60eee02e
Коммит 93dcace83c
+1 -1
Просмотреть файл
@@ -91,7 +91,7 @@ hipError_t Event::elapsedTime(Event& eStop, float& ms) {
}
ms = static_cast<float>(static_cast<int64_t>(eStop.event_->profilingInfo().end_ -
event_->profilingInfo().start_))/1000000.f;
event_->profilingInfo().end_))/1000000.f;
return hipSuccess;
}