tf.rsqrt is now tf.math.rsqrt

PiperOrigin-RevId: 276569440
Change-Id: If7ab58a97b9fa89c0d9ed7284ea1d42ba9a10ac5
This commit is contained in:
Brian Atkinson 2019-10-24 14:43:04 -07:00 committed by TensorFlower Gardener
parent a084b0b4c9
commit 2ed8c4b00d

View File

@ -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()