KMD Notfy: Multiply timeout by taskCount diff only on Linux

Change-Id: Idb75dcc02cd218ff097f29d6881c97bb8feb25da
This commit is contained in:
Dunajski, Bartosz
2018-04-19 19:08:10 +02:00
committed by sys_ocldev
parent 6eec23844b
commit 5ed13d7c88
8 changed files with 80 additions and 23 deletions

View File

@@ -22,4 +22,10 @@
#include "runtime/helpers/kmd_notify_properties.h"
void OCLRT::KmdNotifyHelper::updateAcLineStatus() {}
using namespace OCLRT;
void KmdNotifyHelper::updateAcLineStatus() {}
int64_t KmdNotifyHelper::getBaseTimeout(const int64_t &multiplier) const {
return properties->delayKmdNotifyMicroseconds * multiplier;
}