tqchen opened a new issue, #14899:
URL: https://github.com/apache/tvm/issues/14899
Global symbol right now needs to be manually attached, for better UX, it is
desirable to move to the following model
```python
class IRModule:
# implies a private function
@R.function(private=True)
def func1():
pass
# implies a function with global_symbol=func2, and we do not need to
fill in the attr field.
@R.function
def func2():
pass
```
--
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]