mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

Change ThreadArbitrationPolicy::NotPresent value to -1 Update initial values to ThreadArbitrationPolicy::NotPresent Related-To: NEO-6728 Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
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
|