-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmkdocs.yml
More file actions
126 lines (126 loc) · 3.59 KB
/
mkdocs.yml
File metadata and controls
126 lines (126 loc) · 3.59 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
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
site_name: PECOS Documentation
docs_dir: docs
site_dir: site
use_directory_urls: false
site_url: https://pecos-packages.github.io/PECOS/
repo_url: https://github.com/PECOS-packages/PECOS
repo_name: PECOS-packages/PECOS
site_description: Documentation for the Performance Estimator of Codes On Surfaces
(PECOS) library
site_author: The PECOS Developers
theme:
name: material
locale: en
logo: assets/images/pecos_icon.svg
favicon: assets/images/pecos_icon.svg
toc_depth: 1
icon:
repo: fontawesome/brands/github
font:
text: Proxima Nova
code: Source Code Pro
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: custom
accent: deep orange
toggle:
icon: material/brightness-7
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: custom
accent: deep orange
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- navigation.tracking
- navigation.instant
- navigation.footer
- navigation.top
- toc.follow
- content.code.copy
- content.code.annotate
- content.tabs.link
- search.highlight
- search.suggest
- search.share
nav:
- Home: README.md
- User Guide:
- Getting Started: user-guide/getting-started.md
- Command Line Interface: user-guide/cli.md
- QASM Simulation: user-guide/qasm-simulation.md
- WASM Foreign Objects: user-guide/wasm-foreign-objects.md
- HUGR & Guppy Simulation: user-guide/hugr-simulation.md
- Simulators: user-guide/simulators.md
- Gate Reference: user-guide/gates.md
- Gate Naming Conventions: user-guide/gate-naming-conventions.md
- Gate Naming (Future): user-guide/gate-naming-speculation.md
- Noise Model Builders: user-guide/noise-model-builders.md
- QEC Geometry: user-guide/qec-geometry.md
- QEC with Guppy: user-guide/qec-guppy.md
- Decoders: user-guide/decoders.md
- Graph API: user-guide/graph-api.md
- Circuit Representation: user-guide/circuit-representation.md
- Parallel Execution: user-guide/parallel-execution.md
- LLVM Setup: user-guide/llvm-setup.md
- CUDA Setup: user-guide/cuda-setup.md
- API:
- api/api-reference.md
- Development:
- development/DEVELOPMENT.md
- Developer Tools CLI: development/dev-tools.md
- Documentation Testing: development/doc-testing.md
- SLR and QECLib: development/slr-qeclib.md
- Circuit Representations: development/circuit-representations.md
- Parallel Blocks: development/parallel-blocks-and-optimization.md
- development/QIS_ARCHITECTURE.md
- Releases:
- releases/changelog.md
markdown_extensions:
- admonition
- codehilite
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.arithmatex:
generic: true
- toc:
permalink: true
toc_depth: 3
- tables
- footnotes
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
extra_css:
- assets/css/custom.css
extra_javascript:
- assets/js/mathjax.js
- assets/js/custom.js
plugins:
- search:
lang: en
- mkdocstrings:
handlers:
python:
options:
docstring_style: google
show_source: true
- markdown-exec
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/PECOS-packages/PECOS
- icon: fontawesome/brands/python
link: https://pypi.org/project/quantum-pecos/
- icon: fontawesome/solid/book
link: https://quantum-pecos.readthedocs.io/
copyright: Copyright © 2018-2025 The PECOS Developers