Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ parts:
sections:
- file: programme_information/intro_to_version_control
- file: programme_information/intermediate_version_control
- file: programme_information/gpus
sections:
- file: programme_information/intro_to_gpus
- file: cfrr_program_details/course_feedback

- caption: What Courses Should I Take?
Expand Down
3 changes: 2 additions & 1 deletion data/workshop_info.csv
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ Introduction to Machine Learning,03/12/2024,27/02/2025,7th/14th/21st March 2025
Improve your R Code,19/02/2025,22/04/2025,29th April 2025 10am-1pm,https://forms.office.com/e/bUXinqvWja,In-person only,https://coding-for-reproducible-research.github.io/CfRR_Courses/programme_information/improve_your_r_code.html
Introduction to Markdown in R,19/02/2025,05/06/2025,6th June 2025 10am-1pm,https://forms.office.com/e/8diVktHHzt,In-person only,https://coding-for-reproducible-research.github.io/CfRR_Courses/programme_information/Introduction_to_Markdown_in_R.html
Using Markdown for Python,19/02/2025,09/06/2025,10th June 2025 10am-1pm,https://forms.office.com/e/5ixSXnxdHb,In-person only,https://coding-for-reproducible-research.github.io/CfRR_Courses/programme_information/markdown_with_python.html
Mixed Effects Regression with R,,,,,,
Mixed Effects Regression with R,,,,,,
Introduction to GPUs,,,,,,
36 changes: 36 additions & 0 deletions individual_modules/intro_to_GPUs/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@

### Instructional Material

The instructional material in this course is copyright © 2025 University of Exeter
and is made available under the Creative Commons Attribution 4.0 International
licence (https://creativecommons.org/licenses/by/4.0/). Instructional material
consists of material that is contained within the "individual_modules/python_for_data_analysis" directory, and images folders in
this directory, with the exception of code snippets and example programs found
in files within these folders. Such code snippets and example programs are
considered software for the purposes of this licence.


### Software

Except where otherwise noted, software provided in this repository is made
available under the MIT licence (https://opensource.org/licenses/MIT).

Copyright © 2025 University of Exeter

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.2"
"version": "3.9.19"
}
},
"nbformat": 4,
Expand Down
2 changes: 1 addition & 1 deletion individual_modules/intro_to_GPUs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ Ensure you can SSH into the remote machine from your terminal. If SSH is not alr

5. Add a new SSH configuration to the file, specifying the remote machine’s details. Here’s an example configuration:

```ssh-config
```
Host my-remote-machine
HostName <remote-ip-or-hostname>
User <your-username>
Expand Down
12 changes: 6 additions & 6 deletions individual_modules/intro_to_GPUs/theory.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"\n",
"```{figure} figures/gpu_for_graphics.png\n",
":alt: A graphics card powering 3D rendering on a computer display.\n",
":name: fig-gpu\n",
":name: fig-gpu-graphics\n",
":width: 500px\n",
":align: center\n",
"\n",
Expand Down Expand Up @@ -75,7 +75,7 @@
"\n",
"```{figure} figures/gpu_2048_regions.png\n",
":alt: A computer monitor showing an image of a sunset divided into many small grid regions, representing how a GPU processes tasks in thousands of parallel chunks.\n",
":name: fig-gpu\n",
":name: fig-gpu-2048-regions\n",
":width: 500px\n",
":align: center\n",
"\n",
Expand All @@ -84,7 +84,7 @@
"\n",
"```{figure} figures/cpu_4_regions.png\n",
":alt: A computer monitor showing an image of a sunset divided into four large regions, representing how a CPU processes tasks in fewer, larger chunks.\n",
":name: fig-gpu\n",
":name: fig-gpu-4-regions\n",
":width: 500px\n",
":align: center\n",
"\n",
Expand Down Expand Up @@ -122,7 +122,7 @@
"\n",
"```{figure} figures/cpu_architecture.png\n",
":alt: Illustration of a CPU with four cores, each core handling one task, showing limited parallel task execution.\n",
":name: fig-gpu\n",
":name: fig-cpu-architecture\n",
":width: 500px\n",
":align: center\n",
"\n",
Expand All @@ -131,7 +131,7 @@
"\n",
"```{figure} figures/gpu_architecture.png\n",
":alt: Illustration of a GPU with many small cores, each working on parts of multiple tasks simultaneously, showing massive parallelism.\n",
":name: fig-gpu\n",
":name: fig-gpu-architecture\n",
":width: 500px\n",
":align: center\n",
"\n",
Expand Down Expand Up @@ -1787,7 +1787,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.12.2"
"version": "3.9.19"
}
},
"nbformat": 4,
Expand Down
32 changes: 4 additions & 28 deletions individual_modules/introduction_to_julia/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@

### Instructional Material

The instructional material in this course is copyright © 2024 University of Exeter
The instructional material in this course is copyright © 2025 University of Exeter
and is made available under the Creative Commons Attribution 4.0 International
licence (https://creativecommons.org/licenses/by/4.0/). Instructional material
consists of material that is contained within the "individual_modules/introduction_to_julia" directory, and images folders in
consists of material that is contained within the "individual_modules/python_for_data_analysis" directory, and images folders in
this directory, with the exception of code snippets and example programs found
in files within these folders. Such code snippets and example programs are
considered software for the purposes of this licence.
Expand All @@ -15,7 +15,7 @@ considered software for the purposes of this licence.
Except where otherwise noted, software provided in this repository is made
available under the MIT licence (https://opensource.org/licenses/MIT).

Copyright © 2024 University of Exeter
Copyright © 2025 University of Exeter

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand All @@ -33,28 +33,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

The software in this repository is adapted from software that is covered by the
following copyright and permission notice:

Copyright © 2024 Software Carpentry

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
SOFTWARE.
44 changes: 44 additions & 0 deletions programme_information/gpus.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"cells": [
{
"cell_type": "markdown",
"id": "c6492f92-e51d-4133-b27a-8b702f3411f0",
"metadata": {},
"source": [
"# GPUs\n",
"\n",
"Currently there is only a single GPU course avaiable as self-study materials: \n",
"- **Introduction to GPUs**: Introduction to GPUs introduces the fundamentals of GPU computing for scientific and technical applications. The course covers GPU architectures, running code on modern accelerators, and managing environments on HPC systems. With a focus on optimisation and performance, participants will gain hands-on experience through guided exercises and projects in numerical modelling and simulation."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "e24bab45-4d69-4c0f-8459-9bda6574223e",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.19"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Loading
Loading