-
Notifications
You must be signed in to change notification settings - Fork 10
/
mkdocs.yml
88 lines (80 loc) · 3 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
site_name: Portable GPU Programming
site_description: Educational materials for programming GPUs using platform portable paradigms
site_author: Fluid Numerics
site_dir: public
site_url: ""
repo_name: GitHub/fluidnumerics/gpu-programming
repo_url: https://github.com/fluidnumerics/gpu-programming
edit_uri: edit/main/docs/mkdocs
# Directory where site content is located
docs_dir: docs
# Site navigation
nav:
- Home: index.md
- Hardware:
- GPU Accelerated Platforms: GPU/Hardware/GPU-Accelerated-Platforms.md
- Estimating Performance: GPU/Hardware/Estimating-Performance.md
- GPU Specifications Table: GPU/Hardware/GPU-Specifications.md
- OpenMP GPU Offloading:
- Basics: GPU/OpenMP/Basics.md
- HIP and HIPFort:
- Basics: GPU/HIP/Basics.md
- Benchmarking your hardware:
- PCI: Benchmarks/PCI.md
- Memory: Benchmarks/Memory.md
- Compute: Benchmarks/Compute.md
- Multi-GPU Communications: Benchmarks/MPI_GPU.md
- Performance Topics:
- Coalesced Memory Addressing: Performance/Coalesced.md
- Shared Memory Usage: Performance/SharedMemory.md
- Occupancy: Performance/Occupancy.md
- Asynchronous Operations: Performance/Asynchronous.md
- Multi-GPU Topics:
- Task Affinity: MultiGPU/Affinity.md
- GPU Direct Communications: MultiGPU/GPUDirect.md
- Debugging Applications:
- Basics : Debugging/index.md
- Debugging with roc-gdb: Debugging/rocgdb.md
- Profiling Applications:
- Basics : Profiling/index.md
- Profiling with rocprof: Profiling/rocprof.md
- For System Administrators:
- Build amdclang/flang with AMD and Nvidia bitcodes: SysAdmin/AMDClangFlang.md
- Installing OpenMPI with AMD GPU Support: SysAdmin/OpenMPIAMDGPU.md
- Mentored Sprints:
- About: MentoredSprints/About.md
- Emergent Phenomena Revealed in Subatomic Matter (EmPRiSM): MentoredSprints/EmPrism/report.md
- Codelabs:
- Build a GPU Accelerated Application with HIP in C/C++: codelabs/build-a-gpu-app-hip-c/index.html
- Build a GPU Accelerated Application with HIPFort in Fortran: codelabs/build-a-gpu-app-hip-fortran/index.html
- Build a GPU Accelerated Application with OpenMP in C/C++: codelabs/build-a-gpu-app-openmp-c/index.html
- Build a GPU Accelerated Application with OpenMP in Fortran: codelabs/build-a-gpu-app-openmp-fortran/index.html
theme:
name: material
favicon: assets/images/favicon.png
logo: assets/images/logo-fluid-numerics.png
palette:
- scheme: slate
primary: black
accent: cyan
toggle:
icon: material/brightness-4
name: Switch to light mode
- scheme: default
primary: black
accent: cyan
toggle:
icon: material/brightness-7
name: Switch to dark mode
markdown_extensions:
- admonition
- pymdownx.arithmatex:
generic: true
- attr_list
- md_in_html
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
plugins:
- glightbox