Commit 0eec95bf by Tianqi Chen Committed by GitHub

[DOC] Reorganize docs (#397)

parent 4e800205
...@@ -172,8 +172,14 @@ intersphinx_mapping = { ...@@ -172,8 +172,14 @@ intersphinx_mapping = {
'matplotlib': ('http://matplotlib.org/', None), 'matplotlib': ('http://matplotlib.org/', None),
} }
examples_dirs = ['../tutorials/python'] from sphinx_gallery.sorting import ExplicitOrder
examples_dirs = ['../tutorials/']
gallery_dirs = ['tutorials'] gallery_dirs = ['tutorials']
subsection_order = ExplicitOrder(
['../tutorials/language',
'../tutorials/optimize',
'../tutorials/deployment'])
def generate_doxygen_xml(app): def generate_doxygen_xml(app):
"""Run the doxygen make commands if we're on the ReadTheDocs server""" """Run the doxygen make commands if we're on the ReadTheDocs server"""
...@@ -200,6 +206,7 @@ sphinx_gallery_conf = { ...@@ -200,6 +206,7 @@ sphinx_gallery_conf = {
'numpy': 'http://docs.scipy.org/doc/numpy-1.9.1'}, 'numpy': 'http://docs.scipy.org/doc/numpy-1.9.1'},
'examples_dirs': examples_dirs, 'examples_dirs': examples_dirs,
'gallery_dirs': gallery_dirs, 'gallery_dirs': gallery_dirs,
'subsection_order': subsection_order,
'find_mayavi_figures': False, 'find_mayavi_figures': False,
'filename_pattern': '.py', 'filename_pattern': '.py',
'expected_failing_examples': [] 'expected_failing_examples': []
......
Tutorials Tutorials
========= =========
These tutorials are tutorial generated by sphinx-gallery. This page contains the tutorials about TVM.
Run and Deploy
--------------
Lanuage and Schedules
---------------------
Optimize Operators
------------------
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment