wyc-ruiker commented on a change in pull request #4695:
[Relay][Frontend][TFlite] Add parser support for relational ops
URL: https://github.com/apache/incubator-tvm/pull/4695#discussion_r365897665
##########
File path: python/tvm/relay/frontend/tflite.py
##########
@@ -616,6 +621,36 @@ def convert_greater(self, op):
'TFlite quantized greater operator is not supported yet.')
return self._convert_elemwise(_op.greater, op)
+ def convert_greater_equal(self, op):
+ if self.is_quantized(op):
+ raise tvm.error.OpNotImplemented(
+ 'TFlite quantized GREATER_EQUAL operator is not supported
yet.')
Review comment:
The previous operators seem to be all lowercase letters here. Maybe you
should use `greater_equal` for consistency. The following operators are the
same.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services