Skip to content

Commit ac2d77a

Browse files
dbortfacebook-github-bot
authored andcommitted
Arm: support files with prefix "ops_"
Summary: D69765254 (#8518) adds a file named `ops_binary.py` which doesn't match the current pattern of `op_*.py` files in this directory. Update the glob so that this new file will be picked up by the buck2 build, silencing a type-checking issue. Differential Revision: D69878804
1 parent e5dc18a commit ac2d77a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backends/arm/operators/TARGETS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ python_library(
1313

1414
python_library(
1515
name = "ops",
16-
srcs = glob(["op_*.py"]),
16+
srcs = glob(["op_*.py", "ops_*.py"]),
1717
typing = True,
1818
deps = [
1919
"fbsource//third-party/serialization_lib/python/tosa:tosa",

0 commit comments

Comments
 (0)