mirror of
https://github.com/intel/compute-runtime.git
synced 2025-06-28 17:58:30 +08:00

Change-Id: I740a349a0f15229cd356fffe996932029bf0f98b Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
22 lines
534 B
C++
22 lines
534 B
C++
/*
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#include "shared/source/built_ins/built_ins.h"
|
|
|
|
#include "opencl/source/built_ins/builtins_dispatch_builder.h"
|
|
|
|
namespace NEO {
|
|
|
|
const char *getUnknownBuiltinAsString(EBuiltInOps::Type builtin) {
|
|
return "unknown";
|
|
}
|
|
|
|
BuiltinDispatchInfoBuilder &BuiltInDispatchBuilderOp::getUnknownDispatchInfoBuilder(EBuiltInOps::Type operation, Device &device) {
|
|
throw std::runtime_error("getBuiltinDispatchInfoBuilder failed");
|
|
}
|
|
} // namespace NEO
|