fix transparent task example

This commit is contained in:
Henry Jin 2024-11-14 08:08:37 -08:00
parent 3346a30ce2
commit 00bdf88b63
2 changed files with 2 additions and 2 deletions

View File

@ -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]);
}

View File

@ -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