Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openmp-lab-exercises
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pdc-summer-school
openmp-lab-exercises
Commits
fa3af48f
Commit
fa3af48f
authored
6 years ago
by
Xin Li
Browse files
Options
Downloads
Patches
Plain Diff
corrected fortran openmp directives
parent
0507f16a
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
advanced_lab/README.md
+10
-10
10 additions, 10 deletions
advanced_lab/README.md
with
10 additions
and
10 deletions
advanced_lab/README.md
+
10
−
10
View file @
fa3af48f
...
@@ -65,29 +65,29 @@ below
...
@@ -65,29 +65,29 @@ below
-
What’s the difference between
-
What’s the difference between
```
```
$
!omp parallel do
!
$
omp parallel do
do i=1,n
do i=1,n
...
...
$
!omp end parallel do
!
$
omp end parallel do
$
!omp parallel do
!
$
omp parallel do
do j=1,m
do j=1,m
...
...
$
!omp end parallel do
!
$
omp end parallel do
```
```
and
and
```
```
$
!omp parallel
!
$
omp parallel
$
!omp do
!
$
omp do
do i=1,n
do i=1,n
...
...
$
!omp end do
!
$
omp end do
$
!omp do
!
$
omp do
do j=1,m
do j=1,m
...
...
$
!omp end do
!
$
omp end do
$
!omp end parallel
!
$
omp end parallel
```
```
_Hint: How are threads created/destroyed by OpenMP? How can it impact performance?_
_Hint: How are threads created/destroyed by OpenMP? How can it impact performance?_
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment