mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-29 00:58:39 +08:00
Change-Id: Id2af09190edbc1a3bb930210fe340691aa1e4578 Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
20 lines
448 B
C++
20 lines
448 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, Device &device) {
|
|
throw std::runtime_error("getBuiltinDispatchInfoBuilder failed");
|
|
}
|
|
} // namespace NEO
|