mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 09:59:39 +08:00
16 lines
261 B
C++
16 lines
261 B
C++
/*
|
|
* Copyright (C) 2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/built_ins/built_ins.h"
|
|
|
|
namespace NEO {
|
|
|
|
const char *getUnknownBuiltinAsString(EBuiltInOps::Type builtin) {
|
|
return "unknown";
|
|
}
|
|
} // namespace NEO
|