mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-20 00:24:58 +08:00
Use l0 power saving setting to also adjust ulls timeout. Related-To: NEO-10800 Signed-off-by: Dominik Dabek <dominik.dabek@intel.com>
20 lines
286 B
C++
20 lines
286 B
C++
/*
|
|
* Copyright (C) 2020-2024 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
enum QueueThrottle : uint32_t {
|
|
LOW,
|
|
MEDIUM,
|
|
HIGH
|
|
};
|
|
|
|
QueueThrottle getThrottleFromPowerSavingUint(uint8_t value);
|
|
} // namespace NEO
|