-
Notifications
You must be signed in to change notification settings - Fork 12
/
mkdocs.yml
93 lines (90 loc) · 2.85 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
site_name: Haliax
repo_url: https://github.com/stanford-crfm/haliax/
edit_uri: blob/main/docs/
theme:
name: material
highlightjs: false
features:
- content.code.copy
markdown_extensions:
- attr_list
- admonition
#- callouts
- footnotes
- codehilite
- pymdownx.details # Allowing hidden expandable regions denoted by ???
- pymdownx.magiclink
- pymdownx.superfences
- pymdownx.arithmatex: # Render LaTeX via MathJax
generic: true
- pymdownx.superfences # Seems to enable syntax highlighting when used with the Material theme.
- pymdownx.snippets: # Include one Markdown file into another
base_path: docs
- pymdownx.inlinehilite
- pymdownx.snippets:
check_paths: true
- pymdownx.superfences
- toc:
permalink: "¤"
toc_depth: "2-3"
plugins:
- search
- autorefs
- mkdocstrings:
handlers:
python:
setup_commands:
- import pytkdocs_tweaks
- pytkdocs_tweaks.main()
paths: [src]
import:
- https://docs.python.org/3/objects.inv
- https://jax.readthedocs.io/en/latest/objects.inv
- https://docs.kidger.site/equinox/objects.inv
- https://einops.rocks/objects.inv
options:
docstring_options:
ignore_init_summary: true
docstring_style: sphinx
show_source: false
docstring_section_style: list
heading_level: 5
inherited_members: true
merge_init_into_class: true
load_external_modules: true
preload_modules: [haliax, haliax.core]
# separate_signature: true
show_root_heading: true
show_root_full_path: false
# show_signature_annotations: true
show_symbol_type_heading: false
show_symbol_type_toc: false
signature_crossrefs: true
line_length: 100
- include-markdown
extra_css:
- css/material.css
- css/mkdocstrings.css
watch:
- src
- docs
nav:
- Home: 'index.md'
- Tutorials:
- "Introduction to Haliax": https://colab.research.google.com/drive/1TiTcQQ4V5mopbgCu1SVl-oqJtXn7rFnC
- "Distributed Training and FSDP": https://colab.research.google.com/drive/1QX4yH3zRFF3Xiibf1aahETcSQ5nbcUMz
- "Tensor Parallelism": https://colab.research.google.com/drive/18_BrtDpe1lu89M4T6fKzda8DdSLtFJhi
- "Mixed Precision with `jmp`": https://colab.research.google.com/drive/1_4cikwt-UhSH7yRzNRK8ze9msM9r2mEl?usp=sharing
- Cheatsheet: 'cheatsheet.md'
- Named Arrays:
- Broadcasting: 'broadcasting.md'
- Indexing and Slicing: 'indexing.md'
- Rearrange: 'rearrange.md'
- Matrix Multiplication: 'matmul.md'
- Neural Networks: 'nn.md'
- Partitioning: 'partitioning.md'
- Higher Order Functions: 'hof.md'
- FP8: 'fp8.md'
- Serialization: 'state-dict.md'
- API Reference: 'api.md'
- FAQ: 'faq.md'