From 653dfe126cb031e2c27a31cd11bb83d565d6f9bd Mon Sep 17 00:00:00 2001 From: Scott Zhu Date: Fri, 19 Apr 2019 09:22:11 -0700 Subject: [PATCH] Extend forward compatible window for batch matmul broadcast test. PiperOrigin-RevId: 244369219 --- tensorflow/python/ops/parallel_for/math_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/ops/parallel_for/math_test.py b/tensorflow/python/ops/parallel_for/math_test.py index f9fdd0068aa..d2e8d0e7338 100644 --- a/tensorflow/python/ops/parallel_for/math_test.py +++ b/tensorflow/python/ops/parallel_for/math_test.py @@ -291,7 +291,7 @@ class MathTest(PForTestCase): self._test_loop_fn(loop_fn, 2) def test_batch_matmul_broadcast(self): - if not compat.forward_compatible(2019, 4, 18): + if not compat.forward_compatible(2019, 4, 25): self.skipTest("Skipping test for future functionality.") for broadcast_a in (True, False): for broadcast_b in (True, False):