-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkdocs.yml
127 lines (117 loc) · 2.91 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
site_name: HPC
site_author: Gavin Gao
site_url: https://hpc.cgabc.xyz/
site_description: HPC
repo_url: https://github.com/cggos/hpc
repo_name: cggos/hpc
theme:
name: material # readthedocs material
# logo: material/library
favicon: images/favicon.png
icon:
repo: fontawesome/brands/git-alt
nav_style: light
language: 'zh'
# palette:
# primary: 'light blue'
# accent: 'indigo'
feature:
tabs: true
features:
- navigation.instant
- navigation.tracking
- navigation.tabs
# - navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.prune
- navigation.indexes
- navigation.top
- toc.follow
# - toc.integrate
- content.code.annotate
plugins:
- search
# - social
- tags
markdown_extensions:
- abbr
- meta
- admonition
- attr_list
- def_list
- footnotes
- toc:
permalink: true # "#"
toc_depth: 5
separator: "_"
slugify: !!python/name:pymdownx.slugs.uslugify_cased
- codehilite:
guess_lang: true
linenums: true
- pymdownx.inlinehilite
- pymdownx.superfences
- pymdownx.arithmatex
- pymdownx.critic
- pymdownx.details
- pymdownx.magiclink
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.highlight:
auto_title: true
anchor_linenums: true
linenums_style: pymdownx-inline
- pymdownx.tabbed:
alternate_style: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
# emoji_generator: !!python/name:pymdownx.emoji.to_png
- pymdownx.tasklist:
custom_checkbox: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/cggos
name: cggos on GitHub
- icon: fontawesome/brands/twitter
link: https://twitter.com/CGiABC
name: CGABC on Twitter
nav:
- Home: index.md
- CPU:
- Overview: cpu/README.md
- Architecture:
- Overview: cpu/arch/README.md
- ARM: cpu/arch/arm.md
- Info:
- CPU Info: cpu/info.md
- Software Optimization:
- Overview: cpu/software_optimization.md
- Multi-Threads:
- Overview: cpu/multi_thread/README.md
- Thread Pool: cpu/multi_thread/threadpool.md
- OpenMP: cpu/multi_thread/omp.md
- Instructions & Intrinsics: cpu/intrinsics.md
- Benchmark: cpu/benchmark.md
- Others: cpu/others.md
- GPU:
- Overview: gpu/README.md
- Platforms:
- Overview: gpu/platform/README.md
- Nvidia: gpu/platform/nvidia.md
- Mali: gpu/platform/mali.md
- Languages:
- Overview: gpu/languages/README.md
- OpenCL: gpu/languages/ocl.md
- CUDA: gpu/languages/cuda.md
- Build:
- NVCC: gpu/building/nvcc.md
- Benchmark: gpu/benchmark.md
- DSP:
- Overview: dsp/README.md