From 2ed8c4b00d93742bc1f94d8490eec8a17e4a4675 Mon Sep 17 00:00:00 2001 From: Brian Atkinson Date: Thu, 24 Oct 2019 14:43:04 -0700 Subject: [PATCH] tf.rsqrt is now tf.math.rsqrt PiperOrigin-RevId: 276569440 Change-Id: If7ab58a97b9fa89c0d9ed7284ea1d42ba9a10ac5 --- tensorflow/lite/testing/op_tests/elementwise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/lite/testing/op_tests/elementwise.py b/tensorflow/lite/testing/op_tests/elementwise.py index e564e8cd27c..12b6dd196e9 100644 --- a/tensorflow/lite/testing/op_tests/elementwise.py +++ b/tensorflow/lite/testing/op_tests/elementwise.py @@ -74,7 +74,7 @@ def make_sqrt_tests(options): @register_make_test_function() def make_rsqrt_tests(options): """Make a set of tests to do 1/sqrt.""" - return _make_elementwise_tests(tf.rsqrt)(options) + return _make_elementwise_tests(tf.math.rsqrt)(options) @register_make_test_function()