@@ -15,7 +15,6 @@ Implemented in this package (the `ClusterManagers.jl` package):
1515
1616| Job queue system | Command to add processors |
1717| ---------------- | ------------------------- |
18- | Load Sharing Facility (LSF) | ` addprocs_lsf(np::Integer; bsub_flags=``, ssh_cmd=``) ` or ` addprocs(LSFManager(np, bsub_flags, ssh_cmd, retry_delays, throttle)) ` |
1918| Sun Grid Engine (SGE) via ` qsub ` | ` addprocs_sge(np::Integer; qsub_flags=``) ` or ` addprocs(SGEManager(np, qsub_flags)) ` |
2019| Sun Grid Engine (SGE) via ` qrsh ` | ` addprocs_qrsh(np::Integer; qsub_flags=``) ` or ` addprocs(QRSHManager(np, qsub_flags)) ` |
2120| PBS (Portable Batch System) | ` addprocs_pbs(np::Integer; qsub_flags=``) ` or ` addprocs(PBSManager(np, qsub_flags)) ` |
@@ -30,6 +29,7 @@ Implemented in external packages:
3029
3130| Job queue system | Command to add processors |
3231| ---------------- | ------------------------- |
32+ | Load Sharing Facility (LSF) via [ LSFClusterManager.jl] ( https://github.com/JuliaParallel/LSFClusterManager.jl ) | ` addprocs_lsf(np::Integer; bsub_flags=``, ssh_cmd=``) ` or ` addprocs(LSFManager(np, bsub_flags, ssh_cmd, retry_delays, throttle)) ` |
3333| Kubernetes (K8s) via [ K8sClusterManagers.jl] ( https://github.com/beacon-biosignals/K8sClusterManagers.jl ) | ` addprocs(K8sClusterManager(np; kwargs...)) ` |
3434| Azure scale-sets via [ AzManagers.jl] ( https://github.com/ChevronETC/AzManagers.jl ) | ` addprocs(vmtemplate, n; kwargs...) ` |
3535
@@ -132,11 +132,6 @@ Julia workers can frequently timeout waiting for the standard output files to ap
132132In this case, it's better to use the ` QRSHManager ` , which uses SGE's ` qrsh `
133133command to bypass the filesystem and captures STDOUT directly.
134134
135- ### Load Sharing Facility (LSF)
136-
137- ` LSFManager ` supports IBM's scheduler. See the ` addprocs_lsf ` docstring
138- for more information.
139-
140135### Using ` LocalAffinityManager ` (for pinning local workers to specific cores)
141136
142137- Linux only feature.
0 commit comments