Function
add
Return `a+b`, where a and b are Tensor.
(a, b)
Source from the content-addressed store, hash-verified
| 892 | |
| 893 | |
| 894 | def add(a, b): |
| 895 | """ |
| 896 | Return `a+b`, where a and b are Tensor. |
| 897 | """ |
| 898 | return Add()(a, b)[0] |
| 899 | |
| 900 | |
| 901 | class Elu(Operator): |
Tested by
no test coverage detected