-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmkdocs.yml
More file actions
80 lines (74 loc) · 1.74 KB
/
mkdocs.yml
File metadata and controls
80 lines (74 loc) · 1.74 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
site_name: TileOPs
site_url: https://tile-ai.github.io/TileOPs.github.io/
site_description: High-performance LLM operator library built on TileLang
repo_url: https://github.com/tile-ai/TileOPs
repo_name: tile-ai/TileOPs
theme:
name: material
palette:
scheme: slate
primary: teal
accent: cyan
logo: assets/logo.png
favicon: assets/logo.png
font:
text: Nunito
code: Source Code Pro
features:
- navigation.expand
- navigation.top
- toc.integrate
- search.suggest
- search.highlight
- content.code.copy
- content.code.annotate
nav:
- Home: index.md
- Design:
- design/index.md
- Elementwise: design/elementwise.md
- API Reference:
- Elementwise: api/elementwise.md
- Reduction: api/reduction.md
- Normalization: api/normalization.md
- GEMM: api/linear-algebra.md
- Quantization: api/quantization.md
- Attention: api/attention.md
- FFT: api/fft.md
- MHC: api/mhc.md
- Top-k: api/topk.md
- Benchmarks:
- benchmarks/index.md
- Performance Guides:
- performance-guides/index.md
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- admonition
- pymdownx.details
- attr_list
- md_in_html
- tables
- toc:
permalink: true
plugins:
- search
- mkdocstrings:
on_error: warn
handlers:
python:
paths: [TileOPs]
options:
docstring_style: google
show_source: false
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/tile-ai/TileOPs
copyright: Copyright © 2026 tile-ai