torch.foreach.log10_#
- torch.foreach.log10_(inputs: TensorList, /) tuple[Tensor, ...] | list[Tensor][source]#
Applies
torch.log10()to each tensor ininputsin-place.This is semantically equivalent to applying
torch.log10()independently at every list position. Mutates every tensor ininputsand returns the exact input container object.Tensor-list arguments must be non-empty. An accelerated multi-tensor implementation is used only when supported by the inputs; otherwise the operation falls back to per-tensor execution.