mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-31 03:20:47 +08:00
- extract QueueThrottle to core Change-Id: I954732a44ae4fdd5f227ec6be4e27b879ca6eece Signed-off-by: Mateusz Hoppe <mateusz.hoppe@intel.com>
18 lines
219 B
C++
18 lines
219 B
C++
/*
|
|
* Copyright (C) 2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
enum QueueThrottle : uint32_t {
|
|
LOW,
|
|
MEDIUM,
|
|
HIGH
|
|
};
|
|
} // namespace NEO
|