| 348 | } |
| 349 | |
| 350 | void BatchMatMulGrad(const Tensor& x, bool ax, const Tensor& y, bool ay, |
| 351 | Tensor* dx, Tensor* dy) { |
| 352 | return MatMulGradCommon("BatchMatMul", "adj_x", "adj_y", x, ax, y, ay, dx, |
| 353 | dy); |
| 354 | } |
| 355 | |
| 356 | void BatchMatMulV2Grad(const Tensor& x, bool ax, const Tensor& y, bool ay, |
| 357 | Tensor* dx, Tensor* dy) { |
nothing calls this directly
no test coverage detected