mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 09:58:55 +08:00
Related-To: NEO-3220 Change-Id: Ib85a1f4fd69b47bc8e819a29cc4adec73bda72e0 Signed-off-by: Pawel Wilma <pawel.wilma@intel.com>
20 lines
466 B
C++
20 lines
466 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "runtime/built_ins/built_ins.h"
|
|
|
|
namespace NEO {
|
|
|
|
const char *getUnknownBuiltinAsString(EBuiltInOps::Type builtin) {
|
|
return "unknown";
|
|
}
|
|
|
|
BuiltinDispatchInfoBuilder &BuiltIns::getUnknownDispatchInfoBuilder(EBuiltInOps::Type operation, Context &context, Device &device) {
|
|
throw std::runtime_error("getBuiltinDispatchInfoBuilder failed");
|
|
}
|
|
} // namespace NEO
|