Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions micro-benchmarks-fortran/DRB071-targetparallelfor-orig-no.f95
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ program DRB071_targetparallelfor_orig_no
integer :: i, len
integer, dimension(:), allocatable :: a

len = 1000

allocate(a(len))

do i = 1, len
Expand Down
2 changes: 2 additions & 0 deletions micro-benchmarks-fortran/DRB152-missinglock2-orig-gpu-no.f95
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ program DRB152_missinglock2_orig_gpu_no
integer :: var, i
var = 0

call omp_init_lock (lck)

!$omp target map(tofrom:var) device(0)
!$omp teams num_teams(1)
!$omp distribute parallel do
Expand Down