Skip to content

Commit 3e5a40b

Browse files
Merge pull request #1 from kir-rescomp/dev
update readme
2 parents b3f3733 + 6f58642 commit 3e5a40b

File tree

5 files changed

+149
-2
lines changed

5 files changed

+149
-2
lines changed

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: ci
2+
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
deploy:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
15+
with:
16+
python-version: 3.x
17+
- run: pip install -r requirements.txt
18+
- run: mkdocs gh-deploy --force

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,7 @@
1-
# training-gpu-profiling
1+
# GPU profiling
2+
3+
Material : https://kir-rescomp.github.io/training-gpu-profiling/
4+
5+
<p align="center">
6+
<img src="./docs/images/gpu_profiling.png" width="300">
7+
</p>
108 KB
Loading
153 KB
Loading

mkdocs.yml

Lines changed: 124 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,124 @@
1-
site_name: My Docs
1+
site_name: GPU Profiling
2+
site_author: The Kennedy Institute of Rheumatology, NDORMS, University of Oxford
3+
site_dir: public
4+
site_url: "https://kir-rescomp.github.io/training-gpu-profiling/"
5+
6+
#Repository information
7+
repo_name: kir-rescomp/training-gpu-profiling
8+
repo_url: https://github.com/kir-rescomp/training-gpu-profiling
9+
10+
11+
theme:
12+
name: material
13+
logo: images/kir_oxford_combined_logo.png
14+
favicon: images/kir_standalone_logo.png
15+
# 404 page
16+
static_templates:
17+
- 404.html
18+
19+
palette:
20+
21+
# Palette toggle for automatic mode
22+
- media: "(prefers-color-scheme)"
23+
toggle:
24+
icon: material/brightness-auto
25+
name: Switch to light mode
26+
primary: custom
27+
28+
# Palette toggle for light mode
29+
- media: "(prefers-color-scheme: light)"
30+
scheme: default
31+
primary: custom
32+
33+
34+
toggle:
35+
icon: material/brightness-7
36+
name: Switch to dark mode
37+
38+
# Palette toggle for dark mode
39+
- media: "(prefers-color-scheme: dark)"
40+
scheme: slate
41+
toggle:
42+
icon: material/brightness-4
43+
name: Switch to system preference
44+
primary: custom
45+
46+
features:
47+
- navigation.tracking
48+
- navigation.sections
49+
- navigation.expand
50+
- navigation.top
51+
- navigation.footer
52+
- content.code.copy
53+
- content.code.annotate
54+
55+
56+
# Necessary for search to work properly
57+
include_search_page: false
58+
search_index_only: true
59+
60+
# Default values, taken from mkdocs_theme.yml
61+
language: en
62+
font:
63+
text: Mukta
64+
code: Fira Code
65+
66+
markdown_extensions:
67+
- abbr
68+
- admonition
69+
- attr_list
70+
- def_list
71+
- footnotes
72+
- meta
73+
- md_in_html
74+
- toc:
75+
permalink: true
76+
- pymdownx.arithmatex:
77+
generic: true
78+
- pymdownx.betterem:
79+
smart_enable: all
80+
- pymdownx.caret
81+
- pymdownx.details
82+
- pymdownx.emoji:
83+
emoji_generator: !!python/name:materialx.emoji.to_svg
84+
emoji_index: !!python/name:material.extensions.emoji.twemoji
85+
- pymdownx.highlight:
86+
anchor_linenums: true
87+
- pymdownx.inlinehilite
88+
- pymdownx.keys
89+
- pymdownx.magiclink:
90+
repo_url_shorthand: true
91+
user: squidfunk
92+
repo: mkdocs-material
93+
- pymdownx.mark
94+
- pymdownx.smartsymbols
95+
- pymdownx.superfences:
96+
custom_fences:
97+
- name: mermaid
98+
class: mermaid
99+
format: !!python/name:pymdownx.superfences.fence_code_format
100+
- pymdownx.tabbed:
101+
alternate_style: true
102+
- pymdownx.tasklist:
103+
custom_checkbox: true
104+
- pymdownx.tilde
105+
- pymdownx.snippets
106+
- pymdownx.blocks.caption
107+
108+
plugins:
109+
- glightbox:
110+
effect: zoom
111+
zoomable: true
112+
- search:
113+
lang: en
114+
115+
extra_javascript:
116+
- javascripts/mathjax.js
117+
- https://polyfill.io/v3/polyfill.min.js?features=es6
118+
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
119+
120+
copyright : KIR Training Catalogue is licensed under a <a rel="noopener" target="_blank" href="https://www.gnu.org/licenses/gpl-3.0.en.html">GNU General Public License v3.0</a>
121+
122+
123+
extra_css:
124+
- stylesheets/extra.css

0 commit comments

Comments
 (0)