[Docs] Fix outdated source install and API reference docs#19409
[Docs] Fix outdated source install and API reference docs#19409mshr-h merged 3 commits intoapache:mainfrom
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the TVM documentation, providing clearer instructions for making TVM importable, detailing CI documentation scripts, and expanding the API reference for tvm.contrib and tvm.support. It also updates the TFLite frontend environment requirements and modifies how CUDA-enabled builds are presented in tutorials. Feedback includes correcting a typo in a build command and removing an invalid Sphinx directive in the new API documentation.
| You can run the following script to reproduce the CI sphinx pre-check stage. | ||
| This script skips the tutorial executions and is useful to quickly check the content. | ||
| The following script mirrors the CI docs pipeline: it runs a sphinx pre-check | ||
| (when not running locally) and then performs a full `make htmldepoly` build, |
| :members: | ||
| :imported-members: | ||
| :autosummary: |
There was a problem hiding this comment.
The :autosummary: option is not a valid option for the automodule directive in Sphinx. This will likely trigger a warning during the documentation build and the option will be ignored. If you intended to show a summary table, you should use the .. autosummary:: directive separately.
| :members: | |
| :imported-members: | |
| :autosummary: | |
| :members: | |
| :imported-members: |
as per title