leandron opened a new issue #9187: URL: https://github.com/apache/tvm/issues/9187
As part of https://github.com/apache/tvm/pull/9165, we recently enabled support for quantized operators in the TFLite frontend "unary element-wise" function, that does generic support for a few operators. That opens the door for more operators to be supported easily, just pending the addition of tests and logically _unlocking_ the conditional block that is keeping the quantised version of the operator to be unsupported. See the example as implemented in https://github.com/apache/tvm/pull/9165. This is a tracking issue for new unary element-wise operators to be supported: - [ ] `GREATER` - [ ] `EQUAL` - [ ] `CEIL` - [ ] `ROUND` - [ ] `FLOOR` - [ ] `EXP` - [ ] `LOG` - [ ] `SIN` - [ ] `TAN` - [ ] `COS` - [ ] `SQRT` - [ ] `SQRT` - [x] `RSQRT` #9165 by @ophirfrish - [ ] `NEG` For each operator above, there are actions to be taken: 1. Remove the conditional block `if self.is_quantized(op): ...` 2. Implement unit tests #9165 can be used as an example. Resources: * TFlite frontend: https://github.com/apache/tvm/blob/main/python/tvm/relay/frontend/tflite.py -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
