23 lines
350 B
C++
23 lines
350 B
C++
/*
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
namespace NEO {
|
|
namespace ThreadArbitrationPolicy {
|
|
|
|
enum : int32_t {
|
|
AgeBased = 0,
|
|
RoundRobin = 1,
|
|
RoundRobinAfterDependency = 2,
|
|
NotPresent = -1
|
|
};
|
|
|
|
} // namespace ThreadArbitrationPolicy
|
|
} // namespace NEO
|