Skip to content

Commit 588479d

Browse files
authored
SGE and PBS aren't currently maintained
1 parent 6d2b850 commit 588479d

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/auto_detect.jl

+9-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ function addprocs_autodetect_current_scheduler(; kwargs...)
88
np = _lsf_get_numtasks()
99
res = LSFClusterManager.addprocs_lsf(np; kwargs...)
1010

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...)
11+
# elseif sched == :sge
12+
# # SGE is not currently maintained.
13+
# np = _sge_get_number_of_tasks()
14+
# res = addprocs_sge(np; kwargs...)
15+
16+
# elseif sched == :pbs
17+
# # PBS is not currently maintained.
18+
# np = _torque_get_numtasks()
19+
# res = addprocs_pbs(np; kwargs...)
1820

1921
else
2022
error("Unable to auto-detect cluster scheduler: $(sched)")

0 commit comments

Comments
 (0)