guberti commented on issue #12343: URL: https://github.com/apache/tvm/issues/12343#issuecomment-1208986518
This is expected behavior from `sphinx-gallery`. The code that generates the empty block is: ```python # sphinx_gallery_start_ignore from tvm import testing testing.utils.install_request_hook(depth=3) # sphinx_gallery_end_ignore ``` `sphinx-gallery` correctly removes everything between the `*_ignore` tags (leaving an empty code block) and then renders the empty code block as intended. The easiest solution is to just remove that code. It was added by @driazati's https://github.com/apache/tvm/pull/11839 and is used to redirect URLS to S3 - since we don't have any other code in this tutorial, I think we can remove it without issue (though @driazati should confirm). -- 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]
