add

Documentation

class treetensor.torch.Tensor(data, *args, **kwargs)[source]
add(other, *args, **kwargs)[source]

See treetensor.torch.add().

Torch Version Related

This documentation is based on torch.Tensor.add in torch v2.0.1+cu117. Its arguments’ arrangements depend on the version of pytorch you installed.

If some arguments listed here are not working properly, please check your pytorch’s version with the following command and find its documentation.

1
python -c 'import torch;print(torch.__version__)'

The arguments and keyword arguments supported in torch v2.0.1+cu117 is listed below.

Description From Torch v2.0.1+cu117

class torch.Tensor
add(other, *, alpha=1)Tensor

Add a scalar or tensor to self tensor. If both alpha and other are specified, each element of other is scaled by alpha before being used.

When other is a tensor, the shape of other must be broadcastable with the shape of the underlying tensor

See torch.add()