Ë
    [^(h`  ã                   ób   — d dl mc mZ d dlmZ ddlmZ ddgZ G d„ de«      Z	 G d„ de«      Z
y)	é    N)ÚTensoré   )ÚModuleÚPixelShuffleÚPixelUnshufflec                   óZ   ‡ — e Zd ZU dZdgZeed<   deddfˆ fd„Zdedefd„Z	de
fd„Zˆ xZS )	r   aS  Rearrange elements in a tensor according to an upscaling factor.

    Rearranges elements in a tensor of shape :math:`(*, C \times r^2, H, W)`
    to a tensor of shape :math:`(*, C, H \times r, W \times r)`, where r is an upscale factor.

    This is useful for implementing efficient sub-pixel convolution
    with a stride of :math:`1/r`.

    See the paper:
    `Real-Time Single Image and Video Super-Resolution Using an Efficient Sub-Pixel Convolutional Neural Network`_
    by Shi et al. (2016) for more details.

    Args:
        upscale_factor (int): factor to increase spatial resolution by

    Shape:
        - Input: :math:`(*, C_{in}, H_{in}, W_{in})`, where * is zero or more batch dimensions
        - Output: :math:`(*, C_{out}, H_{out}, W_{out})`, where

    .. math::
        C_{out} = C_{in} \div \text{upscale\_factor}^2

    .. math::
        H_{out} = H_{in} \times \text{upscale\_factor}

    .. math::
        W_{out} = W_{in} \times \text{upscale\_factor}

    Examples::

        >>> pixel_shuffle = nn.PixelShuffle(3)
        >>> input = torch.randn(1, 9, 4, 4)
        >>> output = pixel_shuffle(input)
        >>> print(output.size())
        torch.Size([1, 1, 12, 12])

    .. _Real-Time Single Image and Video Super-Resolution Using an Efficient Sub-Pixel Convolutional Neural Network:
        https://arxiv.org/abs/1609.05158
    Úupscale_factorÚreturnNc                 ó0   •— t         ‰| �  «        || _        y ©N)ÚsuperÚ__init__r	   )Úselfr	   Ú	__class__s     €ú[/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/torch/nn/modules/pixelshuffle.pyr   zPixelShuffle.__init__6   s   ø€ Ü‰ÑÔØ,ˆÕó    Úinputc                 óB   — t        j                  || j                  «      S r   )ÚFÚpixel_shuffler	   ©r   r   s     r   ÚforwardzPixelShuffle.forward:   s   € Ü�‰˜u d×&9Ñ&9Ó:Ð:r   c                 ó    — d| j                   › �S )Nzupscale_factor=)r	   ©r   s    r   Ú
extra_reprzPixelShuffle.extra_repr=   s   € Ø  ×!4Ñ!4Ð 5Ð6Ð6r   ©Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ú__constants__ÚintÚ__annotations__r   r   r   Ústrr   Ú__classcell__©r   s   @r   r   r   
   sK   ø… ñ&ðP &Ð&€MØÓð- sð -¨tõ -ð;˜Vð ;¨ó ;ð7˜C÷ 7r   c                   óZ   ‡ — e Zd ZU dZdgZeed<   deddfˆ fd„Zdedefd„Z	de
fd„Zˆ xZS )	r   a  Reverse the PixelShuffle operation.

    Reverses the :class:`~torch.nn.PixelShuffle` operation by rearranging elements
    in a tensor of shape :math:`(*, C, H \times r, W \times r)` to a tensor of shape
    :math:`(*, C \times r^2, H, W)`, where r is a downscale factor.

    See the paper:
    `Real-Time Single Image and Video Super-Resolution Using an Efficient Sub-Pixel Convolutional Neural Network`_
    by Shi et al. (2016) for more details.

    Args:
        downscale_factor (int): factor to decrease spatial resolution by

    Shape:
        - Input: :math:`(*, C_{in}, H_{in}, W_{in})`, where * is zero or more batch dimensions
        - Output: :math:`(*, C_{out}, H_{out}, W_{out})`, where

    .. math::
        C_{out} = C_{in} \times \text{downscale\_factor}^2

    .. math::
        H_{out} = H_{in} \div \text{downscale\_factor}

    .. math::
        W_{out} = W_{in} \div \text{downscale\_factor}

    Examples::

        >>> pixel_unshuffle = nn.PixelUnshuffle(3)
        >>> input = torch.randn(1, 1, 12, 12)
        >>> output = pixel_unshuffle(input)
        >>> print(output.size())
        torch.Size([1, 9, 4, 4])

    .. _Real-Time Single Image and Video Super-Resolution Using an Efficient Sub-Pixel Convolutional Neural Network:
        https://arxiv.org/abs/1609.05158
    Údownscale_factorr
   Nc                 ó0   •— t         ‰| �  «        || _        y r   )r   r   r(   )r   r(   r   s     €r   r   zPixelUnshuffle.__init__k   s   ø€ Ü‰ÑÔØ 0ˆÕr   r   c                 óB   — t        j                  || j                  «      S r   )r   Úpixel_unshuffler(   r   s     r   r   zPixelUnshuffle.forwardo   s   € Ü× Ñ  ¨×(=Ñ(=Ó>Ð>r   c                 ó    — d| j                   › �S )Nzdownscale_factor=)r(   r   s    r   r   zPixelUnshuffle.extra_reprr   s   € Ø" 4×#8Ñ#8Ð"9Ð:Ð:r   r   r&   s   @r   r   r   A   sK   ø… ñ$ðL (Ð(€MØÓð1¨ð 1°õ 1ð?˜Vð ?¨ó ?ð;˜C÷ ;r   )Útorch.nn.functionalÚnnÚ
functionalr   Útorchr   Úmoduler   Ú__all__r   r   © r   r   ú<module>r4      s7   ðß Ð Ý å ð Ð+Ð
,€ô47�6ô 47ôn2;�Võ 2;r   