[ao][fx] fixing public v private graph_module.py (#88395)

Summary: made _is_observed_module, _is_observed_standalone_module
private

Test Plan: python test/test_public_bindings.py

Reviewers:

Subscribers:

Tasks:

Tags:

Differential Revision: [D41015545](https://our.internmc.facebook.com/intern/diff/D41015545)

Pull Request resolved: https://github.com/pytorch/pytorch/pull/88395
Approved by: https://github.com/jcaip
This commit is contained in:
HDCharles
2022-12-13 18:20:12 -08:00
committed by PyTorch MergeBot
parent 283cf718ed
commit f286cbebce
5 changed files with 12 additions and 14 deletions

View File

@ -10,8 +10,8 @@ from torch.ao.quantization.fx.graph_module import (
GraphModule,
FusedGraphModule,
ObservedGraphModule,
is_observed_module,
_is_observed_module,
ObservedStandaloneGraphModule,
is_observed_standalone_module,
_is_observed_standalone_module,
QuantizedGraphModule
)