1 /*
2  * Copyright (C) 2019-2020 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #pragma once
9 #include <cstdint>
10 
11 namespace NEO {
12 enum PreemptionMode : uint32_t {
13     // Keep in sync with ForcePreemptionMode debug variable
14     Initial = 0,
15     Disabled = 1,
16     MidBatch,
17     ThreadGroup,
18     MidThread,
19 };
20 } // namespace NEO
21