-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
112 lines (106 loc) · 2.84 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
site_name: SCALE documentation
site_url: https://docs.scale-lang.com/
docs_dir: docs/
extra_css:
- style.css
theme:
name: material
custom_dir: overrides
logo: logo_white.svg
favicon: favicon.png
palette:
# Palette toggle for dark mode
- scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
# Palette toggle for light mode
- scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
features:
- navigation.sections
- navigation.footer
- navigation.expand
- navigation.instant
- navigation.instant.progress
- navigation.instant.prefetch
- content.code.copy
- toc.follow
plugins:
- search
- macros
- mike:
canonical_version: latest
alias_type: copy
version_selector: true
css_dir: css
javascript_dir: js
extra:
branch: master
generator: false
version:
provider: mike
alias: true
default: stable
social:
- icon: fontawesome/brands/github
link: https://github.com/spectral-compute
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/company/spectral-compute
- icon: fontawesome/brands/discord
link: https://discord.gg/KNpgGbTc38
copyright: Copyright © 2024 <a href="https://www.spectralcompute.co.uk">Spectral Compute Ltd</a>
markdown_extensions:
- toc:
permalink: "#"
- pymdownx.highlight
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- attr_list
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
# Navigation and file naming conventions:
#
# - Please refrain from setting custom titles for pages.
# Instead, modify the top-level title in the corresponding file.
# - Please try to name files in a predictable way - their names will become links.
# - Don't rely on numbered filename prefixes -- we don't need to override their ordering,
# as we don't use the autogenerated `nav`.
nav:
- README.md
- manual/CHANGELOG.md
- Getting Started:
- manual/how-to-install.md
- manual/how-to-use.md
- manual/comparison.md
- Examples:
- examples/README.md
- examples/basic.md
- examples/ptx.md
- examples/blas.md
- Diving deeper:
- manual/troubleshooting.md
- manual/compute-capabilities.md
- manual/dialects.md
- manual/differences.md
- manual/runtime-extensions.md
- Compiler:
- manual/inline-ptx.md
- manual/diagnostic-flags.md
- manual/language-extensions.md
- Implemented APIs:
- manual/apis.md
- manual/api-driver.md
- manual/api-math.md
- manual/api-runtime.md
- Contact Us:
- contact/report-a-bug.md
- Legal:
- licensing.md
- notices.md