I was wondering how the documentation of the Python API is modified or generated?
While working with TVM I sometimes found commands I did not find in the Python API documentation on tvm.apache.org.
A good example is the command “autotvm.task.extract_from_program(…)” which is used in many how-to and tutorials but is only described roughly. I tried to find it in the Python API on tvm.apache.org but I did not succeed.
When searching in the codebase I found the command with comments included (python/tvm/autotvm/task/relay_integration.py).
Why is this command not included in the Python API description? Is there a process to update the API on tvm.apache.org? Or does it need to be manually added?