Internal change: update TODO

PiperOrigin-RevId: 294824845
Change-Id: I167106de154e25ba2bb0c8de2cd755d653977090
This commit is contained in:
A. Unique TensorFlower 2020-02-12 20:40:30 -08:00 committed by TensorFlower Gardener
parent 0d23b37aaf
commit 327ea14d68

View File

@ -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,