2017-12-21 07:45:38 +08:00
|
|
|
/*
|
2022-03-08 01:00:26 +08:00
|
|
|
* Copyright (C) 2018-2022 Intel Corporation
|
2018-09-18 15:11:08 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-12-21 07:45:38 +08:00
|
|
|
#pragma once
|
2019-11-12 20:59:37 +08:00
|
|
|
|
2022-05-18 03:04:23 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
namespace NEO {
|
2021-05-24 23:48:46 +08:00
|
|
|
|
2022-05-18 03:04:23 +08:00
|
|
|
enum ThreadArbitrationPolicy : int32_t {
|
2022-03-08 01:00:26 +08:00
|
|
|
AgeBased = 0,
|
|
|
|
RoundRobin = 1,
|
|
|
|
RoundRobinAfterDependency = 2,
|
|
|
|
NotPresent = -1
|
2018-07-04 20:52:23 +08:00
|
|
|
};
|
2021-05-24 23:48:46 +08:00
|
|
|
|
2019-03-26 18:59:46 +08:00
|
|
|
} // namespace NEO
|