conf.py 7.63 KB
Newer Older
Yan Ni's avatar
Yan Ni committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: utf-8 -*-
#
# Configuration file for the Sphinx documentation builder.
#
# This file does only contain a selection of the most common options. For a
# full list see the documentation:
# http://www.sphinx-doc.org/en/master/config

# -- Path setup --------------------------------------------------------------

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
15
import os
16
import subprocess
17
import sys
18
sys.path.insert(0, os.path.abspath('../..'))
Yan Ni's avatar
Yan Ni committed
19
20
21
22


# -- Project information ---------------------------------------------------

Yuge Zhang's avatar
Yuge Zhang committed
23
from datetime import datetime
24
project = 'NNI'
Yuge Zhang's avatar
Yuge Zhang committed
25
copyright = f'{datetime.now().year}, Microsoft'
Yan Ni's avatar
Yan Ni committed
26
27
28
29
30
author = 'Microsoft'

# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
Yuge Zhang's avatar
Yuge Zhang committed
31
# FIXME: this should be written somewhere globally
32
release = 'v2.6'
Yan Ni's avatar
Yan Ni committed
33
34
35
36
37
38
39
40
41
42
43
44
45
46

# -- General configuration ---------------------------------------------------

# If your documentation needs a minimal Sphinx version, state it here.
#
# needs_sphinx = '1.0'

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
    'sphinx.ext.autodoc',
    'sphinx.ext.mathjax',
    'sphinxarg.ext',
Yan Ni's avatar
Yan Ni committed
47
    'sphinx.ext.napoleon',
48
    'sphinx.ext.viewcode',
49
    'sphinx.ext.intersphinx',
Yuge Zhang's avatar
Yuge Zhang committed
50
    'nbsphinx',
51
    'sphinx.ext.extlinks',
52
    'IPython.sphinxext.ipython_console_highlighting',
Yan Ni's avatar
Yan Ni committed
53
54
]

55
# Add mock modules
56
autodoc_mock_imports = ['apex', 'nni_node', 'tensorrt', 'pycuda', 'nn_meter']
57

Yan Ni's avatar
Yan Ni committed
58
# Add any paths that contain templates here, relative to this directory.
Yuge Zhang's avatar
Yuge Zhang committed
59
templates_path = ['../templates']
Yan Ni's avatar
Yan Ni committed
60
61
62

# The suffix(es) of source filenames.
# You can specify multiple suffix as a list of string:
63
source_suffix = ['.rst']
Yan Ni's avatar
Yan Ni committed
64
65

# The master toctree document.
Yuge Zhang's avatar
Yuge Zhang committed
66
master_doc = 'index'
Yan Ni's avatar
Yan Ni committed
67
68
69
70
71
72
73
74
75
76
77

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
78
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'Release_v1.0.md', '**.ipynb_checkpoints']
Yan Ni's avatar
Yan Ni committed
79
80
81
82

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = None

Yuge Zhang's avatar
Yuge Zhang committed
83
# -- Options for HTML output -------------------------------------------------
Yan Ni's avatar
Yan Ni committed
84

Yuge Zhang's avatar
Yuge Zhang committed
85
86
# HTML logo
html_logo = '../img/nni_icon.svg'
87

Yuge Zhang's avatar
Yuge Zhang committed
88
89
# HTML favicon
html_favicon = '../img/favicon.ico'
Yan Ni's avatar
Yan Ni committed
90
91
92
93

# The theme to use for HTML and HTML Help pages.  See the documentation for
# a list of builtin themes.
#
Yuge Zhang's avatar
Yuge Zhang committed
94
html_theme = 'sphinx_material'
Yan Ni's avatar
Yan Ni committed
95
96
97
98
99
100

# Theme options are theme-specific and customize the look and feel of a theme
# further.  For a list of options available for each theme, see the
# documentation.
#
html_theme_options = {
Yuge Zhang's avatar
Yuge Zhang committed
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135

    # Set the name of the project to appear in the navigation.
    'nav_title': 'Neural Network Intelligence',

    # Set you GA account ID to enable tracking
    'google_analytics_account': 'UA-136029994-1',

    # Specify a base_url used to generate sitemap.xml. If not
    # specified, then no sitemap will be built.
    'base_url': 'https://nni.readthedocs.io/',

    # Set the color and the accent color
    # We can't have our customized themes currently
    # Remember to update static/css/material_custom.css when this is updated.
    'color_primary': 'indigo',
    'color_accent': 'pink',

    # Set the repo location to get a badge with stats
    'repo_url': 'https://github.com/microsoft/nni/',
    'repo_name': 'nni',

    # Visible levels of the global TOC; -1 means unlimited
    'globaltoc_depth': 3,

    'version_dropdown': True,
    # This is a placeholder, which should be replaced later.
    'version_info': {
        'current': '/'
    },

    # Text to appear at the top of the home page in a "hero" div.
    'heroes': {
        # We can have heroes for the home pages of HPO, NAS, Compression in future.
        'index': 'An open source AutoML toolkit for neural architecture search, model compression and hyper-parameter tuning.'
    }
Yan Ni's avatar
Yan Ni committed
136
137
}

Yuge Zhang's avatar
Yuge Zhang committed
138
139
140
# Disable show source link.
html_show_sourcelink = False

Yan Ni's avatar
Yan Ni committed
141
142
143
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
Guoxin's avatar
Guoxin committed
144
html_static_path = ['../static']
Yan Ni's avatar
Yan Ni committed
145
146
147
148
149
150
151
152
153

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
#
# The default sidebars (for documents that don't match any pattern) are
# defined by theme itself.  Builtin themes are using these templates by
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
# 'searchbox.html']``.
#
Yuge Zhang's avatar
Yuge Zhang committed
154
155
156
html_sidebars = {
    "**": ["logo-text.html", "globaltoc.html", "localtoc.html", "searchbox.html"]
}
Yan Ni's avatar
Yan Ni committed
157

Yuge Zhang's avatar
Yuge Zhang committed
158
159
160
161
162
163
164
165
166
167
168
169
html_title = 'Neural Network Intelligence'

# Add extra css files and js files
html_css_files = [
    'css/material_custom.css',
    'css/material_dropdown.css',
    'css/index_page.css',
]
html_js_files = [
    'js/version.js',
    'js/github.js',
]
Yan Ni's avatar
Yan Ni committed
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244

# -- Options for HTMLHelp output ---------------------------------------------

# Output file base name for HTML help builder.
htmlhelp_basename = 'NeuralNetworkIntelligencedoc'


# -- Options for LaTeX output ------------------------------------------------

latex_elements = {
    # The paper size ('letterpaper' or 'a4paper').
    #
    # 'papersize': 'letterpaper',

    # The font size ('10pt', '11pt' or '12pt').
    #
    # 'pointsize': '10pt',

    # Additional stuff for the LaTeX preamble.
    #
    # 'preamble': '',

    # Latex figure (float) alignment
    #
    # 'figure_align': 'htbp',
}

# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
#  author, documentclass [howto, manual, or own class]).
latex_documents = [
    (master_doc, 'NeuralNetworkIntelligence.tex', 'Neural Network Intelligence Documentation',
     'Microsoft', 'manual'),
]


# -- Options for manual page output ------------------------------------------

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
    (master_doc, 'neuralnetworkintelligence', 'Neural Network Intelligence Documentation',
     [author], 1)
]


# -- Options for Texinfo output ----------------------------------------------

# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
#  dir menu entry, description, category)
texinfo_documents = [
    (master_doc, 'NeuralNetworkIntelligence', 'Neural Network Intelligence Documentation',
     author, 'NeuralNetworkIntelligence', 'One line description of project.',
     'Miscellaneous'),
]


# -- Options for Epub output -------------------------------------------------

# Bibliographic Dublin Core info.
epub_title = project

# The unique identifier of the text. This can be a ISBN number
# or the project homepage.
#
# epub_identifier = ''

# A unique identification for the text.
#
# epub_uid = ''

# A list of files that should not be packed into the epub file.
epub_exclude_files = ['search.html']

245
246
247
248
249
250
251
# external links (for github code)
# Reference the code via :githublink:`path/to/your/example/code.py`
git_commit_id = subprocess.check_output(['git', 'rev-parse', 'HEAD']).decode().strip()

extlinks = {
    'githublink': ('https://github.com/microsoft/nni/blob/' + git_commit_id + '/%s', 'Github link: ')
}