You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,19 @@ root: .
5
5
6
6
"High-performance computing" supercomputers have been around for longer than some of their users today. The first supercomputer, the [Cray-1](https://en.wikipedia.org/wiki/Cray-1), was setup in 1976 and was put in operation at Los Alamos National Laboratory. In the course of history, the design of supercomputers underwent several revolutions. Today, most universities and an increasing part of the industry in several domains exploit the computational power of clusters of interconnected servers.
7
7
8
-
These High-performance Computing (HPC) clusters are used for large scale data processing and data analysis, fine grained parallel calculations and simulations of ever increasing fidelity. This course material is meant to introduce learners to the core principles behind the using a HPC cluster, how to connect to it, how to dispatch jobs and retrieve their results, and how to program applications that can harness the full power of this machinery.
8
+
These High-performance Computing (HPC) clusters are used for large scale data processing and data analysis, scalable but yet fine grained parallel calculations and compute intensive simulations of ever increasing fidelity. This course material is meant to introduce learners to the core principles how to program applications that can harness the full power of such machinery.
9
9
10
10
Please note that this lesson uses Python 3 without the intent of claiming python to be the universal language for HPC. Python is merely used as a vehicle to convey concepts that due to the intuitiveness of the language should be easy to transport to other languages and domains.
11
11
12
12
> ## Prerequisites
13
13
>
14
-
> If you have already written small programs with a language of your choice and know the difference between a “variable” and a “function” and obtain a minimal knowledge of using the UNIX command line (e.g. if you have completed [shell-novice](https://swcarpentry.github.io/shell-novice/), you are good to go.
14
+
> This material targets future or present users of a HPC infrastructure of any discipline. The learners are expected to have programming skills beyond basic courses. Learners are expected to know how to submit a batch job on a HPC cluster. Further, knowledge on how to write functions and declare variables in python are required. Basic `numpy` array commands are beneficial but not required to follow the course.
15
+
>
16
+
> In other words, learners are expected to have skills which are equivalent to having completed:
> -[hpccarpentry/hpc-intro](https://carpentries-incubator.github.io/hpc-intro/) or [hpc-in-a-day's](https://psteinb.github.io/hpc-parallel-novice/) first 4 lessons
15
21
>
16
-
> This lesson guides you through the basics of using a computer cluster (or batch farm or supercomputer). If you're already comfortable with using systems like LSF, Slurm or PBS/Pro and have already run applications on a super computer or even wrote parallel applications to run on a cluster, you probably won't learn much from this lesson. But you are welcome to help the others as a technical assistant or contribute to this [course material](https://psteinb.github.io/hpc-in-a-day).
22
+
> This lesson guides you through the basics of parallelisation on a computer cluster (or batch farm or supercomputer). If you're already comfortable with using systems like LSF, Slurm or PBS/Pro and have written parallel applications to run on a cluster, you probably won't learn much from this lesson. But you are welcome to help others as a technical assistant or contribute to this [course material](https://psteinb.github.io/hpc-parallel-novice).
0 commit comments