2019-07-05 10:31:32 +02:00
|
|
|
/*
|
2019-09-30 11:20:16 +02:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-07-05 10:31:32 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-24 13:10:44 +01:00
|
|
|
#include "shared/source/built_ins/built_ins.h"
|
|
|
|
|
|
2020-02-22 22:50:57 +01:00
|
|
|
#include "opencl/source/built_ins/builtins_dispatch_builder.h"
|
2019-07-05 10:31:32 +02:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
|
|
const char *getUnknownBuiltinAsString(EBuiltInOps::Type builtin) {
|
|
|
|
|
return "unknown";
|
|
|
|
|
}
|
2019-09-30 11:20:16 +02:00
|
|
|
|
2020-02-21 11:37:14 +01:00
|
|
|
BuiltinDispatchInfoBuilder &BuiltInDispatchBuilderOp::getUnknownDispatchInfoBuilder(EBuiltInOps::Type operation, Device &device) {
|
2019-09-30 11:20:16 +02:00
|
|
|
throw std::runtime_error("getBuiltinDispatchInfoBuilder failed");
|
|
|
|
|
}
|
2019-07-05 10:31:32 +02:00
|
|
|
} // namespace NEO
|