File tree Expand file tree Collapse file tree 1 file changed +2
-20
lines changed
backends/vulkan/test/op_tests Expand file tree Collapse file tree 1 file changed +2
-20
lines changed Original file line number Diff line number Diff line change @@ -82,24 +82,6 @@ def define_common_targets(is_fbcode = False):
82
82
default_outs = ["." ],
83
83
)
84
84
85
- pt_operator_library (
86
- name = "all_aten_ops" ,
87
- check_decl = False ,
88
- include_all_operators = True ,
89
- )
90
-
91
- runtime .cxx_library (
92
- name = "all_aten_ops_lib" ,
93
- srcs = [],
94
- define_static_target = False ,
95
- exported_deps = get_pt_ops_deps (
96
- name = "pt_ops_full" ,
97
- deps = [
98
- ":all_aten_ops" ,
99
- ],
100
- ),
101
- )
102
-
103
85
runtime .cxx_binary (
104
86
name = "compute_graph_op_tests_bin" ,
105
87
srcs = [
@@ -109,7 +91,7 @@ def define_common_targets(is_fbcode = False):
109
91
deps = [
110
92
"//third-party/googletest:gtest_main" ,
111
93
"//executorch/backends/vulkan:vulkan_graph_runtime" ,
112
- ":all_aten_ops_lib" ,
94
+ runtime . external_dep_location ( "libtorch" ) ,
113
95
],
114
96
)
115
97
@@ -125,7 +107,7 @@ def define_common_targets(is_fbcode = False):
125
107
deps = [
126
108
"//third-party/benchmark:benchmark" ,
127
109
"//executorch/backends/vulkan:vulkan_graph_runtime" ,
128
- ":all_aten_ops_lib" ,
110
+ runtime . external_dep_location ( "libtorch" ) ,
129
111
],
130
112
)
131
113
You can’t perform that action at this time.
0 commit comments