Skip to content

Commit

Permalink
Add required example_args argument to prepare_fx and prepare_qat_fx (…
Browse files Browse the repository at this point in the history
…#77608)

Summary:
X-link: pytorch/pytorch#77608

X-link: pytorch/fx2trt#76

X-link: facebookresearch/d2go#249

X-link: fairinternal/ClassyVision#104

X-link: pytorch/benchmark#916

Pull Request resolved: facebookresearch#791

X-link: facebookresearch/mobile-vision#68

FX Graph Mode Quantization needs to know whether an fx node is a floating point Tensor before it can decide whether to
insert observer/fake_quantize module or not, since we only insert observer/fake_quantize module for floating point Tensors.
Currently we have some hacks to support this by defining some rules like NON_OBSERVABLE_ARG_DICT (https://github.com/pytorch/pytorch/blob/master/torch/ao/quantization/fx/utils.py#L496), but this approach is fragile and we do not plan to maintain it long term in the pytorch code base.

As we discussed in the design review, we'd need to ask users to provide sample args and sample keyword args
so that we can infer the type in a more robust way. This PR starts with changing the prepare_fx and prepare_qat_fx api to require user to either provide
example arguments thrugh example_inputs, Note this api doesn't support kwargs, kwargs can make pytorch/pytorch#76496 (comment) (comment) simpler, but
it will be rare, and even then we can still workaround with positional arguments, also torch.jit.trace(https://pytorch.org/docs/stable/generated/torch.jit.trace.html) and ShapeProp: https://github.com/pytorch/pytorch/blob/master/torch/fx/passes/shape_prop.py#L140 just have single positional args, we'll just use a single example_inputs argument for now.

If needed, we can extend the api with an optional example_kwargs. e.g. in case when there are a lot of arguments for forward and it makes more sense to
pass the arguments by keyword

BC-breaking Note:
Before:
m = resnet18(...)
m = prepare_fx(m, qconfig_dict)

After:
m = resnet18(...)
m = prepare_fx(m, qconfig_dict, example_inputs=(torch.randn(1, 3, 224, 224),))

Reviewed By: vkuzo, andrewor14

Differential Revision: D35984526

fbshipit-source-id: f1690c0d02f6ce719b935843bf5bcb4a881da993
  • Loading branch information
jerryzh168 authored and facebook-github-bot committed May 19, 2022
1 parent 35c8f33 commit a88bbc1
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 30 deletions.
17 changes: 14 additions & 3 deletions test/models_densenet_test.py
Expand Up @@ -113,21 +113,32 @@ def _test_quantize_model(self, model_config):
_find_block_full_path(model.features, block_name)
for block_name in heads.keys()
]
# TODO[quant-example-inputs]: The dimension here is random, if we need to
# use dimension/rank in the future we'd need to get the correct dimensions
standalone_example_inputs = (torch.randn(1, 3, 3, 3),)
# we need to keep the modules used in head standalone since
# it will be accessed with path name directly in execution
prepare_custom_config_dict["standalone_module_name"] = [
(
head,
{"": tq.default_qconfig},
standalone_example_inputs,
{"input_quantized_idxs": [0], "output_quantized_idxs": []},
None,
)
for head in head_path_from_blocks
]
model.initial_block = prepare_fx(model.initial_block, {"": tq.default_qconfig})
# TODO[quant-example-inputs]: The dimension here is random, if we need to
# use dimension/rank in the future we'd need to get the correct dimensions
example_inputs = (torch.randn(1, 3, 3, 3),)
model.initial_block = prepare_fx(
model.initial_block, {"": tq.default_qconfig}, example_inputs
)

model.features = prepare_fx(
model.features,
{"": tq.default_qconfig},
example_inputs,
prepare_custom_config_dict,
)
model.set_heads(heads)
Expand All @@ -148,8 +159,8 @@ def test_small_densenet(self):
self._test_model(MODELS["small_densenet"])

@unittest.skipIf(
get_torch_version() < [1, 8],
"FX Graph Modee Quantization is only availablee from 1.8",
get_torch_version() < [1, 13],
"This test is using a new api of FX Graph Mode Quantization which is only available after 1.13"
)
def test_quantized_small_densenet(self):
self._test_quantize_model(MODELS["small_densenet"])
16 changes: 6 additions & 10 deletions test/models_mlp_test.py
Expand Up @@ -26,23 +26,19 @@ def test_build_model(self):
self.assertEqual(output.shape, torch.Size([2, 1]))

@unittest.skipIf(
get_torch_version() < [1, 8],
"FX Graph Modee Quantization is only availablee from 1.8",
get_torch_version() < [1, 13],
"This test is using a new api of FX Graph Mode Quantization which is only available after 1.13"
)
def test_quantize_model(self):
if get_torch_version() >= [1, 11]:
import torch.ao.quantization as tq
from torch.ao.quantization.quantize_fx import convert_fx, prepare_fx
else:
import torch.quantization as tq
from torch.quantization.quantize_fx import convert_fx, prepare_fx

import torch.ao.quantization as tq
from torch.ao.quantization.quantize_fx import convert_fx, prepare_fx
config = {"name": "mlp", "input_dim": 3, "output_dim": 1, "hidden_dims": [2]}
model = build_model(config)
self.assertTrue(isinstance(model, ClassyModel))

model.eval()
model.mlp = prepare_fx(model.mlp, {"": tq.default_qconfig})
example_inputs = (torch.rand(1, 3),)
model.mlp = prepare_fx(model.mlp, {"": tq.default_qconfig}, example_inputs)
model.mlp = convert_fx(model.mlp)

tensor = torch.tensor([[1, 2, 3]], dtype=torch.float)
Expand Down
15 changes: 6 additions & 9 deletions test/models_regnet_test.py
Expand Up @@ -169,19 +169,16 @@ def test_quantize_model(self, config):
Test that the model builds using a config using either model_params or
model_name and calls fx graph mode quantization apis
"""
if get_torch_version() < [1, 8]:
self.skipTest("FX Graph Modee Quantization is only availablee from 1.8")
if get_torch_version() >= [1, 11]:
import torch.ao.quantization as tq
from torch.ao.quantization.quantize_fx import convert_fx, prepare_fx
else:
import torch.quantization as tq
from torch.quantization.quantize_fx import convert_fx, prepare_fx
if get_torch_version() < [1, 13]:
self.skipTest("This test is using a new api of FX Graph Mode Quantization which is only available after 1.13")
import torch.ao.quantization as tq
from torch.ao.quantization.quantize_fx import convert_fx, prepare_fx

model = build_model(config)
assert isinstance(model, RegNet)
model.eval()
model.stem = prepare_fx(model.stem, {"": tq.default_qconfig})
example_inputs = (torch.rand(1, 3, 3, 3),)
model.stem = prepare_fx(model.stem, {"": tq.default_qconfig}, example_inputs)
model.stem = convert_fx(model.stem)


Expand Down
27 changes: 19 additions & 8 deletions test/models_resnext_test.py
Expand Up @@ -107,18 +107,29 @@ def _post_training_quantize(model, input):
]
# we need to keep the modules used in head standalone since
# it will be accessed with path name directly in execution
# TODO[quant-example-inputs]: Fix the shape if it is needed in quantization
standalone_example_inputs = (torch.rand(1, 3, 3, 3),)
prepare_custom_config_dict["standalone_module_name"] = [
(
head,
{"": tq.default_qconfig},
standalone_example_inputs,
{"input_quantized_idxs": [0], "output_quantized_idxs": []},
None,
)
for head in head_path_from_blocks
]
model.initial_block = prepare_fx(model.initial_block, {"": tq.default_qconfig})
# TODO[quant-example-inputs]: Fix the shape if it is needed in quantization
example_inputs = (torch.rand(1, 3, 3, 3),)
model.initial_block = prepare_fx(
model.initial_block, {"": tq.default_qconfig}, example_inputs
)

model.blocks = prepare_fx(
model.blocks, {"": tq.default_qconfig}, prepare_custom_config_dict
model.blocks,
{"": tq.default_qconfig},
example_inputs,
prepare_custom_config_dict,
)
model.set_heads(heads)

Expand Down Expand Up @@ -222,8 +233,8 @@ def test_small_resnext(self):
self._test_model(MODELS["small_resnext"])

@unittest.skipIf(
get_torch_version() < [1, 8],
"FX Graph Modee Quantization is only availablee from 1.8",
get_torch_version() < [1, 13],
"This test is using a new api of FX Graph Mode Quantization which is only available after 1.13"
)
def test_quantized_small_resnext(self):
self._test_quantize_model(MODELS["small_resnext"])
Expand All @@ -232,8 +243,8 @@ def test_small_resnet(self):
self._test_model(MODELS["small_resnet"])

@unittest.skipIf(
get_torch_version() < [1, 8],
"FX Graph Modee Quantization is only availablee from 1.8",
get_torch_version() < [1, 13],
"This test is using a new api of FX Graph Mode Quantization which is only available after 1.13"
)
def test_quantized_small_resnet(self):
self._test_quantize_model(MODELS["small_resnet"])
Expand All @@ -242,8 +253,8 @@ def test_small_resnet_se(self):
self._test_model(MODELS["small_resnet_se"])

@unittest.skipIf(
get_torch_version() < [1, 8],
"FX Graph Modee Quantization is only availablee from 1.8",
get_torch_version() < [1, 13],
"This test is using a new api of FX Graph Mode Quantization which is only available after 1.13"
)
def test_quantized_small_resnet_se(self):
self._test_quantize_model(MODELS["small_resnet_se"])
Expand Down

0 comments on commit a88bbc1

Please sign in to comment.