set_threading_mode Subroutine

public 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

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