Return-Path: <rabenseifner@hlrs.de>
Received: from deliver ([unix socket])
	 by merkur (Cyrus v2.4.17-caldav-beta9-Debian-2.4.17+caldav~beta9-3) with
 LMTPA;
	 Wed, 03 May 2017 18:04:25 +0200
X-Sieve: CMU Sieve 2.4
Received: from localhost (localhost [127.0.0.1])
	by merkur.ins.uni-bonn.de (Postfix) with ESMTP id 1F0A6B02D9D
	for <sekretariat.ins.uni-bonn.de@merkur.ins.uni-bonn.de>;
 Wed,  3 May 2017 18:04:25 +0200 (CEST)
X-Virus-Scanned: Debian amavisd-new at merkur.ins.uni-bonn.de
X-Spam-Flag: NO
X-Spam-Score: -0.753
X-Spam-Level: 
X-Spam-Status: No, score=-0.753 required=6.31 tests=[BAYES_00=-1.5,
	DEAR_SOMETHING=1.787, RP_MATCHES_RCVD=-1.05, T_DKIM_INVALID=0.01]
	autolearn=no autolearn_force=no
Authentication-Results: merkur.ins.uni-bonn.de (amavisd-new);
	dkim=pass (1024-bit key) header.d=hlrs.de
Received: from merkur.ins.uni-bonn.de ([127.0.0.1])
	by localhost (merkur.ins.uni-bonn.de [127.0.0.1]) (amavisd-new, port 10024)
	with ESMTP id gk3AJygFkrAZ
	for <sekretariat.ins.uni-bonn.de@merkur.ins.uni-bonn.de>;
	Wed,  3 May 2017 18:04:24 +0200 (CEST)
Received: from mail.hlrs.de (mail.hlrs.de [141.58.2.50])
	by merkur.ins.uni-bonn.de (Postfix) with ESMTPS id D4E6A47F50
	for <contact@ins.uni-bonn.de>; Wed,  3 May 2017 18:04:24 +0200 (CEST)
Received: from localhost (localhost [127.0.0.1])
	by mail.hlrs.de (Postfix) with ESMTP id 8B88012167
	for <contact@ins.uni-bonn.de>; Wed,  3 May 2017 18:04:24 +0200 (CEST)
Received: from mail.hlrs.de ([127.0.0.1])
	by localhost (mail.hlrs.de [127.0.0.1]) (amavisd-new, port 10032)
	with ESMTP id Woqamid_Vhbl for <contact@ins.uni-bonn.de>;
	Wed,  3 May 2017 18:04:24 +0200 (CEST)
Received: from localhost (localhost [127.0.0.1])
	by mail.hlrs.de (Postfix) with ESMTP id 0C2C312166
	for <contact@ins.uni-bonn.de>; Wed,  3 May 2017 18:04:24 +0200 (CEST)
DKIM-Filter: OpenDKIM Filter v2.10.3 mail.hlrs.de 0C2C312166
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hlrs.de;
	s=1806FB76-797D-11E5-BCE5-7B280A126CD4; t=1493827464;
	bh=QBH4C1RDfVO0ds7644S1bHs9tkl+H/TjDVOVzUykqTk=;
	h=From:To:Message-Id:Date;
	b=KmczYYPrcWNH37acch5QLV8Yx77am54mnGiuuU71Ht6ow7BFbrI4ejvQPsPf1Gzoi
	 PmInlU5Dsoqpco1FYm0D6mEMy552+A4FSuzPdpZy7/8xxDoELmWVui4pRlw9oi6WfM
	 RHU2NKMuyMMc/4RxYGZ4pD0KS1CSRrzJ7UBaB6PU=
X-Virus-Scanned: amavisd-new at hlrs.de
Received: from mail.hlrs.de ([127.0.0.1])
	by localhost (mail.hlrs.de [127.0.0.1]) (amavisd-new, port 10026)
	with ESMTP id CbyEGv8pl_Ip for <contact@ins.uni-bonn.de>;
	Wed,  3 May 2017 18:04:23 +0200 (CEST)
Received: from awsrr.hlrs.de (awsrr.hlrs.de [141.58.5.187])
	by mail.hlrs.de (Postfix) with ESMTP id E7E5A12187
	for <contact@ins.uni-bonn.de>; Wed,  3 May 2017 18:04:23 +0200 (CEST)
Received: by awsrr.hlrs.de (Postfix, from userid 843)
	id 2E8C48A2C5; Wed,  3 May 2017 18:05:23 +0200 (CEST)
From: Rolf Rabenseifner <rabenseifner@hlrs.de>
Reply-To: Rolf Rabenseifner <rabenseifner@hlrs.de>,
 Lucienne Dettki <dettki@hlrs.de>
To: contact@ins.uni-bonn.de
Subject: MPI+X / Introduction to hybrid programming in HPC @ HLRS
Message-Id: <20170503160523.2E8C48A2C5@awsrr.hlrs.de>
Date: Wed,  3 May 2017 18:05:23 +0200 (CEST)

Dear Madam or Sir / Sehr geehrte Damen und Herren,

As hybrid programming techniques are getting more and more
important in HPC, we have organised a course at HLRS on

    Introduction to hybrid programming in HPC

       Monday, June 12, 2017, 10:00-17:00
               HLRS, Stuttgart 
      http://www.hlrs.de/training/2017/HY-S

Course Description:

Most HPC systems are clusters of shared memory nodes. Such SMP
nodes can be small multi-core CPUs up to large many-core CPUs.
Parallel programming may combine the distributed memory
parallelization on the node interconnect (e.g., with MPI)
with the shared memory parallelization inside of each node
(e.g., with OpenMP or MPI-3.0 shared memory). This course
analyses the strengths and weaknesses of several parallel
programming models on clusters of SMP nodes. Multi-socket-
multi-core systems in highly parallel environments are given
special consideration. MPI-3.0 has introduced a new shared
memory programming interface, which can be combined with
inter-node MPI communication. It can be used for direct
neighbour accesses similar to OpenMP or for direct halo
copies, and enables new hybrid programming models.
These models are compared with various hybrid MPI+OpenMP
approaches and pure MPI.  Numerous case studies and
micro-benchmarks demonstrate the performance-related
aspects of hybrid programming.

Tools for hybrid programming such as thread/process placement
support and performance analysis are presented in a "how-to"
section.  This course provides scientific training in 
Computational Science, and in addition, the scientific 
exchange of the participants among themselves.

Similar "MPI+X" tutorials about hybrid programming have been
successfully presented by the lecturers Dr. Rolf Rabenseifner
(HLRS, member of the steering committee of the MPI-3 Forum)
and Dr. Georg Hager (RRZE, winner of the "Informatics Europe
Curriculum Best Practices Award: Parallelism and Concurrency")
during various supercomputing conferences in the past, 
and also as a PATC course at LRZ Garching in January 2017.

Teachers:
Dr. Georg Hager (RRZE/HPC Uni. Erlangen), Dr. Rolf Rabenseifner (HLRS)

More information about the course and the registration
form can be found online at

http://www.hlrs.de/training/2017/HY-S

We would like to invite you to participate in this course 
at HLRS. Please also pass this workshop announcement to 
other interested colleagues.

HLRS is part of the Gauss Centre for Supercomputing (GCS), 
which is one of the six PRACE Advanced Training Centres (PATCs)
that started in 2012.

Further upcoming courses that may be of interest for you:

http://www.hlrs.de/training/
- Cluster Workshop (May 29-30, Stuttgart) [German]
- Scientific Visualization (May 31-Jun 1, Stuttgart) [English]
- Shared memory parallelization with OpenMP (June 8-9, Vienna) [Engl]
- Hybrid MPI+X (Jun 12, Stuttgart) [English]
- Introduction to UPC and Co-Array Fortran (Jun 29-30, Stuttgart) [Engl]
- Efficient Parallel Prog. with GASPI (Jul 3-4, Stuttgart) [Engl]
- CFD with OpenFOAM (Aug 28-Sep 1, Stuttgart) [German]
- Iterative Linear Solvers and Parallelization (Sep 4-8, Garching) [Ger]
- Introduction to CFD (Sep 11-15, Stuttgart) [German]

Kind regards,
Rolf Rabenseifner (HLRS) and Georg Hager (RRZE/HPC Univ. Erlangen)


---------------------------------------------------------------------
We would appreciate if you could forward this email to interested 
colleagues. If you receive double postings or you want to stop my
postings, then please reply with "unsubscribe contact@ins.uni-bonn.de"
in the subject line.
---------------------------------------------------------------------


---------------------------------------------------------------------
Dr. Rolf Rabenseifner .. . . . . . . . . email rabenseifner@hlrs.de .
High Performance Computing Center (HLRS) phone ++49(0)711/685-65530 .
University of Stuttgart .. . . . . . . . fax : ++49(0)711/685-65832 .
Head of Dpmt Parallel Computing ... www.hlrs.de/people/rabenseifner .
Nobelstr. 19, D-70569 Stuttgart, Germany .
---------------------------------------------------------------------
