Apply backward transform along specified axis.
(self, cdata, gdata, axis)
| 59 | apply_dense(self.forward_matrix, gdata, axis=axis, out=cdata) |
| 60 | |
| 61 | def backward(self, cdata, gdata, axis): |
| 62 | """Apply backward transform along specified axis.""" |
| 63 | apply_dense(self.backward_matrix, cdata, axis=axis, out=gdata) |
| 64 | |
| 65 | @CachedAttribute |
| 66 | def forward_matrix(self): |
nothing calls this directly
no test coverage detected