Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions backends/arm/_passes/TARGETS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
load("@fbcode_macros//build_defs:python_library.bzl", "python_library")

python_library(
# @autodeps-skip
name = "passes",
srcs = glob(["*.py"]),
typing = True,
Expand Down
2 changes: 2 additions & 0 deletions backends/arm/quantizer/TARGETS
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
load("@fbcode_macros//build_defs:python_library.bzl", "python_library")

python_library(
# @autodeps-skip
name = "arm_quantizer",
srcs = ["arm_quantizer.py"],
deps = [
Expand All @@ -20,6 +21,7 @@ python_library(
)

python_library(
# @autodeps-skip
name = "arm_quantizer_utils",
srcs = ["arm_quantizer_utils.py"],
deps = [
Expand Down
3 changes: 3 additions & 0 deletions backends/vulkan/test/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ load("@fbcode_macros//build_defs:python_unittest.bzl", "python_unittest")
oncall("executorch")

python_unittest(
# @autodeps-skip
name = "test_vulkan_delegate",
srcs = [
"test_vulkan_delegate.py",
Expand All @@ -25,6 +26,7 @@ python_unittest(
)

python_unittest(
# @autodeps-skip
name = "test_vulkan_delegate_header",
srcs = [
"test_vulkan_delegate_header.py",
Expand All @@ -35,6 +37,7 @@ python_unittest(
)

python_unittest(
# @autodeps-skip
name = "test_serialization",
srcs = [
"test_serialization.py",
Expand Down
1 change: 1 addition & 0 deletions devtools/bundled_program/test/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ python_unittest(
)

python_unittest(
# @autodeps-skip
name = "end2end",
srcs = [
"test_end2end.py",
Expand Down
2 changes: 2 additions & 0 deletions devtools/inspector/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
oncall("executorch")

python_library(
# @autodeps-skip
name = "inspector",
srcs = [
"_inspector.py",
Expand Down Expand Up @@ -32,6 +33,7 @@ python_binary(
)

python_library(
# @autodeps-skip
name = "inspector_utils",
srcs = [
"_inspector_utils.py",
Expand Down
1 change: 1 addition & 0 deletions examples/apple/coreml/scripts/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
load("@fbcode_macros//build_defs:python_binary.bzl", "python_binary")

python_binary(
# @autodeps-skip
name = "export",
srcs = [
"export.py",
Expand Down
1 change: 1 addition & 0 deletions examples/models/llama/tests/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ load("@fbcode_macros//build_defs:python_unittest.bzl", "python_unittest")
oncall("executorch")

python_unittest(
# @autodeps-skip
name = "test_simple_sdpa",
srcs = [
"test_simple_sdpa.py",
Expand Down
1 change: 1 addition & 0 deletions exir/program/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ python_library(
)

python_library(
# @autodeps-skip
name = "program",
srcs = [
"_program.py",
Expand Down
1 change: 1 addition & 0 deletions extension/pytree/test/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ cpp_unittest(
)

python_unittest(
# @autodeps-skip
name = "pybindings_test",
srcs = [
"test.py",
Expand Down
Loading