[Bugfix][Frontend][TF] Fix incorrect calculations in tf SLICE (#4518)
authorIna Dobreva <55383260+inadob@users.noreply.github.com>
Fri, 24 Jan 2020 06:41:56 +0000 (06:41 +0000)
committerYao Wang <kevinthesunwy@gmail.com>
Fri, 24 Jan 2020 06:41:56 +0000 (22:41 -0800)
* fix formula for calculating end indices when size[i] == -1
* add a test case for size[i] == -1
* discard expanding dimension of begin_value & end_value since
  it is needed only if you pass them as scalars not as tensors.
* discard 'slice_tensor' variable so that implementation matches
  the tf parser pattern

python/tvm/relay/frontend/tensorflow.py
tests/python/frontend/tensorflow/test_forward.py

index 76bf058..2232300 100644 (file)
@@ -789,7 +789,7 @@ def _slice():
         end = size
         for i in range(data_dim):
             if size[i] == -1:
-                end[i] = data_shape[i] - begin[i]
+                end[i] = data_shape[i]
             else:
                 end[i] += begin[i]
         return _op.strided_slice(inputs[0], begin=begin, end=end)
index 8ff0d41..830c3f6 100644 (file)
@@ -2344,14 +2344,15 @@ def _test_forward_slice_operation_input(input_value, begin_value, size_value):
     with tf.Graph().as_default():
         input_tensor = tf.placeholder(
             shape=input_data.shape, dtype=input_data.dtype, name="input")
-        begin_tensor = tf.expand_dims(begin_value, axis=0)
-        size_tensor = tf.expand_dims(size_value, axis=0)
-        slice_tensor = tf.slice(input_tensor, begin_tensor, size_tensor, name='slice_output')
+        tf.slice(input_tensor, begin_value, size_value, name='slice_output')
         compare_tf_with_tvm([input_data], ['input:0'], 'slice_output:0')
 
 
 def test_forward_slice():
-    _test_forward_slice_operation_input([1, 1], 0, 2)
+    _test_forward_slice_operation_input([1, 1], [0], [2])
+    _test_forward_slice_operation_input([0, 1, 2, 3], [3], [-1])
+    _test_forward_slice_operation_input([[0, 1, 2, 3], [4, 5, 6, 7]],
+                                        begin_value=[0, 1], size_value=[-1, -1])
 
 def test_forward_ceil():
     ishape = (1, 3, 10, 10)