File tree Expand file tree Collapse file tree 5 files changed +0
-220
lines changed
runtime/core/exec_aten/testing_util Expand file tree Collapse file tree 5 files changed +0
-220
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ def get_all_cpu_backend_targets():
6
6
"""
7
7
return [
8
8
"//executorch/backends/xnnpack:xnnpack_backend" ,
9
- "//executorch/backends/fb/qnnpack:qnnpack_backend" ,
10
9
]
11
10
12
11
def get_all_cpu_aot_and_backend_targets ():
@@ -18,6 +17,4 @@ def get_all_cpu_aot_and_backend_targets():
18
17
return [
19
18
"//executorch/backends/xnnpack:xnnpack_preprocess" ,
20
19
"//executorch/backends/xnnpack/partition:xnnpack_partitioner" ,
21
- "//executorch/backends/fb/qnnpack:qnnpack_preprocess" ,
22
- "//executorch/backends/fb/qnnpack/partition:qnnpack_partitioner" ,
23
20
] + get_all_cpu_backend_targets ()
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ runtime.cxx_python_extension(
10
10
"bindings.cpp",
11
11
],
12
12
visibility = [
13
- "//executorch/backends/fb/qnnpack/...",
14
13
"//executorch/backends/vulkan/...",
15
14
"//executorch/backends/xnnpack/...",
16
15
"//executorch/devtools/bundled_program/...",
Original file line number Diff line number Diff line change 1
1
load("@fbcode_macros//build_defs:python_unittest.bzl", "python_unittest")
2
2
3
- python_unittest(
4
- name = "test_xnnpack_qnnpack",
5
- srcs = [
6
- "test_xnnpack_qnnpack.py",
7
- ],
8
- preload_deps = [
9
- "//executorch/kernels/portable:custom_ops_generated_lib",
10
- "//executorch/kernels/quantized:custom_ops_generated_lib",
11
- ],
12
- deps = [
13
- "//caffe2:torch",
14
- "//executorch/backends/fb/qnnpack:qnnpack_backend",
15
- "//executorch/backends/fb/qnnpack:qnnpack_preprocess",
16
- "//executorch/backends/fb/qnnpack/partition:qnnpack_partitioner",
17
- "//executorch/backends/xnnpack:xnnpack_backend",
18
- "//executorch/backends/xnnpack:xnnpack_preprocess",
19
- "//executorch/backends/xnnpack/partition:xnnpack_partitioner",
20
- "//executorch/exir:lib",
21
- "//executorch/exir/backend:backend_api",
22
- "//executorch/exir/passes:spec_prop_pass",
23
- "//executorch/extension/pybindings:portable_lib", # @manual
24
- "//executorch/extension/pytree:pylib",
25
- ],
26
- )
27
-
28
3
python_unittest(
29
4
name = "test_delegate_aten_mode",
30
5
srcs = [
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ def define_common_targets():
33
33
"//executorch/kernels/fb/custom_ops/..." ,
34
34
"//executorch/runtime/core/test/..." ,
35
35
"//executorch/test/..." ,
36
- "//executorch/backends/fb/qnnpack/test/..." ,
37
36
"//executorch/extension/kernel_util/test/..." ,
38
37
"@EXECUTORCH_CLIENTS" ,
39
38
],
You can’t perform that action at this time.
0 commit comments