(grad_output, x, weight)
| 11 | |
| 12 | @torch.no_grad() |
| 13 | def run(grad_output, x, weight): |
| 14 | grad_input = grad_output @ weight |
| 15 | grad_weight = grad_output.mT @ x |
| 16 | return grad_input, grad_weight |
nothing calls this directly
no outgoing calls
no test coverage detected