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
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ Implemented in this package (the `ClusterManagers.jl` package):
21
21
| PBS (Portable Batch System) |`addprocs_pbs(np::Integer; qsub_flags=``)` or `addprocs(PBSManager(np, qsub_flags))`|
22
22
| Scyld |`addprocs_scyld(np::Integer)` or `addprocs(ScyldManager(np))`|
23
23
| HTCondor[^1]|`addprocs_htc(np::Integer)` or `addprocs(HTCManager(np))`|
24
-
| Slurm |`addprocs_slurm(np::Integer; kwargs...)` or `addprocs(SlurmManager(np); kwargs...)`|
24
+
| Slurm (deprecated - consider using [SlurmClusterManager.jl](https://github.com/kleinhenz/SlurmClusterManager.jl) instead) |`addprocs_slurm(np::Integer; kwargs...)` or `addprocs(SlurmManager(np); kwargs...)`|
25
25
| Local manager with CPU affinity setting |`addprocs(LocalAffinityManager(;np=CPU_CORES, mode::AffinityMode=BALANCED, affinities=[]); kwargs...)`|
26
26
27
27
[^1]: HTCondor was previously named Condor.
@@ -93,7 +93,7 @@ julia> From worker 2: compute-6
93
93
From worker 3: compute-6
94
94
```
95
95
96
-
Some clusters require the user to specify a list of required resources.
96
+
Some clusters require the user to specify a list of required resources.
97
97
For example, it may be necessary to specify how much memory will be needed by the job - see this [issue](https://github.com/JuliaLang/julia/issues/10390).
98
98
The keyword `qsub_flags` can be used to specify these and other options.
99
99
Additionally the keyword `wd` can be used to specify the working directory (which defaults to `ENV["HOME"]`).
By default, the printed command uses the absolute path to the current Julia executable and activates the same project as the current session. You can change either of these defaults by passing `printing_kwargs=(absolute_exename=false, same_project=false))` to the first form of the `ElasticManager` constructor.
183
+
By default, the printed command uses the absolute path to the current Julia executable and activates the same project as the current session. You can change either of these defaults by passing `printing_kwargs=(absolute_exename=false, same_project=false))` to the first form of the `ElasticManager` constructor.
184
184
185
-
Once workers are connected, you can print the `em` object again to see them added to the list of active workers.
185
+
Once workers are connected, you can print the `em` object again to see them added to the list of active workers.
0 commit comments