| 354 | } |
| 355 | |
| 356 | void BatchMatMulV2Grad(const Tensor& x, bool ax, const Tensor& y, bool ay, |
| 357 | Tensor* dx, Tensor* dy) { |
| 358 | return MatMulGradCommon("BatchMatMulV2", "adj_x", "adj_y", x, ax, y, ay, dx, |
| 359 | dy); |
| 360 | } |
| 361 | |
| 362 | void SelectGrad(const Tensor& c, const Tensor& x, const Tensor& y, Tensor* dc, |
| 363 | Tensor* dx, Tensor* dy) { |
nothing calls this directly
no test coverage detected