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
3 changes: 2 additions & 1 deletion backends/arm/debug/TARGETS → backends/arm/debug/BUCK
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
load("@fbcode_macros//build_defs:build_file_migration.bzl", "fbcode_target", "non_fbcode_target")
# @noautodeps
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")

runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "schema",
srcs = [
"__init__.py",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
load("@fbcode_macros//build_defs:build_file_migration.bzl", "fbcode_target", "non_fbcode_target")
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")

runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "operator_support",
srcs = glob(["*.py"]),
deps = [
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
load("@fbcode_macros//build_defs:build_file_migration.bzl", "fbcode_target", "non_fbcode_target")
# @noautodeps
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")

runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "node_visitor",
srcs = ["node_visitor.py"],
deps = [
Expand All @@ -11,12 +12,12 @@ runtime.python_library(
],
)

runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "operator_validation_utils",
srcs = ["operator_validation_utils.py"],
)

runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "ops",
srcs = glob(["op_*.py", "ops_*.py"]),
deps = [
Expand All @@ -30,7 +31,7 @@ runtime.python_library(
],
)

runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "lib",
srcs = ["__init__.py"],
deps = [
Expand Down
11 changes: 6 additions & 5 deletions backends/arm/quantizer/TARGETS → backends/arm/quantizer/BUCK
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
load("@fbcode_macros//build_defs:build_file_migration.bzl", "fbcode_target", "non_fbcode_target")
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")

# Exposed through __init__.py
runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "quantization_config",
srcs = ["quantization_config.py"],
deps = [
Expand All @@ -11,7 +12,7 @@ runtime.python_library(
)

# Exposed through __init__.py
runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "arm_quantizer",
srcs = ["arm_quantizer.py"],
deps = [
Expand All @@ -23,7 +24,7 @@ runtime.python_library(
],
)

runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "quantization_annotator",
srcs = ["quantization_annotator.py"],
deps = [
Expand All @@ -34,7 +35,7 @@ runtime.python_library(
],
)

runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "arm_quantizer_utils",
srcs = ["arm_quantizer_utils.py"],
deps = [
Expand All @@ -43,7 +44,7 @@ runtime.python_library(
],
)

runtime.python_library(
fbcode_target(_kind = runtime.python_library,
name = "lib",
srcs = ["__init__.py"],
deps = [
Expand Down
Loading