Home
last modified time | relevance | path

Searched refs:DynamicStaticDetector (Results 1 – 3 of 3) sorted by relevance

/external/pytorch/test/quantization/fx/
Dtest_model_report_fx.py10 DynamicStaticDetector,
861 dynamic_vs_static_detector = DynamicStaticDetector()
867 dynam_vs_stat_dict[linear_fqn][DynamicStaticDetector.PRE_OBS_DATA_DIST_KEY],
868 dynam_vs_stat_dict[linear_fqn][DynamicStaticDetector.POST_OBS_DATA_DIST_KEY],
898 test_detector_set = {DynamicStaticDetector(), PerChannelDetector(backend)}
935 test_detector_set = {DynamicStaticDetector(), PerChannelDetector(backend)}
984 elif isinstance(detector, DynamicStaticDetector):
1032 …filled_detector_set = {DynamicStaticDetector(), PerChannelDetector(torch.backends.quantized.engine…
1033 single_detector_set = {DynamicStaticDetector()}
1160 detector_set.add(DynamicStaticDetector())
[all …]
/external/pytorch/torch/ao/quantization/fx/_model_report/
DREADME.md30 detector_set = set([DynamicStaticDetector()]) # TODO add all desired detectors
116 For example, the `DynamicStaticDetector` figures out whether Dynamic or Static Quantization is appr…
176 - `DynamicStaticDetector`
210 - [ ] For DynamicStaticDetector, change method of calculating stationarity from variance to varianc…
Ddetector.py442 class DynamicStaticDetector(DetectorBase): class