@@ -406,15 +406,15 @@ which is useful for debugging and profiling.
406406 which is the number of processes to use, as well as the `lazy` keyword argument.
407407 For example, if set up on a slurm cluster, you could pass
408408 `addprocs_function = addprocs_slurm`, which will set up slurm processes.
409- - `worker_timeout::Union{Real,Nothing}=nothing`: Timeout in seconds for worker processes
410- to establish connection with the master process. If `JULIA_WORKER_TIMEOUT` is already set,
411- that value is used. Otherwise defaults to `min(60, numprocs^2)`. When explicitly provided,
412- this temporarily overrides `JULIA_WORKER_TIMEOUT` only during worker creation.
413409- `heap_size_hint_in_bytes::Union{Int,Nothing}=nothing`: On Julia 1.9+, you may set the `--heap-size-hint`
414410 flag on Julia processes, recommending garbage collection once a process
415411 is close to the recommended size. This is important for long-running distributed
416412 jobs where each process has an independent memory, and can help avoid
417413 out-of-memory errors. By default, this is set to `Sys.free_memory() / numprocs`.
414+ - `worker_timeout::Union{Real,Nothing}=nothing`: Timeout in seconds for worker processes
415+ to establish connection with the master process. If `JULIA_WORKER_TIMEOUT` is already set,
416+ that value is used. Otherwise defaults to `min(60, numprocs^2)`. When explicitly provided,
417+ this temporarily overrides `JULIA_WORKER_TIMEOUT` only during worker creation.
418418- `worker_imports::Union{Vector{Symbol},Nothing}=nothing`: If you want to import
419419 additional modules on each worker, pass them here as a vector of symbols.
420420 By default some of the extensions will automatically be loaded when needed.
@@ -473,8 +473,8 @@ function equation_search(
473473 numprocs:: Union{Int,Nothing} = nothing ,
474474 procs:: Union{Vector{Int},Nothing} = nothing ,
475475 addprocs_function:: Union{Function,Nothing} = nothing ,
476- worker_timeout:: Union{Real,Nothing} = nothing ,
477476 heap_size_hint_in_bytes:: Union{Integer,Nothing} = nothing ,
477+ worker_timeout:: Union{Real,Nothing} = nothing ,
478478 worker_imports:: Union{Vector{Symbol},Nothing} = nothing ,
479479 runtests:: Bool = true ,
480480 saved_state= nothing ,
@@ -525,8 +525,8 @@ function equation_search(
525525 numprocs= numprocs,
526526 procs= procs,
527527 addprocs_function= addprocs_function,
528- worker_timeout= worker_timeout,
529528 heap_size_hint_in_bytes= heap_size_hint_in_bytes,
529+ worker_timeout= worker_timeout,
530530 worker_imports= worker_imports,
531531 runtests= runtests,
532532 saved_state= saved_state,
0 commit comments