You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> The following managers are not currently being actively maintained or tested.
35
+
>
36
+
> We are seeking maintainers for the following managers. If you are an active user of any of the following job queue systems listed and are interested in being a maintainer, please open a GitHub issue - say that you are interested in being a maintainer, and specify which job queue system you use.
37
+
>
38
+
39
+
| Job queue system | Command to add processors |
40
+
| ---------------- | ------------------------- |
41
+
| Sun Grid Engine (SGE) via `qsub`|`addprocs_sge(np::Integer; qsub_flags=``)` or `addprocs(SGEManager(np, qsub_flags))`|
42
+
| Sun Grid Engine (SGE) via `qrsh`|`addprocs_qrsh(np::Integer; qsub_flags=``)` or `addprocs(QRSHManager(np, qsub_flags))`|
43
+
| PBS (Portable Batch System) |`addprocs_pbs(np::Integer; qsub_flags=``)` or `addprocs(PBSManager(np, qsub_flags))`|
44
+
| Scyld |`addprocs_scyld(np::Integer)` or `addprocs(ScyldManager(np))`|
45
+
| HTCondor |`addprocs_htc(np::Integer)` or `addprocs(HTCManager(np))`|
46
+
47
+
### Custom managers
48
+
36
49
You can also write your own custom cluster manager; see the instructions in the [Julia manual](https://docs.julialang.org/en/v1/manual/distributed-computing/#ClusterManagers).
37
50
51
+
## Notes on specific managers
52
+
38
53
### Slurm: please see [SlurmClusterManager.jl](https://github.com/JuliaParallel/SlurmClusterManager.jl)
39
54
40
55
For Slurm, please see the [SlurmClusterManager.jl](https://github.com/JuliaParallel/SlurmClusterManager.jl) package.
0 commit comments