From 5ca25fda42db4558cdaf6db4564812dafe25b26a Mon Sep 17 00:00:00 2001 From: Brian Atkinson Date: Wed, 23 Oct 2019 17:50:56 -0700 Subject: [PATCH] tf.squared_difference is now tf.math.squared_difference PiperOrigin-RevId: 276389858 Change-Id: Ibfe5e4e8252839ec869f90f9e5e178f31afbf6cf --- tensorflow/lite/testing/op_tests/binary_op.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/lite/testing/op_tests/binary_op.py b/tensorflow/lite/testing/op_tests/binary_op.py index 260ec145e70..5da498f1a74 100644 --- a/tensorflow/lite/testing/op_tests/binary_op.py +++ b/tensorflow/lite/testing/op_tests/binary_op.py @@ -207,4 +207,4 @@ def make_floor_mod_tests(options): @register_make_test_function() def make_squared_difference_tests(options): - make_binary_op_tests(options, tf.squared_difference) + make_binary_op_tests(options, tf.math.squared_difference)