Files
pytorch/torch/quantization/quantize_fx.py
alexmsettle b703e4b3c2 Add hierarchical module names to torchFX graph.node #87659 (#87742)
Fixes #87659

Pass down the module hierarchy from module.named_modules() to the name field of graph.node.
This makes it so the name of each node contains descriptive information about the network architecture.

Pull Request resolved: https://github.com/pytorch/pytorch/pull/87742
Approved by: https://github.com/jerryzh168
2022-12-02 05:58:06 +00:00

28 lines
710 B
Python

# flake8: noqa: F401
r"""
This file is in the process of migration to `torch/ao/quantization`, and
is kept here for compatibility while the migration process is ongoing.
If you are adding a new entry/functionality, please, add it to the
`torch/ao/quantization/quantize_fx.py`, while adding an import statement
here.
"""
from torch.ao.quantization.quantize_fx import (
_check_is_graph_module,
_swap_ff_with_fxff,
_fuse_fx,
QuantizationTracer,
_prepare_fx,
_prepare_standalone_module_fx,
fuse_fx,
prepare_fx,
prepare_qat_fx,
_convert_fx,
convert_fx,
_convert_standalone_module_fx,
)
from torch.ao.quantization.fx.graph_module import (
ObservedGraphModule,
)