# Copyright (c) Meta Platforms, Inc. and affiliates. # All rights reserved. # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. load("@fbcode_macros//build_defs:python_library.bzl", "python_library") oncall("executorch") python_library( name = "replace_quant_nodes_pass", srcs = ["replace_quant_nodes_pass.py"], deps = [ "//caffe2:torch", "//executorch/exir:lib", "//executorch/exir:pass_base", "//executorch/exir/dialects:lib", "//executorch/backends/cortex_m/ops:ops", ] )