mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-23 11:03:02 +08:00
23 lines
333 B
C++
23 lines
333 B
C++
/*
|
|
* Copyright (C) 2025 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
enum class TranslationErrorCode {
|
|
success = 0,
|
|
compilerNotAvailable,
|
|
compilationFailure,
|
|
buildFailure,
|
|
linkFailure,
|
|
alreadyCompiled,
|
|
unknownError,
|
|
};
|
|
|
|
} // namespace NEO
|