add
Function Usage
Adds two tensors.
Prototype
1 | add(other: Union[TensorHolder, TensorLike]) -> TensorHolder |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
other |
Input |
Another tensor holder or similar tensor object. |
Returns
(TensorHolder) Represents the new tensor holder of the result.
Constraints
- If other is not TensorHolder, a TypeError is thrown.
- If the operation fails or the library is unavailable, RuntimeError is thrown.
- The + operator can be reloaded.
Parent topic: TensorHolder