parquet_debug_set_string_max_auto_threads Subroutine

public subroutine parquet_debug_set_string_max_auto_threads(n)

Overrides the ceiling on the AUTOMATIC thread count. Test-only; <= 0 restores the real STRING_MAX_AUTO_THREADS. Public for the same reason its sibling above is.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: n

new ceiling, or <= 0 to restore the real one.


Source Code

    subroutine parquet_debug_set_string_max_auto_threads(n)
        integer, intent(in) :: n !! new ceiling, or <= 0 to restore the real one.
        dbg_string_max_auto = n
    end subroutine parquet_debug_set_string_max_auto_threads