Forward propagation. Args: xs: input args consisting of only CTensors. Returns: CTensor instance(s)
(self, *xs)
| 320 | return dxs |
| 321 | |
| 322 | def forward(self, *xs): |
| 323 | """Forward propagation. |
| 324 | Args: |
| 325 | xs: input args consisting of only CTensors. |
| 326 | Returns: |
| 327 | CTensor instance(s) |
| 328 | """ |
| 329 | raise NotImplementedError |
| 330 | |
| 331 | def backward(self, *dys): |
| 332 | """ Backward propagation. |