Skip to content
Merged
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
5 changes: 4 additions & 1 deletion backends/arm/TARGETS
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ load("@fbcode_macros//build_defs:python_library.bzl", "python_library")
python_library(
name = "arm_partitioner",
srcs = [
"arm_partitioner.py",
"ethosu_backend.py",
"ethosu_partitioner.py",
"tosa_backend.py",
"tosa_partitioner.py",
],
typing = True,
deps = [
Expand Down
2 changes: 1 addition & 1 deletion backends/arm/runtime/targets.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def define_common_targets():
)
runtime.cxx_library(
name = "arm_backend",
srcs = ["ArmBackendEthosU.cpp"],
srcs = ["EthosUBackend.cpp"],
headers = [],
compatible_with = ["ovr_config//cpu:arm32-embedded"],
# arm_executor_runner.cpp needs to compile with executor as whole
Expand Down
Loading