From aa7d9bcba3956a306b2e794dcecdd679b2221e3b Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Thu, 2 Jan 2025 01:13:01 -0500 Subject: [PATCH] README: Clarify that SGE = Sun Grid Engine, and clarify that `addprocs_sge` uses `qsub` (#225) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 272b154..ce1f7f4 100755 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ Implemented in this package (the `ClusterManagers.jl` package): | Job queue system | Command to add processors | | ---------------- | ------------------------- | | Load Sharing Facility (LSF) | `addprocs_lsf(np::Integer; bsub_flags=``, ssh_cmd=``)` or `addprocs(LSFManager(np, bsub_flags, ssh_cmd, retry_delays, throttle))` | -| Sun Grid Engine | `addprocs_sge(np::Integer; qsub_flags=``)` or `addprocs(SGEManager(np, qsub_flags))` | -| SGE via qrsh | `addprocs_qrsh(np::Integer; qsub_flags=``)` or `addprocs(QRSHManager(np, qsub_flags))` | +| Sun Grid Engine (SGE) via `qsub` | `addprocs_sge(np::Integer; qsub_flags=``)` or `addprocs(SGEManager(np, qsub_flags))` | +| Sun Grid Engine (SGE) via `qrsh` | `addprocs_qrsh(np::Integer; qsub_flags=``)` or `addprocs(QRSHManager(np, qsub_flags))` | | PBS | `addprocs_pbs(np::Integer; qsub_flags=``)` or `addprocs(PBSManager(np, qsub_flags))` | | Scyld | `addprocs_scyld(np::Integer)` or `addprocs(ScyldManager(np))` | | HTCondor | `addprocs_htc(np::Integer)` or `addprocs(HTCManager(np))` |