-
Notifications
You must be signed in to change notification settings - Fork 0
/
_quarto.yml
188 lines (184 loc) · 5.46 KB
/
_quarto.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
project:
type: website
output-dir: _site
render:
- "*.qmd"
website:
title: UVic Spring School 2023
image: /img/sfudrac_logo.png
favicon: /img/sfu_favicon.png
site-url: https://2023uvic.netlify.app/
repo-url: https://github.com/WestDRI/2023uvic
page-navigation: true
page-footer:
center:
- text: About
href: about.qmd
- text: Calendar
href: calendar.qmd
aria-label: WestDRI training calendar
- text: Newsletter
href: newsletter.qmd
aria-label: WestDRI Newsletter
- href: contact.qmd
aria-label: WestDRI Contact
- text: Wiki
href: https://docs.alliancecan.ca/wiki/Technical_documentation
right:
- icon: github
href: https://github.com/WestDRI
aria-label: WestDRI GitHub
- icon: youtube
href: https://www.youtube.com/channel/UCfgds4Qf7VFOv4ORRvFFmhw
aria-label: WestDRI YouTube
navbar:
background: light
logo: /img/sfudrac_logo.png
logo-alt: "SFU & DRAC logos"
title: false
left:
- text: Bash
href: bash/index.qmd
- text: HPC
href: hpc/index.qmd
- text: Intro R
href: r_intro/index.qmd
- text: Parallel R
href: r_parallel/index.qmd
- text: Parallel Julia
href: julia/index.qmd
- text: PyTorch
href: ml/index.qmd
- text: ParaView
href: scivis/index.qmd
sidebar:
- id: bash
contents:
- section:
contents:
- bash/index.qmd
- id: hpc
contents:
- section:
contents:
- hpc/index.qmd
- id: r_intro
contents:
- section:
contents:
- r_intro/index.qmd
- text: <em><b>Getting started with R</b></em>
href: r_intro/index.qmd
contents:
- text: Running R for this course
href: r_intro/run_r_intro.qmd
- text: "R: why and for whom?"
href: r_intro/why.qmd
- text: First steps in R
href: r_intro/basics.qmd
- text: Packages
href: r_intro/packages.qmd
- text: Data types and structures
href: r_intro/data_structure.qmd
- text: Indexing
href: r_intro/indexing.qmd
- text: Function definition
href: r_intro/functions.qmd
- text: Control flow
href: r_intro/control_flow.qmd
- text: Introduction to the tidyverse
href: r_intro/tidyverse.qmd
- text: Plotting
href: r_intro/plotting.qmd
- text: Publishing
href: r_intro/publishing.qmd
- text: Resources
href: r_intro/resources.qmd
- id: r_parallel
contents:
- section:
contents:
- r_parallel/index.qmd
- text: <b><em>Parallel R</em></b>
href: r_parallel/index.qmd
contents:
- text: Running R for this course
href: r_parallel/run_r_hpc.qmd
- text: Measuring performance
href: r_parallel/performance.qmd
- text: Optimizations
href: r_parallel/optimizations.qmd
- text: Memory management
href: r_parallel/memory.qmd
- text: Running R on HPC clusters
href: r_parallel/clusters.qmd
- text: Types of parallelism
href: r_parallel/parallel_types.qmd
- text: Parallel loops
href: r_parallel/parallel_loops.qmd
- text: Data on HPC clusters
href: r_parallel/data.qmd
- text: Partitioning data
href: r_parallel/partition.qmd
- text: Writing C++ in R with Rcpp
href: r_parallel/rcpp.qmd
- text: Resources for HPC in R
href: r_parallel/resources_hpc.qmd
- id: julia
contents:
- section:
contents:
- julia/index.qmd
- id: ml
contents:
- section:
contents:
- ml/index.qmd
- text: <b><em>Introduction to PyTorch</em></b>
href: ml/index.qmd
contents:
- text: Introduction
href: ml/intro.qmd
- text: Introduction to NN
href: ml/nn.qmd
- text: Which framework to choose?
href: ml/choosing_frameworks.qmd
- text: The PyTorch API
href: ml/pytorch.qmd
- text: High-level frameworks
href: ml/high_level_frameworks.qmd
- text: PyTorch tensors
href: ml/tensors.qmd
- text: Automatic differentiation
href: ml/autograd.qmd
- text: Workflow
href: ml/workflow.qmd
- text: Creating checkpoints
href: ml/checkpoints.qmd
- text: "Example: the MNIST"
href: ml/mnist.qmd
- text: ML on production clusters
href: ml/hpc.qmd
- text: Resources
href: ml/resources.qmd
- id: scivis
contents:
- section:
contents:
- scivis/index.qmd
format:
html:
toc: true
toc-title: "<em>On this page:</em>"
toc-depth: 5
theme:
light: [cosmo, theme.scss]
css: styles.css
link-external-newwindow: true
reference-location: margin
fig-cap-location: margin
execute:
freeze: auto
cache: true
error: true
echo: true