Información

Autor (res) Erik-Jan Lingen, Matthias Möller
Fecha de entrega Sin fecha de envío
Tiempo límite de envío Sin límite de envío

Inicia sesión

[OpenMP] Exercise 1 : Hello World

This material is part of the course Practical Introduction to Parallel Programming and meant for educational purposes only.


Task

Implement a small OpenMP program that prints the total number of threads and the rank of the current thread.


Pregunta 1: Hello World
Pregunta 2: OpenMP environment variables

Specify the OpenMP environment variables that should be used for running your program (export OMP_NUM_THREADS=1 ...). Use semicolons to separate multiple variables

Pregunta 3: Command Line Argument

Specify the command line arguments that should be passed to your program when it is run. Arguments must be given in quotes and separated by commas. Leave this filed empty if you do not want to specify command line arguments.

Example: "1","int","arg=2" is interpreted as three arguments 1, int, and arg=2.