AndrewZhaoLuo opened a new issue, #10950: URL: https://github.com/apache/tvm/issues/10950
Right now ONNX converter to Relay works by using operator name to match up with proper converter. The issue is we increasingly have to deal with operators from different onnx modules/domains. Onnx nodes also have this sort of namespace https://github.com/onnx/onnx/blob/main/docs/IR.md#nodes too. In the future, we might have name collisions between like names in different namespaces. We should handle this properly. Not a big deal until it happens. ### List of operators not under default onnx operator domain: - [ ] Gelu (https://com.microsoft/) - [ ] EmbedLayerNormalization (https://com.microsoft/) - [ ] SkipLayerNormalization (https://com.microsoft/) - [ ] Attention (https://com.microsoft/) -- 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]
