9
1
mirror of https://github.com/QuantumPackage/qp2.git synced 2024-06-18 18:45:19 +02:00
qp2/src/utils/intel_check_omp.irp.f
2021-11-18 09:20:03 +01:00

17 lines
288 B
Fortran

subroutine intel_check_omp()
! Doc : idk
implicit none
IRP_IF INTEL_CHECK_OMP
call omp_set_max_active_levels(5)
print*,'INTEL_CHECK_OMP: true'
IRP_ELSE
call omp_set_nested(.True.)
!call omp_set_nested(.False.)
print*,'INTEL_CHECK_OMP: false'
IRP_ENDIF
end