From 327ea14d6860fc5bb2db0732cd998841987bab3e Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 12 Feb 2020 20:40:30 -0800 Subject: [PATCH] Internal change: update TODO PiperOrigin-RevId: 294824845 Change-Id: I167106de154e25ba2bb0c8de2cd755d653977090 --- tensorflow/lite/kernels/strided_slice.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tensorflow/lite/kernels/strided_slice.cc b/tensorflow/lite/kernels/strided_slice.cc index e0e226e2ea5..ba39b016624 100644 --- a/tensorflow/lite/kernels/strided_slice.cc +++ b/tensorflow/lite/kernels/strided_slice.cc @@ -145,7 +145,10 @@ TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { TF_LITE_ENSURE_MSG(context, op_context.dims <= 4, "StridedSlice op only supports 1D-4D input arrays."); - // TODO(soroosh): add the following missing functionalities + // TODO(b/138098220): Remove when bug is resolved. + // Currently, working on using the compiler to cannonize strided_slice, + // so ellipis_mask will become part of begin/end mask, new_axis_mask will + // involve in a reshape to pad the dimensions. TF_LITE_ENSURE_MSG(context, op_context.params->ellipsis_mask == 0, "ellipsis_mask is not implemented yet."); TF_LITE_ENSURE_MSG(context, op_context.params->new_axis_mask == 0,