mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 06:24:51 +08:00
23 lines
314 B
C++
23 lines
314 B
C++
/*
|
|
* Copyright (C) 2019-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
|
|
enum class SubmissionStatus : uint32_t {
|
|
success = 0,
|
|
failed,
|
|
outOfMemory,
|
|
outOfHostMemory,
|
|
unsupported,
|
|
deviceUninitialized,
|
|
};
|
|
|
|
} // namespace NEO
|