Exercise: Hello World!
Completion requirements
We start with a warm-up exercise.
Copy the HELLO folder from the central directory. In there you will find simple parallel "Hello World"-type programs in OpenMP and MPI for both C and Fortran. You will need the Intel environment for this to work
$ module load intel intelmpi
Typing "make" will build the binaries.
- (Day 1) Compile and run the OpenMP version of the program:
$ cd ~/HELLO/omp
Something is obviously wrong. Fix it!
$ make
$ OMP_NUM_THREADS=4 ./HELLO_C.exe - (Day 2) Compile and run the MPI version of the program:
$ cd ~/HELLO/mpi
Modify the code so that each process sends its own rank to process 0, which then prints all the ranks.
$ make
$ mpirun -np 4 ./HELLO_C.exe
Last modified: Tuesday, 24 February 2026, 1:59 PM