KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
SummerUniversity2023
★ 11
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
SnakeOilXY-LFR
:
Large format CoreXY 3D printer with a hybrid design of FR4 and printed parts.
Iconic
:
collection of beautifully designed icons meticulously for flutter "crafted by Freepik"
photoplus
:
Download photoplus pics
whatsapp_clone
:
No description available.
smooth_shadow
:
Exponential falloff shadows for Flutter
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
SummerUniversity2023
?
Download (.md)
# CSCS-USI HPC/Data Analytics Summer University 2023 This repository contains the materials used in the Summer University, including source code, lecture notes and slides. Material will be added to the repository throughout the course, which will require that students either update their copy of the repository, or download/checkout a new copy of the repository. ## Announcements We will be using Slack to post news and links relevant to the event: you should receive an invitation to join the Summer University Slack workspace at latest one week before the event. ## Schedule ### Group 1 - In-person  ### Group 2 - Online  ## Link to materials - [Intro Lab](./intro-lab) (Day 0) - [CUDA](./cuda) (Day 1, 2, 3 & 4) - [Python HPC](./python-hpc) (Day 4 & 5) ## Obtaining a copy of this repository ### On your own computer You will want to download the repository to your laptop to get all of the slides. The best method is to use git, so that you can update the repository as more slides and material are added over the course of the event. So, if you have git installed, use the same method as for Piz Daint below (in a directory of your choosing). You can also download the code as a zip file by clicking on the green __Clone or download__ button on the top right hand side of the github page, then clicking on __Download zip__. ### On Piz Daint via JupyterLab - Go to https://jupyter.cscs.ch/ and sign in using your CSCS course credentials - Launch JupyterLab (might take a couple of minutes) - Advanced reservation '(reservation name will be updated later)' - Default values for the other fields (unless told otherwise by the instructor) - Launch a new terminal : File -> New -> Terminal - Issue the following commands on the terminal: ```bash ln -s $SCRATCH scratch cd $SCRATCH git clone https://github.com/eth-cscs/SummerUniversity2023.git ``` ### On Piz Daint via ssh This is an alternative method to the JupyterLab method above ```bash # log onto Piz Daint ... ssh classNNN@ela.cscs.ch ssh daint # go to scratch cd $SCRATCH git clone https://github.com/eth-cscs/SummerUniversity2023.git ``` ## Updating the repository Lecture slides and source code will be continually added and updated on the remote git repository throughout the course. To update your local repository you can simply go inside the path and type ``` git pull origin main ``` There is a posibility that you might have a conflict between your working version of the repository and the origin. In this case you can ask one of the assistants for help. # How to access Piz Daint This will be covered in the lectures and you can find more details in the [CSCS User Portal](https://user.cscs.ch/access/running/piz_daint/).