-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmkdocs.yml
More file actions
129 lines (124 loc) · 4.12 KB
/
mkdocs.yml
File metadata and controls
129 lines (124 loc) · 4.12 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
127
128
129
site_name: SWEEP Documentation
site_description: Seismic Wave Equation Exploration Platform
repo_url: https://github.com/DeepWave-KAUST/sweep
site_url: https://deepwave-kaust.github.io/sweep/
docs_dir: docs
watch:
- README.md
- examples
- src
theme:
name: material
logo: assets/logo/sweep-icon-transparent.svg
favicon: assets/logo/sweep-icon-32.png
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.indexes
- navigation.top
- toc.follow
- content.code.copy
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: teal
accent: cyan
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: teal
accent: cyan
toggle:
icon: material/weather-sunny
name: Switch to light mode
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- tables
- toc:
permalink: true
plugins:
- search
- mkdocs-jupyter:
include_source: true
execute: false
ignore_h1_titles: true
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
show_source: false
show_root_heading: true
docstring_style: google
docstring_section_style: table
members_order: source
separate_signature: true
show_signature_annotations: true
merge_init_into_class: true
line_length: 88
nav:
- Home: index.md
- Getting Started:
- Installation: getting-started/installation.md
- Quick Start: getting-started/quickstart.md
- User Guide:
- Backends: user-guide/backends.md
- Equations: user-guide/equations.md
- Propagators: user-guide/propagators.md
- CLI: user-guide/cli.md
- Examples:
- Overview: examples/index.md
- Notebooks:
- Hello · SWEEP: notebooks/00_hello_fwi.ipynb
- FWI:
- Acoustic · Marmousi: notebooks/01_fwi_acoustic_marmousi.ipynb
- Elastic · Marmousi: notebooks/02_fwi_elastic_marmousi.ipynb
- Multiscale: notebooks/03_fwi_multiscale.ipynb
- Memory strategies: notebooks/07_memory_strategies.ipynb
- 3D Overthrust: notebooks/11_fwi_acoustic_overthrust_3d.ipynb
- Wavefields:
- DAS: notebooks/04_das_zhao_vs_mu.ipynb
- Elastic: notebooks/06_wavefield_elastic.ipynb
- Solver hyperparameters: notebooks/09_solver_hyperparams.ipynb
- Anisotropic:
- AcousticVTI: notebooks/05_wavefield_vti.ipynb
- ElasticTTI: notebooks/10_wavefield_elastic_tti.ipynb
- Imaging:
- RTM · Marmousi: notebooks/08_rtm_acoustic_marmousi.ipynb
- HPC:
- Multi-GPU · DDP vs 1 GPU: notebooks/12_multi_gpu.ipynb
- Scripts:
- Multi-GPU DDP: examples/multi_gpu_dist.md
- API Reference:
- api/index.md
- Equations:
- api/equations/index.md
- Acoustic: api/equations/acoustic.md
- Acoustic3D: api/equations/acoustic3d.md
- Acoustic1st: api/equations/acoustic1st.md
- AcousticVRZ: api/equations/acoustic_vrz.md
- AcousticLSRTM: api/equations/acoustic_lsrtm.md
- AcousticLSRTM3D: api/equations/acoustic_lsrtm3d.md
- Elastic: api/equations/elastic.md
- Elastic3D: api/equations/elastic3d.md
- ElasticTTI: api/equations/elastic_tti.md
- ElasticTTISG: api/equations/elastic_tti_sg.md
- DAS family: api/equations/das.md
- Propagators:
- api/propagators/index.md
- Propagator Options: api/propagators/options.md
- PropTorch: api/propagators/prop_torch.md
- PropJax: api/propagators/prop_jax.md
extra_css:
- stylesheets/extra.css