Introduction to OpenMP

Slides:



Advertisements
Similar presentations
NewsFlash!! Earth Simulator no longer #1. In slightly less earthshaking news… Homework #1 due date postponed to 10/11.
Advertisements

1 Programming Explicit Thread-level Parallelism  As noted previously, the programmer must specify how to parallelize  But, want path of least effort.
Indian Institute of Science Bangalore, India भारतीय विज्ञान संस्थान बंगलौर, भारत Supercomputer Education and Research Centre (SERC) Adapted from: o “MPI-Message.
Open[M]ulti[P]rocessing Pthreads: Programmer explicitly define thread behavior openMP: Compiler and system defines thread behavior Pthreads: Library independent.
Mohsan Jameel Department of Computing NUST School of Electrical Engineering and Computer Science 1.
PARALLEL PROGRAMMING WITH OPENMP Ing. Andrea Marongiu
1 Tuesday, November 07, 2006 “If anything can go wrong, it will.” -Murphy’s Law.
DISTRIBUTED AND HIGH-PERFORMANCE COMPUTING CHAPTER 7: SHARED MEMORY PARALLEL PROGRAMMING.
Computer Architecture II 1 Computer architecture II Programming: POSIX Threads OpenMP.
Introduction to OpenMP For a more detailed tutorial see: Look at the presentations.
1 ITCS4145/5145, Parallel Programming B. Wilkinson Feb 21, 2012 Programming with Shared Memory Introduction to OpenMP.
CSCI-6964: High Performance Parallel & Distributed Computing (HPDC) AE 216, Mon/Thurs 2-3:20 p.m. Pthreads (reading Chp 7.10) Prof. Chris Carothers Computer.
OpenMPI Majdi Baddourah
A Very Short Introduction to OpenMP Basile Schaeli EPFL – I&C – LSP Vincent Keller EPFL – STI – LIN.
INTEL CONFIDENTIAL OpenMP for Domain Decomposition Introduction to Parallel Programming – Part 5.
Introduction to OpenMP Introduction OpenMP basics OpenMP directives, clauses, and library routines.
1 Parallel Programming With OpenMP. 2 Contents  Overview of Parallel Programming & OpenMP  Difference between OpenMP & MPI  OpenMP Programming Model.
Programming with Shared Memory Introduction to OpenMP
CS470/570 Lecture 5 Introduction to OpenMP Compute Pi example OpenMP directives and options.
Shared Memory Parallelization Outline What is shared memory parallelization? OpenMP Fractal Example False Sharing Variable scoping Examples on sharing.
Shared Memory Parallelism - OpenMP Sathish Vadhiyar Credits/Sources: OpenMP C/C++ standard (openmp.org) OpenMP tutorial (
Introduction to OpenMP
Parallel Programming in Java with Shared Memory Directives.
Chapter 17 Shared-Memory Programming. Introduction OpenMP is an application programming interface (API) for parallel programming on multiprocessors. It.
OpenMP - Introduction Süha TUNA Bilişim Enstitüsü UHeM Yaz Çalıştayı
1 OpenMP Writing programs that use OpenMP. Using OpenMP to parallelize many serial for loops with only small changes to the source code. Task parallelism.
Introduction to OpenMP. OpenMP Introduction Credits:
OpenMP OpenMP A.Klypin Shared memory and OpenMP Simple Example Threads Dependencies Directives Handling Common blocks Synchronization Improving load balance.
Lecture 8: OpenMP. Parallel Programming Models Parallel Programming Models: Data parallelism / Task parallelism Explicit parallelism / Implicit parallelism.
O PEN MP (O PEN M ULTI -P ROCESSING ) David Valentine Computer Science Slippery Rock University.
OpenMP – Introduction* *UHEM yaz çalıştayı notlarından derlenmiştir. (uhem.itu.edu.tr)
04/10/25Parallel and Distributed Programming1 Shared-memory Parallel Programming Taura Lab M1 Yuuki Horita.
OpenMP Martin Kruliš Jiří Dokulil. OpenMP OpenMP Architecture Review Board Compaq, HP, Intel, IBM, KAI, SGI, SUN, U.S. Department of Energy,…
CS 838: Pervasive Parallelism Introduction to OpenMP Copyright 2005 Mark D. Hill University of Wisconsin-Madison Slides are derived from online references.
Work Replication with Parallel Region #pragma omp parallel { for ( j=0; j
OpenMP fundamentials Nikita Panov
High-Performance Parallel Scientific Computing 2008 Purdue University OpenMP Tutorial Seung-Jai Min School of Electrical and Computer.
Introduction to OpenMP Eric Aubanel Advanced Computational Research Laboratory Faculty of Computer Science, UNB Fredericton, New Brunswick.
Shared Memory Parallelism - OpenMP Sathish Vadhiyar Credits/Sources: OpenMP C/C++ standard (openmp.org) OpenMP tutorial (
9/22/2011CS4961 CS4961 Parallel Programming Lecture 9: Task Parallelism in OpenMP Mary Hall September 22,
3/12/2013Computer Engg, IIT(BHU)1 OpenMP-3. OMP_INIT_LOCK OMP_INIT_NEST_LOCK Purpose: ● This subroutine initializes a lock associated with the lock variable.
Parallel Programming Models (Shared Address Space) 5 th week.
3/12/2013Computer Engg, IIT(BHU)1 OpenMP-1. OpenMP is a portable, multiprocessing API for shared memory computers OpenMP is not a “language” Instead,
10/05/2010CS4961 CS4961 Parallel Programming Lecture 13: Task Parallelism in OpenMP Mary Hall October 5,
Special Topics in Computer Engineering OpenMP* Essentials * Open Multi-Processing.
CPE779: More on OpenMP Based on slides by Laxmikant V. Kale and David Padua of the University of Illinois.
3/12/2013Computer Engg, IIT(BHU)1 OpenMP-2. Environment Variables OMP_NUM_THREADS OMP_SCHEDULE.
Heterogeneous Computing using openMP lecture 2 F21DP Distributed and Parallel Technology Sven-Bodo Scholz.
CPE779: Shared Memory and OpenMP Based on slides by Laxmikant V. Kale and David Padua of the University of Illinois.
CS240A, T. Yang, Parallel Programming with OpenMP.
COMP7330/7336 Advanced Parallel and Distributed Computing OpenMP: Programming Model Dr. Xiao Qin Auburn University
OpenMP An API : For Writing Portable SMP Application Software Rider NCHC GTD.
Introduction to OpenMP
SHARED MEMORY PROGRAMMING WITH OpenMP
Shared Memory Parallelism - OpenMP
CS427 Multicore Architecture and Parallel Computing
Auburn University COMP7330/7336 Advanced Parallel and Distributed Computing Improving Barrier Performance Dr. Xiao Qin.
Auburn University COMP7330/7336 Advanced Parallel and Distributed Computing A bug in the rwlock program Dr. Xiao Qin.
Open[M]ulti[P]rocessing
Computer Engg, IIT(BHU)
Introduction to OpenMP
September 4, 1997 Parallel Processing (CS 667) Lecture 5: Shared Memory Parallel Programming with OpenMP* Jeremy R. Johnson Parallel Processing.
Computer Science Department
Multi-core CPU Computing Straightforward with OpenMP
Parallel Programming with OpenMP
Introduction to High Performance Computing Lecture 20
Programming with Shared Memory Introduction to OpenMP
Introduction to OpenMP
OpenMP Parallel Programming
Parallel Programming with OPENMP
Presentation transcript:

Introduction to OpenMP OpenMP basics OpenMP directives, clauses, and library routines

Motivation Look at lect9/mm.c and lect9/mm_pthread.c What we really want is to run the loop using multiple threads pthread is too tedious A better interface: just say the loop needs to be executed in parallel by multiple threads, let the compiler do the rest -- this is what OpenMP does. See mm_omp.c

What is OpenMP? What does OpenMP stands for? Open specifications for Multi Processing via collaborative work between interested parties from the hardware and software industry, government and academia. OpenMP is an Application Program Interface (API) that may be used to explicitly direct multi-threaded, shared memory parallelism. API components: Compiler Directives, Runtime Library Routines. Environment Variables OpenMP is a directive-based method to invoke parallel computations on share-memory multiprocessors

What is OpenMP? OpenMP API is specified for C/C++ and Fortran. OpenMP is not intrusive to the orginal serial code: instructions appear in comment statements for fortran and pragmas for C/C++. See mm.c and mm_omp.c OpenMP website: http://www.openmp.org Materials in this lecture are taken from various OpenMP tutorials in the website and other places.

Why OpenMP? OpenMP is portable: supported by HP, IBM, Intel, SGI, SUN, and others It is the de facto standard for writing shared memory programs. To become an ANSI standard? Already supported by gcc (version 4.2 and up) OpenMP can be implemented incrementally, one function or even one loop at a time. Very nice way to get a parallel program from a sequential program.

How to compile and run OpenMP programs? Gcc 4.2 and above supports OpenMP 3.0 gcc –fopenmp a.c To run: ‘a.out’ To change the number of threads: setenv OMP_NUM_THREADS 4 (tcsh) or export OMP_NUM_THREADS=4(bash)

OpenMP programming model OpenMP uses the fork-join model of parallel execution. All OpenMP programs begin with a single master thread. The master thread executes sequentially until a parallel region is encountered, when it creates a team of parallel threads (FORK). When the team threads complete the parallel region, they synchronize and terminate, leaving only the master thread that executes sequentially (JOIN).

OpenMP general code structure #include <omp.h> main () { int var1, var2, var3; Serial code . . . /* Beginning of parallel section. Fork a team of threads. Specify variable scoping*/ #pragma omp parallel private(var1, var2) shared(var3) { /* Parallel section executed by all threads */ /* All threads join master thread and disband*/ } Resume serial code

Data model Private and shared variables Variables in the global data space are accessed by all parallel threads (shared variables). Variables in a thread’s private space can only be accessed by the thread (private variables) several variations, depending on the initial values and whether the results are copied outside the region.

Parallel for loop index is Private by default. #pragma omp parallel for private( privIndx, privDbl ) for ( i = 0; i < arraySize; i++ ) { for ( privIndx = 0; privIndx < 16; privIndx++ ) { privDbl = ( (double) privIndx ) / 16; y[i] = sin( exp( cos( - exp( sin(x[i]) ) ) ) ) + cos( privDbl ); } Parallel for loop index is Private by default.

When can we mark a loop a parallel loop? How should we declare variables shared or private? for ( i = 0; i < arraySize; i++ ) { for ( privIndx = 0; privIndx < 16; privIndx++ ) { privDbl = ( (double) privIndx ) / 16; y[i] = sin( exp( cos( - exp( sin(x[i]) ) ) ) ) + cos( privDbl ); } Parallel loop: executing each iteration concurrently is the same as executing each iteration sequentially. no loop carry dependencies: an iteration does not produce any data that will be consumed by another iteration. y[i] is different for each iteration. privDbl is not (must make it private to be correct).

OpenMP directives Format: Example: #pragma omp directive-name [clause,..] newline (use ‘\’ for multiple lines) Example: #pragma omp parallel default(shared) private(beta,pi) Scope of a directive is a block of statements { …}

Parallel region construct A block of code that will be executed by multiple threads. #pragma omp parallel [clause …] { …… } (implied barrier) Example clauses: if (expression), private (list), shared (list), default (shared | none), reduction (operator: list), firstprivate(list), lastprivate(list) if (expression): only in parallel if expression evaluates to true private(list): everything private and local (no relation with variables outside the block). shared(list): data accessed by all threads default (none|shared)

The reduction clause: Updating sum must avoid race condition #pragma parallel default(none) shared (n, x) private (I) reduction(+ : sum) { For(I=0; I<n; I++) sum = sum + x(I); } Updating sum must avoid race condition With the reduction clause, OpenMP generates code such that the race condition is avoided. See example3.c and example3a.c

Work-sharing constructs #pragma omp for [clause …] #pragma omp section [clause …] #pragma omp single [clause …] The work is distributed over the threads Must be enclosed in parallel region No implied barrier on entry, implied barrier on exit (unless specified otherwise)

The omp for directive: example

Schedule clause (decide how the iterations are executed in parallel): schedule (static | dynamic | guided [, chunk])

The omp session clause - example

Synchronization: barrier For(I=0; I<N; I++) a[I] = b[I] + c[I]; d[I] = a[I] + b[I] Both loops are in parallel region With no synchronization in between. What is the problem? Fix: For(I=0; I<N; I++) a[I] = b[I] + c[I]; #pragma omp barrier d[I] = a[I] + b[I]

Critical session For(I=0; I<N; I++) { …… sum += A[I]; } Cannot be parallelized if sum is shared. Fix: For(I=0; I<N; I++) { …… #pragma omp critical { sum += A[I]; }

OpenMP environment variables OMP_NUM_THREADS OMP_SCHEDULE

OpenMP runtime environment omp_get_num_threads() omp_get_thread_num() omp_in_parallel Routines related to locks ……

Lock related routines Will only discuss simple lock: may not be locked if already in a locked state. Simple lock interface: Type: omp_lock_t Operations: omp_init_lock(omp_lock_t *a) omp_destroy_lock(omp_lock_t *a) omp_set_lock(omp_lock_t *a) omp_unset_lock(omp_lock_t *a) omp_test_lock(omp_lock_t *a)

Openmp lock routines omp_init_lock initializes the lock. After the call, the lock is unset. omp_destroy_lock destroys the lock. The lock must be unset before this call. omp_set_lock attempts to set the lock. If the lock is already set by another thread, it will wait until the lock is no longer set, and then sets it. omp_unset_lock unsets the lock. It should only be called by the same thread that set the lock; the consequences of doing otherwise are undefined. omp_test_lock attempts to set the lock. If the lock is already set by another thread, it returns 0; if it managed to set the lock, it returns 1.

Openmp lock routines Can the lock mechanism used for loop carried dependence? See loopcarry_omp.c – is it easy to fix this using lock? See loopcarry_omp_f.c.

Realizing customized reduction #pragma omp parallel default(none) shared (n, x) private (I) reduction(f : sum) { For(I=0; I<n; I++) sum = sum + x(I); } #pragma omp parallel default (none) shared(n, x, localsum, nthreads) private(I) nthreads = omp_get_num_threads(); #pragma omp for for (I=0; I<n; I++) { localsum[omp_get_thread_num()] += x(I); For (I=0; I<nthreads; I++) sum += localsum[I];

Summary: OpenMP provides a compact, yet powerful programming model for shared memory programming OpenMP preserves the sequential version of the program Developing an OpenMP program: Start from a sequential program Identify the code segment that takes most of the time. Determine whether the important loops can be parallelized The loops may have critical sections, reduction variables, etc Determine the shared and private variables. Add directives. See for example pi.c and piomp.c program.

Challenges in developing correct openMP programs Dealing with loop carried dependence Removing unnecessary dependencies Managing shared and private variables