1load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime") 2 3oncall("executorch") 4 5runtime.python_library( 6 name = "vulkan_partitioner", 7 srcs = [ 8 "vulkan_partitioner.py", 9 ], 10 visibility = [ 11 "//executorch/...", 12 "@EXECUTORCH_CLIENTS", 13 ], 14 deps = [ 15 "//executorch/backends/vulkan:op_registry", 16 "//executorch/backends/vulkan:utils_lib", 17 "//executorch/backends/vulkan:vulkan_preprocess", 18 "//executorch/exir:delegate", 19 "//executorch/exir:lib", 20 "//executorch/exir/backend:partitioner", 21 "//executorch/exir/backend:utils", 22 "//executorch/exir/backend/canonical_partitioners:canonical_partitioner_lib", 23 ], 24) 25