Files
compute-runtime/opencl/source/built_ins/unknown_built_in_name.cpp
Mateusz Jablonski a5a5c94097 Correct clCreateProgramWithBuiltInKernels
create program for all provided devices
move OCL specific code from shared to opencl

Related-To: NEO-5001
Change-Id: Ic352b4e907ae75426634ae4b3c7048edecaf83e7
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2020-10-22 19:26:34 +02:00

22 lines
536 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, ClDevice &device) {
throw std::runtime_error("getBuiltinDispatchInfoBuilder failed");
}
} // namespace NEO