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
|