SWDEV-301667 - Query event time directly

Change-Id: I566bfa95b8b6fa2bd4771e0c20224a4e74d5abb8
This commit is contained in:
Saleel Kudchadker
2022-03-08 14:26:32 -08:00
parent 106399f0fd
commit 73ff72bca9
2 changed files with 57 additions and 10 deletions
+44 -8
View File
@@ -39,6 +39,16 @@ bool Event::ready() {
return ready;
}
bool EventDD::ready() {
// Check HW status of the ROCcrl event. Note: not all ROCclr modes support HW status
bool ready = g_devices[deviceId()]->devices()[0]->IsHwEventReady(*event_);
// FIXME: Remove status check entirely
if (!ready) {
ready = (event_->status() == CL_COMPLETE);
}
return ready;
}
hipError_t Event::query() {
amd::ScopedLock lock(lock_);
@@ -67,10 +77,18 @@ hipError_t Event::synchronize() {
return hipSuccess;
}
bool Event::awaitEventCompletion() {
return event_->awaitCompletion();
}
bool EventDD::awaitEventCompletion() {
return g_devices[deviceId()]->devices()[0]->IsHwEventReady(*event_, true);
}
hipError_t Event::elapsedTime(Event& eStop, float& ms) {
amd::ScopedLock startLock(lock_);
if (this == &eStop) {
ms = 0.f;
if (event_ == nullptr) {
return hipErrorInvalidHandle;
}
@@ -83,12 +101,11 @@ hipError_t Event::elapsedTime(Event& eStop, float& ms) {
return hipErrorNotReady;
}
ms = 0.f;
return hipSuccess;
}
amd::ScopedLock stopLock(eStop.lock_);
amd::ScopedLock stopLock(eStop.lock());
if (event_ == nullptr || eStop.event_ == nullptr) {
if (event_ == nullptr || eStop.event() == nullptr) {
return hipErrorInvalidHandle;
}
@@ -100,7 +117,7 @@ hipError_t Event::elapsedTime(Event& eStop, float& ms) {
return hipErrorNotReady;
}
if (event_ == eStop.event_ && recorded_ && eStop.recorded_) {
if (event_ == eStop.event_ && recorded_ && eStop.isRecorded()) {
// Events are the same, which indicates the stream is empty and likely
// eventRecord is called on another stream. For such cases insert and measure a
// marker.
@@ -113,8 +130,8 @@ hipError_t Event::elapsedTime(Event& eStop, float& ms) {
} else {
// Note: with direct dispatch eStop.ready() relies on HW event, but CPU status can be delayed.
// Hence for now make sure CPU status is updated by calling awaitCompletion();
event_->awaitCompletion();
eStop.event_->awaitCompletion();
awaitEventCompletion();
eStop.awaitEventCompletion();
ms = static_cast<float>(eStop.time() - time()) / 1000000.f;
}
return hipSuccess;
@@ -129,6 +146,21 @@ int64_t Event::time() const {
}
}
int64_t EventDD::time() const {
uint64_t start = 0, end = 0;
assert(event_ != nullptr);
g_devices[deviceId()]->devices()[0]->getHwEventTime(*event_, &start, &end);
// FIXME: This is only needed if the command had to wait CL_COMPLETE status
if (start == 0 || end == 0) {
return Event::time();
}
if (recorded_) {
return static_cast<int64_t>(end);
} else {
return static_cast<int64_t>(start);
}
}
hipError_t Event::streamWaitCommand(amd::Command*& command, amd::HostQueue* queue) {
amd::Command::EventWaitList eventWaitList;
if (event_ != nullptr) {
@@ -225,7 +257,11 @@ hipError_t ihipEventCreateWithFlags(hipEvent_t* event, unsigned flags) {
if (flags & hipEventInterprocess) {
e = new hip::IPCEvent();
} else {
e = new hip::Event(flags);
if (AMD_DIRECT_DISPATCH) {
e = new hip::EventDD(flags);
} else {
e = new hip::Event(flags);
}
}
if (e == nullptr) {
return hipErrorOutOfMemory;