diff --git a/tensorflow/lite/kernels/strided_slice.cc b/tensorflow/lite/kernels/strided_slice.cc index 3f2fd580a0b..209910945d9 100644 --- a/tensorflow/lite/kernels/strided_slice.cc +++ b/tensorflow/lite/kernels/strided_slice.cc @@ -37,7 +37,7 @@ namespace strided_slice { enum KernelType { kReference, - // TODO(soroosh): add kGenericOptimized + // TODO(b/175642009): add kGenericOptimized }; constexpr int kInputTensor = 0; @@ -154,7 +154,7 @@ TfLiteStatus Prepare(TfLiteContext* context, TfLiteNode* node) { TF_LITE_ENSURE_EQ(context, NumDimensions(op_context.strides), 1); TF_LITE_ENSURE_EQ(context, op_context.input->type, op_context.output->type); // Only INT32 begin/end/strides are supported - // TODO(soroosh) add support for INT64 + // TODO(b/175642009): add support for INT64 TF_LITE_ENSURE_TYPES_EQ(context, op_context.begin->type, kTfLiteInt32); TF_LITE_ENSURE_TYPES_EQ(context, op_context.end->type, kTfLiteInt32); TF_LITE_ENSURE_TYPES_EQ(context, op_context.strides->type, kTfLiteInt32); @@ -256,7 +256,6 @@ TfLiteRegistration* Register_STRIDED_SLICE_REF() { return &r; } -// TODO(soroosh): add optimized TfLiteRegistration* Register_STRIDED_SLICE() { return Register_STRIDED_SLICE_REF(); }