o
    ôùÎhú  ã                   @   sr   d dl mZmZ d dlZd dlmZ d dlmZ g d¢ZG dd„ dejƒZ	G dd	„ d	ejƒZ
G d
d„ dejƒZdS )é    )ÚAnyÚOptionalN)Únn)ÚQConfig)Ú	QuantStubÚDeQuantStubÚQuantWrapperc                       óB   e Zd ZdZd
dee f‡ fdd„Zdejdejfdd	„Z	‡  Z
S )r   a  Quantize stub module, before calibration, this is same as an observer,
    it will be swapped as `nnq.Quantize` in `convert`.

    Args:
        qconfig: quantization configuration for the tensor,
            if qconfig is not provided, we will get qconfig from parent modules
    NÚqconfigc                    ó   t ƒ  ¡  |r|| _d S d S ©N©ÚsuperÚ__init__r
   ©Úselfr
   ©Ú	__class__© úa/home/www/facesmatcher.com/frenv_anti/lib/python3.10/site-packages/torch/ao/quantization/stubs.pyr      ó   

ÿzQuantStub.__init__ÚxÚreturnc                 C   ó   |S r   r   ©r   r   r   r   r   Úforward   ó   zQuantStub.forwardr   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   r   ÚtorchÚTensorr   Ú__classcell__r   r   r   r   r      ó    r   c                       r	   )r   a  Dequantize stub module, before calibration, this is same as identity,
    this will be swapped as `nnq.DeQuantize` in `convert`.

    Args:
        qconfig: quantization configuration for the tensor,
            if qconfig is not provided, we will get qconfig from parent modules
    Nr
   c                    r   r   r   r   r   r   r   r   &   r   zDeQuantStub.__init__r   r   c                 C   r   r   r   r   r   r   r   r   +   r   zDeQuantStub.forwardr   )r   r   r   r    r   r   r   r!   r"   r   r#   r   r   r   r   r      r$   r   c                       sZ   e Zd ZU dZeed< eed< ejed< dejf‡ fdd„Z	de
jde
jfd	d
„Z‡  ZS )r   aç  A wrapper class that wraps the input module, adds QuantStub and
    DeQuantStub and surround the call to module with call to quant and dequant
    modules.

    This is used by the `quantization` utility functions to add the quant and
    dequant modules, before `convert` function `QuantStub` will just be observer,
    it observes the input tensor, after `convert`, `QuantStub`
    will be swapped to `nnq.Quantize` which does actual quantization. Similarly
    for `DeQuantStub`.
    ÚquantÚdequantÚmodulec                    sR   t ƒ  ¡  t|dd ƒ}|  dt|ƒ¡ |  dt|ƒ¡ |  d|¡ |  |j¡ d S )Nr
   r%   r&   r'   )r   r   ÚgetattrZ
add_moduler   r   ÚtrainZtraining)r   r'   r
   r   r   r   r   ?   s   
zQuantWrapper.__init__ÚXr   c                 C   s   |   |¡}|  |¡}|  |¡S r   )r%   r'   r&   )r   r*   r   r   r   r   G   s   


zQuantWrapper.forward)r   r   r   r    r   Ú__annotations__r   r   ÚModuler   r!   r"   r   r#   r   r   r   r   r   /   s   
 
r   )Útypingr   r   r!   r   Ztorch.ao.quantizationr   Ú__all__r,   r   r   r   r   r   r   r   Ú<module>   s    