This lesson is still being designed and assembled (Pre-Alpha version)

Introduction - Why HPC?

Overview

Teaching: 15 min
Exercises: 5 min
Questions
  • Why would I be interested in High Performance Computing (HPC)?

  • What can I expect to learn from this course?

Objectives
  • Be able to describe what an HPC system is

  • Identify how an HPC system could benefit you.

Frequently, research problems that use computing can outgrow the desktop or laptop computer where they started:

These problems can be solved by access to multiple computers at the same time, with perhaps more processors, more memory, and more available storage than a local laptop or desktop computer.
This is the offering of High Performance Computing.

And what do you do?

Talk to your neighbour, office mate or rubber duck and reflect on examples from your experience where a data analysis would be unfeasible or inconvenient if performed on your own computer. How could more computing help you do more or better research?

The use of HPC

A standard Laptop for standard tasks

Today, people coding or analysing data typically work with laptops.

/hpc/A%20standard%20laptop

Let’s dissect what resources programs running on a laptop require:

Schematically, this can be reduced to the following:

/hpc/Schematic%20of%20how%20a%20computer%20works

When tasks take too long

When the task to solve become more heavy on computations, the operations are typically out-sourced from the local laptop or desktop to elsewhere. Have you ever asked Google Maps for directions? The capabilities of your laptop are typically not enough to calculate such routes so spontaneously. So you use a website, which in turn runs on a server that is almost certaintly not in the same room as you are.

/hpc/A%20rack%20half%20full%20with%20servers

Note here, that a server is generally a noisy computer mounted into a rack cabinet which in turn resides in a data center. The internet made it possible that these data centers do not require to be nearby your laptop. What people call the cloud is mostly a web-service where you can rent such servers by providing your credit card details and by clicking together the specs of this remote resource.

The server itself has no direct display or input methods attached to it. But most importantly, it has much more storage, memory and compute capacity than your laptop will ever have. In any case, you need a local device (laptop, workstation, mobile phone or tablet) to interact with this remote machine, people typically call ‘a server’.

When one server is not enough

If the computational task or analysis to complete is daunting for a single server, larger agglomerations of servers are used. These go by the name of clusters or super computers.

/hpc/A%20rack%20with%20servers

When interacting with such systems, providing input data, code, instructions, options, etc., a GUI-style (point and click) interface is often discarded in favor of using a command line interface. This imposes a double paradigm shift for prospective users:

  1. Getting used to working with the command line
  2. Getting used to working with a distributed set of computers (called nodes)

I’ve never used a server, have I?

Take a minute and think about which of your daily interactions with a computer may require a remote server or even cluster to provide you with results.

Key Points

  • High Performance Computing (HPC) typically involves connecting to very large computing systems elsewhere in the world.

  • These other systems can be used to do work that would either be impossible or much slower or smaller systems.

  • The standard method of interacting with such systems is via a command line interface.