Backward propagation. Args: dys: input args consisting of only CTensors. Returns: CTensor instance(s)
(self, *dys)
| 329 | raise NotImplementedError |
| 330 | |
| 331 | def backward(self, *dys): |
| 332 | """ Backward propagation. |
| 333 | Args: |
| 334 | dys: input args consisting of only CTensors. |
| 335 | Returns: |
| 336 | CTensor instance(s) |
| 337 | """ |
| 338 | raise NotImplementedError |
| 339 | |
| 340 | def get_params(self): |
| 341 | return [] |