-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
executable file
·32 lines (32 loc) · 1.19 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
site_name: 'TACO Documentation'
site_favicon: favicon.ico
theme: readthedocs
extra_css: [extra.css]
extra_javascript:
- https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-AMS-MML_HTMLorMML
markdown_extensions:
- mdx_math
- markdown.extensions.admonition
- markdown.extensions.fenced_code
- pymdownx.highlight:
use_pygments: false
- pymdownx.superfences
use_directory_urls: false
nav:
- C++ API:
- 'Defining Tensors': 'tensors.md'
- 'Computing on Tensors': 'computations.md'
- 'Providing a Schedule': 'scheduling.md'
- Python API:
- 'Defining Tensors': 'pytensors.md'
- 'Computing on Tensors': 'pycomputations.md'
- 'Reference Manual': http://tensor-compiler.org/reference/
- 'Tutorial': 'tutorial.md'
- Example Applications:
- 'Scientific Computing: SpMV': 'scientific_computing.md'
- 'Data Analytics: MTTKRP': 'data_analytics.md'
- 'Machine Learning: SDDMM': 'machine_learning.md'
- Advanced Usage:
- 'Strategies for Optimization': 'optimization.md'
- 'Guide to Benchmarking': 'benchmarking.md'
- 'Controlling Memory': 'controlling_memory.md'