D | math_grad_test.cc | 252 Tensor BatchMatMul(const Tensor& x, bool ax, const Tensor& y, bool ay) { in BatchMatMul() function in tensorflow::__anona51524880111::MathGradTest 1141 test::ExpectClose(dx, BatchMatMul(dz, false, y, true)); in TEST_F() 1142 test::ExpectClose(dy, BatchMatMul(x, true, dz, false)); in TEST_F() 1153 test::ExpectClose(dx, BatchMatMul(dz, false, y, false)); in TEST_F() 1154 test::ExpectClose(dy, BatchMatMul(dz, true, x, false)); in TEST_F() 1165 test::ExpectClose(dx, BatchMatMul(y, false, dz, true)); in TEST_F() 1166 test::ExpectClose(dy, BatchMatMul(x, false, dz, false)); in TEST_F() 1177 test::ExpectClose(dx, BatchMatMul(y, true, dz, true)); in TEST_F() 1178 test::ExpectClose(dy, BatchMatMul(dz, true, x, true)); in TEST_F()
|