File tree Expand file tree Collapse file tree 4 files changed +18
-6
lines changed Expand file tree Collapse file tree 4 files changed +18
-6
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ set(RUNTIME_SRCS_BUILT_INS
11
11
${CMAKE_CURRENT_SOURCE_DIR} /builtins_dispatch_builder.h
12
12
${CMAKE_CURRENT_SOURCE_DIR} /built_in_ops_vme.h
13
13
${CMAKE_CURRENT_SOURCE_DIR} /built_ins.inl
14
- ${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR_SUFFIX} unknown_built_in_name .cpp
14
+ ${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR_SUFFIX} unknown_built_in .cpp
15
15
${CMAKE_CURRENT_SOURCE_DIR} /vme_builtin.cpp
16
16
${CMAKE_CURRENT_SOURCE_DIR} /vme_builtin.h
17
17
${CMAKE_CURRENT_SOURCE_DIR} /vme_dispatch_builder.h
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (C) 2019-2020 Intel Corporation
2
+ * Copyright (C) 2019-2021 Intel Corporation
3
3
*
4
4
* SPDX-License-Identifier: MIT
5
5
*
11
11
12
12
namespace NEO {
13
13
14
- const char *getUnknownBuiltinAsString (EBuiltInOps::Type builtin) {
15
- return " unknown" ;
16
- }
17
-
18
14
BuiltinDispatchInfoBuilder &BuiltInDispatchBuilderOp::getUnknownDispatchInfoBuilder (EBuiltInOps::Type operation, ClDevice &device) {
19
15
throw std::runtime_error (" getBuiltinDispatchInfoBuilder failed" );
20
16
}
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ set(NEO_CORE_SRCS_BUILT_INS
14
14
${CMAKE_CURRENT_SOURCE_DIR} /sip.cpp
15
15
${CMAKE_CURRENT_SOURCE_DIR} /sip.h
16
16
${CMAKE_CURRENT_SOURCE_DIR} /sip_kernel_type.h
17
+ ${CMAKE_CURRENT_SOURCE_DIR}${BRANCH_DIR_SUFFIX} unknown_built_in_name.cpp
17
18
)
18
19
19
20
add_subdirectory (builtinops )
Original file line number Diff line number Diff line change
1
+ /*
2
+ * Copyright (C) 2021 Intel Corporation
3
+ *
4
+ * SPDX-License-Identifier: MIT
5
+ *
6
+ */
7
+
8
+ #include " shared/source/built_ins/built_ins.h"
9
+
10
+ namespace NEO {
11
+
12
+ const char *getUnknownBuiltinAsString (EBuiltInOps::Type builtin) {
13
+ return " unknown" ;
14
+ }
15
+ } // namespace NEO
You can’t perform that action at this time.
0 commit comments