forked from roastduck/FreeTensor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
43 lines (38 loc) · 1.24 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
site_name: FreeTensor
theme:
name: "readthedocs"
logo: "resource/logo-light.png"
plugins:
- search
- mkdocstrings:
handlers:
python:
selection:
docstring_style: numpy
inherited_members: True
watch:
- python/
# We cannot watch build/. Reload mkdocs manually after rebuilding
markdown_extensions:
- admonition
- toc:
permalink: true
nav:
- 'FreeTensor':
- 'Home': 'index.md'
- 'GitHub': 'https://github.com/roastduck/FreeTensor'
- 'User Guide':
- 'Get Started': 'guide/index.md'
- 'Build and Run': 'guide/build-and-run.md'
- 'Your First Program with FreeTenor': 'guide/first-program.md'
- 'Optimize a Program with Schedules': 'guide/schedules.md'
- 'Running on a GPU': 'guide/gpu.md'
- 'Automatic Differentiation': 'guide/ad.md'
- 'API Reference':
- 'Python API': 'api.md'
- 'Internal C++ Interface': 'doxygen/html/index.html'
- 'About':
- 'Contributing': 'about/contrib.md'
- 'Publication': 'about/pub.md'
- 'License': 'https://github.com/roastduck/FreeTensor/blob/master/LICENSE'
extra_css: [extra.css]