From 7818803decc78b2d23cc0f7694225de42118c8ac Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 9 Feb 2025 19:09:52 -0500 Subject: [PATCH] Fix header levels --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 50d8a3f..370828d 100755 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ The following managers are implemented in this package (the `ClusterManagers.jl` | ---------------- | ------------------------- | | Local manager with CPU affinity setting | `addprocs(LocalAffinityManager(;np=CPU_CORES, mode::AffinityMode=BALANCED, affinities=[]); kwargs...)` | -## Implemented in external packages +### Implemented in external packages | Job queue system | External package | Command to add processors | | ---------------- | ---------------- | ------------------------- | @@ -26,7 +26,7 @@ The following managers are implemented in this package (the `ClusterManagers.jl` | Kubernetes (K8s) | [K8sClusterManagers.jl](https://github.com/beacon-biosignals/K8sClusterManagers.jl) | `addprocs(K8sClusterManager(np; kwargs...))` | | Azure scale-sets | [AzManagers.jl](https://github.com/ChevronETC/AzManagers.jl) | `addprocs(vmtemplate, n; kwargs...)` | -## Not currently being actively maintained +### Not currently being actively maintained > [!WARNING] > The following managers are not currently being actively maintained or tested. @@ -42,10 +42,12 @@ The following managers are implemented in this package (the `ClusterManagers.jl` | Scyld | `addprocs_scyld(np::Integer)` or `addprocs(ScyldManager(np))` | | HTCondor | `addprocs_htc(np::Integer)` or `addprocs(HTCManager(np))` | -## Custom managers +### Custom managers 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). +## Notes on specific managers + ### Slurm: please see [SlurmClusterManager.jl](https://github.com/JuliaParallel/SlurmClusterManager.jl) For Slurm, please see the [SlurmClusterManager.jl](https://github.com/JuliaParallel/SlurmClusterManager.jl) package.