File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 57
57
- arg_meta : null
58
58
kernel_name : torch::executor::embedding_out
59
59
60
+ - op : expand_copy.out
61
+ kernels :
62
+ - arg_meta : null
63
+ kernel_name : torch::executor::expand_copy_out
64
+
60
65
- op : full.out
61
66
kernels :
62
67
- arg_meta : null
63
68
kernel_name : torch::executor::full_out
64
69
70
+ - op : gelu.out
71
+ kernels :
72
+ - arg_meta : null
73
+ kernel_name : torch::executor::gelu_out
74
+
65
75
- op : mean.out
66
76
kernels :
67
77
- arg_meta : null
Original file line number Diff line number Diff line change @@ -47,7 +47,9 @@ set(_aten_ops__srcs
47
47
"${EXECUTORCH_ROOT} /kernels/portable/cpu/op_split_with_sizes_copy.cpp"
48
48
"${EXECUTORCH_ROOT} /kernels/portable/cpu/op_sub.cpp"
49
49
"${EXECUTORCH_ROOT} /kernels/portable/cpu/op_to_copy.cpp"
50
- "${EXECUTORCH_ROOT} /kernels/portable/cpu/op_where.cpp" )
50
+ "${EXECUTORCH_ROOT} /kernels/portable/cpu/op_where.cpp"
51
+ "${EXECUTORCH_ROOT} /kernels/portable/cpu/op_expand_copy.cpp"
52
+ "${EXECUTORCH_ROOT} /kernels/portable/cpu/op_gelu.cpp" )
51
53
add_library (aten_ops_cadence ${_aten_ops__srcs} )
52
54
target_link_libraries (aten_ops_cadence PUBLIC executorch )
53
55
target_link_libraries (aten_ops_cadence PRIVATE cadence_kernels )
@@ -82,7 +84,7 @@ generate_bindings_for_kernels(
82
84
LIB_NAME "cadence_ops_lib" OPS_SCHEMA_YAML
83
85
FUNCTIONS_YAML ${CMAKE_CURRENT_SOURCE_DIR} /../../aot/functions.yaml
84
86
)
85
- message ("Generated files ${gen_command_sources} " )
87
+ message ("Generated cadence x86 files ${gen_command_sources} " )
86
88
87
89
gen_operators_lib (
88
90
LIB_NAME "cadence_ops_lib"
You can’t perform that action at this time.
0 commit comments