Return `a=b`, where a and b are CTensor.
(self, x, y)
| 970 | super(Equal, self).__init__() |
| 971 | |
| 972 | def forward(self, x, y): |
| 973 | """ |
| 974 | Return `a=b`, where a and b are CTensor. |
| 975 | """ |
| 976 | return singa.__eq__(x, y) |
| 977 | |
| 978 | def backward(self, dy): |
| 979 | """ |