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
|