We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d2b850 commit 588479dCopy full SHA for 588479d
src/auto_detect.jl
@@ -8,13 +8,15 @@ function addprocs_autodetect_current_scheduler(; kwargs...)
8
np = _lsf_get_numtasks()
9
res = LSFClusterManager.addprocs_lsf(np; kwargs...)
10
11
- elseif sched == :sge
12
- np = _sge_get_number_of_tasks()
13
- res = addprocs_sge(np; kwargs...)
14
-
15
- elseif sched == :pbs
16
- np = _torque_get_numtasks()
17
- res = addprocs_pbs(np; kwargs...)
+ # elseif sched == :sge
+ # # SGE is not currently maintained.
+ # np = _sge_get_number_of_tasks()
+ # res = addprocs_sge(np; kwargs...)
+
+ # elseif sched == :pbs
+ # # PBS is not currently maintained.
18
+ # np = _torque_get_numtasks()
19
+ # res = addprocs_pbs(np; kwargs...)
20
21
else
22
error("Unable to auto-detect cluster scheduler: $(sched)")
0 commit comments