mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-24 12:23:05 +08:00
With direct submission disabled this resulted in waitTimeout long enough that kmdWait fallback was rarely used. This caused more CPU spin time. Related-To: GSD-3612 Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
17 lines
321 B
C++
17 lines
321 B
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/helpers/kmd_notify_properties.h"
|
|
|
|
using namespace NEO;
|
|
|
|
void KmdNotifyHelper::updateAcLineStatus() {}
|
|
|
|
int64_t KmdNotifyHelper::getBaseTimeout() const {
|
|
return properties->delayKmdNotifyMicroseconds;
|
|
}
|