Function
equal
Return `a=b`, where a and b are Tensor.
(x, y)
Source from the content-addressed store, hash-verified
| 986 | |
| 987 | |
| 988 | def equal(x, y): |
| 989 | """ |
| 990 | Return `a=b`, where a and b are Tensor. |
| 991 | """ |
| 992 | return Equal()(x, y)[0] |
| 993 | |
| 994 | |
| 995 | class SeLU(Operator): |
Tested by
no test coverage detected