Skip to content

Commit d57c591

Browse files
committed
Changes for review
Lowercase openmp pragmas
1 parent 96095dd commit d57c591

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

fpm/src/fpm_backend.f90

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,20 @@ subroutine build_package(model)
4242
do i=1,size(schedule_ptr)-1
4343

4444
! Build targets in schedule region i
45-
!$OMP PARALLEL DO DEFAULT(SHARED)
45+
!$omp parallel do default(shared)
4646
do j=schedule_ptr(i),(schedule_ptr(i+1)-1)
4747

4848
call build_target(model,queue(j)%ptr)
4949

5050
end do
51-
!$OMP END PARALLEL DO
5251

5352
end do
5453

5554
end subroutine build_package
5655

5756

5857
!> Topologically sort a target for scheduling by
59-
!> recursing over it's dependencies.
58+
!> recursing over its dependencies.
6059
!>
6160
!> Checks disk-cached source hashes to determine if objects are
6261
!> up-to-date. Up-to-date sources are tagged as skipped.

0 commit comments

Comments
 (0)