Difference between revisions of "OpenMP in Small Bites/Tasking and Data Scoping"

From HPC Wiki
OpenMP in Small Bites/Tasking and Data Scoping
Jump to navigation Jump to search
(Create stub using new syllabus template)
 
m (Tweak page sporting and title)
 
(15 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category:Tutorials]]
+
[[Category:Tutorials|Tasking and Data Scoping (OpenMP)]]<nowiki />
{{Syllabus OpenMP in Small Bites}}
+
{{DISPLAYTITLE:Tasking and Data Scoping (OpenMP)}}<nowiki />
 +
{{Syllabus OpenMP in Small Bites}}<nowiki />
 
__TOC__
 
__TOC__
  
 +
This video deepens the knowledge of OpenMP Tasking and Data Scoping by using an example which includes typical scenarios. Furthermore, aspects of the lifetime of a variable are discussed.
 
== Video ==
 
== Video ==
  
 +
<youtube width="600" height="340" right>sK11P-AfUCM</youtube>
 +
 +
 +
([[Media:hpc.nrw_06_Introduction-TaskingAndScoping.pdf | Slides as pdf]])
  
 
== Quiz ==
 
== Quiz ==
 +
{{hidden begin
 +
|title = 1. Consider the following code snippet
 +
 +
<code>int x = 42;</code><br/>
 +
<code>#pragma omp parallel private(x)</code><br/>
 +
<code>{</code><br/>
 +
<div style="margin-left: 1em;"><code>  #pragma omp task</code></div>
 +
<div style="margin-left: 1em;"><code>  {</code></div>
 +
<div style="margin-left: 2em;"><code>    x = 3;</code></div>
 +
<div style="margin-left: 1em;"><code>  }</code></div>
 +
<code>}</code><br/>
 +
<code>printf("x=%d\n", x);</code><br/>
 +
 +
What is the data scope of <code>x</code> in the task region and what is printed at the end?
 +
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
+ <code>firstprivate</code>, x=42
 +
- <code>firstprivate</code>, x=3
 +
- <code>shared</code>, x=3
 +
</quiz>
 +
{{hidden end}}
 +
 +
{{hidden begin
 +
|title = 2. Consider the following code snippet
 +
 +
<code>int x = 42;</code><br/>
 +
<code>int y = 0;</code><br/>
 +
<code>#pragma omp parallel num_threads(4)</code><br/>
 +
<code>{</code><br/>
 +
<div style="margin-left: 1em;"><code>  #pragma omp task</code></div>
 +
<div style="margin-left: 1em;"><code>  {</code></div>
 +
<div style="margin-left: 2em;"><code>  #pragma omp critical</code></div>
 +
<div style="margin-left: 2em;"><code>  {</code></div>
 +
<div style="margin-left: 3em;"><code>    y += x;</code></div>
 +
<div style="margin-left: 2em;"><code>  }</code></div>
 +
<div style="margin-left: 1em;"><code>  }</code></div>
 +
<code>}</code><br/>
 +
<code>printf("y=%d\n", y);</code><br/>
 +
 +
What is the data scope of <code>x</code> in the task region and what is printed out at the end?
 +
 +
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
- <code>shared</code>, y=42
 +
+ <code>shared</code>, y=168
 +
- <code>firstprivate</code>, y=168
 +
</quiz>
 +
{{hidden end}}
 +
 +
{{hidden begin
 +
|title = 3. Consider the following code snippet
 +
 +
<code>int x = 42;</code><br/>
 +
<code>int y = 0;</code><br/>
 +
<code>#pragma omp parallel num_threads(4)</code><br/>
 +
<code>{</code><br/>
 +
<div style="margin-left: 1em;"><code>  #pragma omp single</code></div>
 +
<div style="margin-left: 1em;"><code>  {</code></div>
 +
<div style="margin-left: 2em;"><code>    #pragma omp task</code></div>
 +
<div style="margin-left: 2em;"><code>    {</code></div>
 +
<div style="margin-left: 3em;"><code>  #pragma omp critical</code></div>
 +
<div style="margin-left: 3em;"><code>    {</code></div>
 +
<div style="margin-left: 4em;"><code>      y += x;</code></div>
 +
<div style="margin-left: 3em;"><code>    }</code></div>
 +
<div style="margin-left: 2em;"><code>    }</code></div>
 +
<div style="margin-left: 1em;"><code>  }</code></div>
 +
<code>}</code><br/>
 +
<code>printf("y=%d\n", y);</code><br/>
 +
 +
What is the data scope of <code>x</code> in the task region and what is printed out at the end?
 +
}}
 +
<quiz display=simple>
 +
{
 +
|type="()"}
 +
+ <code>shared</code>, y=42
 +
- <code>shared</code>, y=168
 +
- <code>firstprivate</code>, y=168
 +
</quiz>
 +
{{hidden end}}

Latest revision as of 17:40, 4 December 2020

Tutorial
Title: OpenMP in Small Bites
Provider: HPC.NRW

Contact: tutorials@hpc.nrw
Type: Multi-part video
Topic Area: Programming Paradigms
License: CC-BY-SA
Syllabus

1. Overview
2. Worksharing
3. Data Scoping
4. False Sharing
5. Tasking
6. Tasking and Data Scoping
7. Tasking and Synchronization
8. Loops and Tasks
9. Tasking Example: Sudoku Solver
10. Task Scheduling
11. Non-Uniform Memory Access

This video deepens the knowledge of OpenMP Tasking and Data Scoping by using an example which includes typical scenarios. Furthermore, aspects of the lifetime of a variable are discussed.

Video


( Slides as pdf)

Quiz

1. Consider the following code snippet

int x = 42;
#pragma omp parallel private(x)
{

#pragma omp task
{
x = 3;
}

}
printf("x=%d\n", x);

What is the data scope of x in the task region and what is printed at the end?

firstprivate, x=42
firstprivate, x=3
shared, x=3

2. Consider the following code snippet

int x = 42;
int y = 0;
#pragma omp parallel num_threads(4)
{

#pragma omp task
{
#pragma omp critical
{
y += x;
}
}

}
printf("y=%d\n", y);

What is the data scope of x in the task region and what is printed out at the end?

shared, y=42
shared, y=168
firstprivate, y=168

3. Consider the following code snippet

int x = 42;
int y = 0;
#pragma omp parallel num_threads(4)
{

#pragma omp single
{
#pragma omp task
{
#pragma omp critical
{
y += x;
}
}
}

}
printf("y=%d\n", y);

What is the data scope of x in the task region and what is printed out at the end?

shared, y=42
shared, y=168
firstprivate, y=168