mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 09:59:39 +08:00
21 lines
256 B
C
21 lines
256 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2019 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
enum class EvictionStatus : uint32_t {
|
||
|
|
SUCCESS = 0,
|
||
|
|
FAILED,
|
||
|
|
NOT_APPLIED,
|
||
|
|
UNKNOWN
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace NEO
|