Cleanup headers

Make TUs and headers self-contained, remove unused headers

Signed-off-by: Daniel Chabrowski <daniel.chabrowski@intel.com>
This commit is contained in:
Daniel Chabrowski
2022-05-17 19:04:23 +00:00
committed by Compute-Runtime-Automation
parent ac3005a463
commit 7463e1970b
88 changed files with 211 additions and 118 deletions

View File

@@ -7,16 +7,15 @@
#pragma once
#include <stdint.h>
namespace NEO {
namespace ThreadArbitrationPolicy {
#include <cstdint>
enum : int32_t {
namespace NEO {
enum ThreadArbitrationPolicy : int32_t {
AgeBased = 0,
RoundRobin = 1,
RoundRobinAfterDependency = 2,
NotPresent = -1
};
} // namespace ThreadArbitrationPolicy
} // namespace NEO