set_threading_mode_ Subroutine

private subroutine set_threading_mode_(threaded)

set the threading mode for the array routines, this will set the use_threaded variable to true or false depending on the input

Usage: call set_threading(.true.) or call set_threading(.false.)

Arguments

Type IntentOptional Attributes Name
logical, intent(in) :: threaded

Called by

proc~~set_threading_mode_~~CalledByGraph proc~set_threading_mode_ set_threading_mode_ interface~set_threading_mode set_threading_mode interface~set_threading_mode->proc~set_threading_mode_

Source Code

   subroutine set_threading_mode_(threaded)
      !! set the threading mode for the array routines, this will set the use_threaded variable
      !! to true or false depending on the input
      !!
      !! Usage: call set_threading(.true.) or call set_threading(.false.)
      logical, intent(in) :: threaded
      use_threaded_default = threaded
   end subroutine set_threading_mode_