10
0
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-24 06:02:26 +02:00
QuantumPackage/src/utils/set_multiple_levels_omp.irp.f

17 lines
335 B
Fortran
Raw Normal View History

2021-11-19 22:39:59 +01:00
subroutine set_multiple_levels_omp()
! Doc : idk
implicit none
IRP_IF SET_MAX_ACT
2021-11-23 10:33:37 +01:00
!print*,'SET_MAX_ACT: True, call omp_set_max_active_levels(5)'
call omp_set_max_active_levels(5)
IRP_ENDIF
IRP_IF SET_NESTED
2021-11-23 10:33:37 +01:00
!print*,'SET_NESTED: True, call omp_set_nested(.True.)'
call omp_set_nested(.True.)
IRP_ENDIF
end