| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| from typing import Any, List, Optional |
|
|
| import torch |
| from torch import Tensor |
| from torch.nn import functional as F |
| from typing_extensions import Literal |
|
|
|
|
| def reduce(x: Tensor, reduction: Literal["elementwise_mean", "sum", "none", None]) -> Tensor: |
| """Reduces a given tensor by a given reduction method. |
| |
| Args: |
| x: the tensor, which shall be reduced |
| reduction: a string specifying the reduction method ('elementwise_mean', 'none', 'sum') |
| |
| Return: |
| reduced Tensor |
| |
| Raise: |
| ValueError if an invalid reduction parameter was given |
| |
| """ |
| if reduction == "elementwise_mean": |
| return torch.mean(x) |
| if reduction == "none" or reduction is None: |
| return x |
| if reduction == "sum": |
| return torch.sum(x) |
| raise ValueError("Reduction parameter unknown.") |
|
|
|
|
| def class_reduce( |
| num: Tensor, |
| denom: Tensor, |
| weights: Tensor, |
| class_reduction: Literal["micro", "macro", "weighted", "none", None] = "none", |
| ) -> Tensor: |
| """Reduce classification metrics of the form ``num / denom * weights``. |
| |
| For example for calculating standard accuracy the num would be number of true positives per class, denom would be |
| the support per class, and weights would be a tensor of 1s. |
| |
| Args: |
| num: numerator tensor |
| denom: denominator tensor |
| weights: weights for each class |
| class_reduction: reduction method for multiclass problems: |
| |
| - ``'micro'``: calculate metrics globally (default) |
| - ``'macro'``: calculate metrics for each label, and find their unweighted mean. |
| - ``'weighted'``: calculate metrics for each label, and find their weighted mean. |
| - ``'none'`` or ``None``: returns calculated metric per class |
| |
| Raises: |
| ValueError: |
| If ``class_reduction`` is none of ``"micro"``, ``"macro"``, ``"weighted"``, ``"none"`` or ``None``. |
| |
| """ |
| valid_reduction = ("micro", "macro", "weighted", "none", None) |
| fraction = torch.sum(num) / torch.sum(denom) if class_reduction == "micro" else num / denom |
|
|
| |
| |
| fraction[fraction != fraction] = 0 |
|
|
| if class_reduction == "micro": |
| return fraction |
| if class_reduction == "macro": |
| return torch.mean(fraction) |
| if class_reduction == "weighted": |
| return torch.sum(fraction * (weights.float() / torch.sum(weights))) |
| if class_reduction == "none" or class_reduction is None: |
| return fraction |
|
|
| raise ValueError(f"Reduction parameter {class_reduction} unknown. Choose between one of these: {valid_reduction}") |
|
|
|
|
| def _simple_gather_all_tensors(result: Tensor, group: Any, world_size: int) -> List[Tensor]: |
| with torch.no_grad(): |
| gathered_result = [torch.zeros_like(result) for _ in range(world_size)] |
| torch.distributed.all_gather(gathered_result, result, group) |
| |
| gathered_result[torch.distributed.get_rank(group)] = result |
| return gathered_result |
|
|
|
|
| def gather_all_tensors(result: Tensor, group: Optional[Any] = None) -> List[Tensor]: |
| """Gather all tensors from several ddp processes onto a list that is broadcast to all processes. |
| |
| Works on tensors that have the same number of dimensions, but where each dimension may differ. In this case |
| tensors are padded, gathered and then trimmed to secure equal workload for all processes. |
| |
| Args: |
| result: the value to sync |
| group: the process group to gather results from. Defaults to all processes (world) |
| |
| Return: |
| list with size equal to the process group where element i corresponds to result tensor from process i |
| |
| """ |
| if group is None: |
| group = torch.distributed.group.WORLD |
|
|
| |
| result = result.contiguous() |
|
|
| world_size = torch.distributed.get_world_size(group) |
| torch.distributed.barrier(group=group) |
|
|
| |
| if result.ndim == 0: |
| return _simple_gather_all_tensors(result, group, world_size) |
|
|
| |
| local_size = torch.tensor(result.shape, device=result.device) |
| local_sizes = [torch.zeros_like(local_size) for _ in range(world_size)] |
| torch.distributed.all_gather(local_sizes, local_size, group=group) |
| max_size = torch.stack(local_sizes).max(dim=0).values |
| all_sizes_equal = all(all(ls == max_size) for ls in local_sizes) |
|
|
| |
| if all_sizes_equal: |
| return _simple_gather_all_tensors(result, group, world_size) |
|
|
| |
| with torch.no_grad(): |
| pad_dims = [] |
| pad_by = (max_size - local_size).detach().cpu() |
| for val in reversed(pad_by): |
| pad_dims.append(0) |
| pad_dims.append(val.item()) |
| result_padded = F.pad(result, pad_dims) |
| gathered_result = [torch.zeros_like(result_padded) for _ in range(world_size)] |
| torch.distributed.all_gather(gathered_result, result_padded, group) |
| for idx, item_size in enumerate(local_sizes): |
| slice_param = [slice(dim_size) for dim_size in item_size] |
| gathered_result[idx] = gathered_result[idx][slice_param] |
| |
| gathered_result[torch.distributed.get_rank(group)] = result |
| return gathered_result |
|
|