diff --git a/op_map.cc b/op_map.cc index 7fdc32f..34aef02 100644 --- a/op_map.cc +++ b/op_map.cc @@ -3283,17 +3283,6 @@ struct LogicalOpMapper : public OpMapperBase { }; struct PackMapper : public OpMapperBase { - virtual bool IsOpSupported(TfLiteContext* context, - TfLiteNode* node, - const TfLiteRegistration* registration) const { - auto input_tensor = context->tensors[node->inputs->data[0]]; - if (input_tensor.type == kTfLiteInt32 || - (input_tensor.dims->size == 1 && (input_tensor.type == kTfLiteInt8 || - input_tensor.type == kTfLiteUInt8))) { - return false; - } - return true; - } bool HandleMapOp(vx::delegate::Delegate* delegate, std::vector>& inputs, std::vector>& outputs,