add¶
Documentation¶
Torch Version Related
This documentation is based on torch.Tensor.add in torch v1.10.0+cu102. 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 v1.10.0+cu102 is listed below.
Description From Torch v1.10.0+cu102¶
-
class
torch.Tensor¶ -
add(other, *, alpha=1) → Tensor¶ Add a scalar or tensor to
selftensor. If bothalphaandotherare specified, each element ofotheris scaled byalphabefore being used.When
otheris a tensor, the shape ofothermust be broadcastable with the shape of the underlying tensorSee
torch.add()
-