File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,14 @@ include(${EXECUTORCH_ROOT}/build/Codegen.cmake)
28
28
#
29
29
set (_kernel_lib )
30
30
if (SELECT_ALL_OPS )
31
- gen_selected_ops ("" "" ${SELECT_ALL_OPS} )
31
+ gen_selected_ops ("" "" " ${SELECT_ALL_OPS} " )
32
32
list (APPEND _kernel_lib portable_kernels )
33
33
elseif (SELECT_OPS_LIST )
34
- gen_selected_ops ("" ${SELECT_OPS_LIST} "" )
34
+ gen_selected_ops ("" " ${SELECT_OPS_LIST} " "" )
35
35
list (APPEND _kernel_lib portable_kernels )
36
36
elseif (SELECT_OPS_YAML )
37
37
set (_custom_ops_yaml ${EXECUTORCH_ROOT} /examples/custom_ops/custom_ops.yaml )
38
- gen_selected_ops (${_custom_ops_yaml} "" "" )
38
+ gen_selected_ops (" ${_custom_ops_yaml} " "" "" )
39
39
set (kernel_sources
40
40
${EXECUTORCH_ROOT} /examples/custom_ops/custom_ops_1_out.cpp
41
41
${EXECUTORCH_ROOT} /examples/custom_ops/custom_ops_2_out.cpp )
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ test_cmake_select_ops_in_list() {
79
79
&& cd cmake-out \
80
80
&& cmake -DBUCK2=buck2 \
81
81
-DBUILD_SELECTIVE_BUILD_TEST=ON \
82
- -DSELECT_OPS_LIST=" aten::add.out; aten::mm.out" \
82
+ -DSELECT_OPS_LIST=" aten::add.out, aten::mm.out" \
83
83
-DPYTHON_EXECUTABLE=" $PYTHON_EXECUTABLE " ..)
84
84
85
85
echo " Build selective build test"
You can’t perform that action at this time.
0 commit comments