(self)
| 1399 | |
| 1400 | @test_util.run_v1_only('b/120545219') |
| 1401 | def testPfor(self): |
| 1402 | jacobian, answer = self._jacobian(experimental_use_pfor=True) |
| 1403 | for j, a in zip(jacobian, answer): |
| 1404 | self.assertAllEqual(a, j) |
| 1405 | |
| 1406 | @test_util.run_v1_only('b/120545219') |
| 1407 | def testWhileLoop(self): |
nothing calls this directly
no test coverage detected