1load("@fbcode_macros//build_defs:python_library.bzl", "python_library") 2 3oncall("executorch") 4 5python_library( 6 name = "xnnpack_utils", 7 srcs = glob(["*.py"]), 8 deps = [ 9 "//caffe2:torch", 10 "//executorch/exir:lib", 11 "//executorch/exir:pass_manager", 12 "//executorch/exir/backend/canonical_partitioners:config_partitioner_lib", 13 "//executorch/exir/dialects:lib", 14 "//pytorch/ao:torchao", # @manual 15 ], 16) 17