
    iy                         d dl mZ d dlZd dlmZ d dlmZ d dlmZmZ 	 ddedee   dee	   d	efd
Z
	 	 	 ddedee   ded   dee	   d	ef
dZy)    )OptionalN)Tensor)Literal)_check_input_reduce_distance_matrixxyzero_diagonalreturnc                    t        | ||      \  } }}| j                  }| j                  t        j                        } |j                  t        j                        }| | z  j                  dd      }||z  j                  d      }||z   d| j                  |j                        z  z
  j                  |      }|r|j                  d       |j                         S )zCalculate the pairwise euclidean distance matrix.

    Args:
        x: tensor of shape ``[N,d]``
        y: tensor of shape ``[M,d]``
        zero_diagonal: determines if the diagonal of the distance matrix should be set to zero

       T)dimkeepdim)r      r   )
r   dtypetotorchfloat64summmTfill_diagonal_sqrt)r   r	   r
   _orig_dtypex_normy_normdistances          /Volumes/fast/ai/experiments/voice-extract-mac/.venv/lib/python3.12/site-packages/torchmetrics/functional/pairwise/euclidean.py#_pairwise_euclidean_distance_updater      s     'q!];Aq-''K	U]]A	U]]A!e[[Q[-F!e[[Q[F!add133i-/33K@H"==?    	reduction)meanr   noneNc                 4    t        | ||      }t        ||      S )a  Calculate pairwise euclidean distances.

    .. math::
        d_{euc}(x,y) = ||x - y||_2 = \sqrt{\sum_{d=1}^D (x_d - y_d)^2}

    If both :math:`x` and :math:`y` are passed in, the calculation will be performed pairwise between
    the rows of :math:`x` and :math:`y`.
    If only :math:`x` is passed in, the calculation will be performed between the rows of :math:`x`.

    Args:
        x: Tensor with shape ``[N, d]``
        y: Tensor with shape ``[M, d]``, optional
        reduction: reduction to apply along the last dimension. Choose between `'mean'`, `'sum'`
            (applied along column dimension) or  `'none'`, `None` for no reduction
        zero_diagonal: if the diagonal of the distance matrix should be set to 0. If only `x` is given
            this defaults to `True` else if `y` is also given it defaults to `False`

    Returns:
        A ``[N,N]`` matrix of distances if only ``x`` is given, else a ``[N,M]`` matrix

    Example:
        >>> import torch
        >>> from torchmetrics.functional.pairwise import pairwise_euclidean_distance
        >>> x = torch.tensor([[2, 3], [3, 5], [5, 8]], dtype=torch.float32)
        >>> y = torch.tensor([[1, 0], [2, 1]], dtype=torch.float32)
        >>> pairwise_euclidean_distance(x, y)
        tensor([[3.1623, 2.0000],
                [5.3852, 4.1231],
                [8.9443, 7.6158]])
        >>> pairwise_euclidean_distance(x)
        tensor([[0.0000, 2.2361, 5.8310],
                [2.2361, 0.0000, 3.6056],
                [5.8310, 3.6056, 0.0000]])

    )r   r   )r   r	   r!   r
   r   s        r   pairwise_euclidean_distancer%   /   s     R 31aGH"8Y77r    )NN)NNN)typingr   r   r   typing_extensionsr   (torchmetrics.functional.pairwise.helpersr   r   boolr   r%    r    r   <module>r+      s       % Z LP6":B4.4 6:$(	*8*8*8 23*8 D>	*8
 *8r    