mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 23:03:02 +08:00
16 lines
255 B
C++
16 lines
255 B
C++
|
|
/*
|
||
|
|
* Copyright (C) 2019 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include "runtime/built_ins/built_ins.h"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
const char *getUnknownBuiltinAsString(EBuiltInOps::Type builtin) {
|
||
|
|
return "unknown";
|
||
|
|
}
|
||
|
|
} // namespace NEO
|