mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 01:48:50 +08:00
22 lines
296 B
C
22 lines
296 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2019-2022 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
#include <cstdint>
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
enum class SubmissionStatus : uint32_t {
|
||
|
|
SUCCESS = 0,
|
||
|
|
FAILED,
|
||
|
|
OUT_OF_MEMORY,
|
||
|
|
UNSUPPORTED,
|
||
|
|
DEVICE_UNINITIALIZED,
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace NEO
|