mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-03 13:21:33 +01:00
fix transparent task example
This commit is contained in:
parent
3346a30ce2
commit
00bdf88b63
@ -28,7 +28,7 @@ int main()
|
||||
for (int h = 0; h < NUM_VS; h++) {
|
||||
// Generate transparent task to establish dependences
|
||||
// between child tasks that don't share the same parent.
|
||||
#pragma omp task depend(inout:M[:]) transparent(omp_impex)
|
||||
#pragma omp task depend(inout:h) transparent(omp_impex)
|
||||
my_func(M, v[h]);
|
||||
}
|
||||
|
||||
|
@ -20,7 +20,7 @@ program main
|
||||
do h = 0, NUM_VS-1
|
||||
! Generate transparent task to establish dependences
|
||||
! between child tasks that don't share the same parent.
|
||||
!$omp task depend(inout:M) transparent(omp_impex)
|
||||
!$omp task depend(inout:h) transparent(omp_impex)
|
||||
call my_func(M, v(:,h))
|
||||
!$omp end task
|
||||
end do
|
||||
|
Loading…
x
Reference in New Issue
Block a user