Skip to content

Commit e761ac0

Browse files
authored
Rename this package from LSFClusterManagers.jl (plural) to LSFClusterManager.jl (singular) (#16)
Ref #5.
1 parent 73ba91f commit e761ac0

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "LSFClusterManagers"
1+
name = "LSFClusterManager"
22
uuid = "af02cf76-cbe3-4eeb-96a8-af9391005858"
33
version = "1.0.0-DEV"
44

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# LSFClusterManagers.jl
1+
# LSFClusterManager.jl
22

3-
The `LSFClusterManagers.jl` package implements code for the LSF (Load Sharing Facility) compute cluster job queue system.
3+
The `LSFClusterManager.jl` package implements code for the LSF (Load Sharing Facility) compute cluster job queue system.
44

5-
`LSFClusterManagers.LSFManager` supports IBM's scheduler. See the `addprocs_lsf` docstring
5+
`LSFClusterManager.LSFManager` supports IBM's scheduler. See the `addprocs_lsf` docstring
66
for more information.
77

8-
Implemented in this package (the `LSFClusterManagers.jl` package):
8+
Implemented in this package (the `LSFClusterManager.jl` package):
99

1010
| Job queue system | Command to add processors |
1111
| ---------------- | ------------------------- |
12-
| Load Sharing Facility (LSF) | `addprocs_lsf(np::Integer; bsub_flags=``, ssh_cmd=``)` or `addprocs(LSFClusterManagers.LSFManager(np, bsub_flags, ssh_cmd, retry_delays, throttle))` |
12+
| Load Sharing Facility (LSF) | `addprocs_lsf(np::Integer; bsub_flags=``, ssh_cmd=``)` or `addprocs(LSFClusterManager.LSFManager(np, bsub_flags, ssh_cmd, retry_delays, throttle))` |
1313

1414
The functionality in this package originally useed to live in [`ClusterManagers.jl`](https://github.com/JuliaParallel/ClusterManagers.jl).

src/LSFClusterManagers.jl renamed to src/LSFClusterManager.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module LSFClusterManagers
1+
module LSFClusterManager
22

33
using Distributed
44
using Sockets
@@ -12,4 +12,4 @@ worker_arg() = `--worker=$(worker_cookie())`
1212

1313
include("lsf.jl")
1414

15-
end
15+
end # module

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import LSFClusterManagers
1+
import LSFClusterManager
22
import Test
33

44
import Distributed
@@ -11,15 +11,15 @@ using Distributed: remotecall_fetch, @spawnat
1111
using Test: @testset, @test, @test_skip
1212

1313
# LSF:
14-
using LSFClusterManagers: addprocs_lsf, LSFManager
14+
using LSFClusterManager: addprocs_lsf, LSFManager
1515

1616
const test_args = lowercase.(strip.(ARGS))
1717

1818
@info "" test_args
1919

2020
lsf_is_installed() = !isnothing(Sys.which("bsub"))
2121

22-
@testset "LSFClusterManagers.jl" begin
22+
@testset "LSFClusterManager.jl" begin
2323
if lsf_is_installed()
2424
@info "Running the LSF tests..." Sys.which("bsub")
2525
include("lsf.jl")

0 commit comments

Comments
 (0)