File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ if(EXECUTORCH_BUILD_KERNELS_OPTIMIZED)
59
59
optimized_kernels
60
60
${_optimized_native_cpu_ops_lib_portable_kernels_lib}
61
61
DEPS
62
- executorch
62
+ executorch_core
63
63
)
64
64
65
65
install (TARGETS optimized_native_cpu_ops_lib DESTINATION lib )
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ endif()
18
18
19
19
list (TRANSFORM _extension_flat_tensor__srcs PREPEND "${EXECUTORCH_ROOT} /" )
20
20
add_library (extension_flat_tensor ${_extension_flat_tensor__srcs} )
21
- target_link_libraries (extension_flat_tensor executorch extension_data_loader )
21
+ target_link_libraries (extension_flat_tensor executorch_core )
22
22
target_include_directories (
23
23
extension_flat_tensor
24
24
PUBLIC ${EXECUTORCH_ROOT} /..
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ target_compile_options(optimized_kernels PUBLIC ${_common_compile_options})
71
71
#
72
72
# optimized_ops_lib: Register optimized ops kernels into Executorch runtime
73
73
gen_operators_lib (
74
- LIB_NAME "optimized_ops_lib" KERNEL_LIBS optimized_kernels DEPS executorch
74
+ LIB_NAME "optimized_ops_lib" KERNEL_LIBS optimized_kernels DEPS executorch_core
75
75
)
76
76
77
77
install (
Original file line number Diff line number Diff line change @@ -142,13 +142,13 @@ if(NOT CMAKE_GENERATOR STREQUAL "Xcode"
142
142
endif ()
143
143
144
144
add_library (quantized_kernels ${_quantized_kernels__srcs} )
145
- target_link_libraries (quantized_kernels PRIVATE executorch )
145
+ target_link_libraries (quantized_kernels PRIVATE executorch_core )
146
146
target_compile_options (quantized_kernels PUBLIC ${_common_compile_options} )
147
147
# Build a library for _quantized_kernels_srcs
148
148
#
149
149
# quantized_ops_lib: Register quantized ops kernels into Executorch runtime
150
150
gen_operators_lib (
151
- LIB_NAME "quantized_ops_lib" KERNEL_LIBS quantized_kernels DEPS executorch
151
+ LIB_NAME "quantized_ops_lib" KERNEL_LIBS quantized_kernels DEPS executorch_core
152
152
)
153
153
154
154
install (
You can’t perform that action at this time.
0 commit comments