Home
last modified time | relevance | path

Searched refs:_PartialWrapper (Results 1 – 6 of 6) sorted by relevance

/external/pytorch/torch/ao/quantization/fx/
Dlstm_utils.py14 from torch.ao.quantization.observer import _PartialWrapper
23 linear_output_obs_ctr: Optional[_PartialWrapper] = None, argument
24 sigmoid_obs_ctr: Optional[_PartialWrapper] = None, argument
25 tanh_obs_ctr: Optional[_PartialWrapper] = None, argument
26 cell_state_obs_ctr: Optional[_PartialWrapper] = None, argument
27 hidden_state_obs_ctr: Optional[_PartialWrapper] = None, argument
60 def make_qconfig(obs_ctr: _PartialWrapper) -> QConfig: argument
Dprepare.py27 from torch.ao.quantization.observer import _is_activation_post_process, _PartialWrapper
186 if isinstance(observer_or_fake_quant_ctr, _PartialWrapper):
/external/pytorch/torch/ao/quantization/
Dqconfig.py28 _PartialWrapper,
616 _PartialWrapper, Type[ObserverBase], Type[FakeQuantizeBase]
624 if isinstance(obs_or_fq1, _PartialWrapper) and isinstance(
625 obs_or_fq2, _PartialWrapper
631 def _partial_wrapper_equals(obs_or_fq1: _PartialWrapper, obs_or_fq2: _PartialWrapper): argument
Dqconfig_mapping.py11 _PartialWrapper,
44 _FIXED_QPARAMS_OP_TO_OBSERVER: Dict[Union[Callable, str], _PartialWrapper] = {
Dobserver.py60 class _PartialWrapper: class
80 result = _PartialWrapper(p=self.p)
102 r = _PartialWrapper(partial(cls_or_self, **kwargs))
126 r = _PartialWrapper(partial(cls_or_self))
/external/pytorch/torch/quantization/
Dobserver.py13 _PartialWrapper,