| 342 | } |
| 343 | |
| 344 | void MatMulGrad(const Tensor& x, bool ax, const Tensor& y, bool ay, |
| 345 | Tensor* dx, Tensor* dy) { |
| 346 | return MatMulGradCommon("MatMul", "transpose_a", "transpose_b", x, ax, y, |
| 347 | ay, dx, dy); |
| 348 | } |
| 349 | |
| 350 | void BatchMatMulGrad(const Tensor& x, bool ax, const Tensor& y, bool ay, |
| 351 | Tensor* dx, Tensor* dy) { |
nothing calls this directly
no test coverage detected