We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96095dd commit d57c591Copy full SHA for d57c591
fpm/src/fpm_backend.f90
@@ -42,21 +42,20 @@ subroutine build_package(model)
42
do i=1,size(schedule_ptr)-1
43
44
! Build targets in schedule region i
45
- !$OMP PARALLEL DO DEFAULT(SHARED)
+ !$omp parallel do default(shared)
46
do j=schedule_ptr(i),(schedule_ptr(i+1)-1)
47
48
call build_target(model,queue(j)%ptr)
49
50
end do
51
- !$OMP END PARALLEL DO
52
53
54
55
end subroutine build_package
56
57
58
!> Topologically sort a target for scheduling by
59
-!> recursing over it's dependencies.
+!> recursing over its dependencies.
60
!>
61
!> Checks disk-cached source hashes to determine if objects are
62
!> up-to-date. Up-to-date sources are tagged as skipped.
0 commit comments