This commit is contained in:
Tianqi Chen 2017-08-29 14:02:04 -07:00 коммит произвёл GitHub
Родитель 4e8002059d
Коммит 0eec95bf54
16 изменённых файлов: 18 добавлений и 4 удалений

Просмотреть файл

@ -172,8 +172,14 @@ intersphinx_mapping = {
'matplotlib': ('http://matplotlib.org/', None),
}
examples_dirs = ['../tutorials/python']
from sphinx_gallery.sorting import ExplicitOrder
examples_dirs = ['../tutorials/']
gallery_dirs = ['tutorials']
subsection_order = ExplicitOrder(
['../tutorials/language',
'../tutorials/optimize',
'../tutorials/deployment'])
def generate_doxygen_xml(app):
"""Run the doxygen make commands if we're on the ReadTheDocs server"""
@ -200,6 +206,7 @@ sphinx_gallery_conf = {
'numpy': 'http://docs.scipy.org/doc/numpy-1.9.1'},
'examples_dirs': examples_dirs,
'gallery_dirs': gallery_dirs,
'subsection_order': subsection_order,
'find_mayavi_figures': False,
'filename_pattern': '.py',
'expected_failing_examples': []

3
tutorials/README.txt Normal file
Просмотреть файл

@ -0,0 +1,3 @@
Tutorials
=========
This page contains the tutorials about TVM.

Просмотреть файл

@ -0,0 +1,2 @@
Run and Deploy
--------------

Просмотреть файл

Просмотреть файл

@ -0,0 +1,2 @@
Lanuage and Schedules
---------------------

Просмотреть файл

Просмотреть файл

Просмотреть файл

Просмотреть файл

Просмотреть файл

Просмотреть файл

@ -0,0 +1,3 @@
Optimize Operators
------------------

Просмотреть файл

Просмотреть файл

Просмотреть файл

@ -1,3 +0,0 @@
Tutorials
=========
These tutorials are tutorial generated by sphinx-gallery.