-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename the package from
LSFClusterManager.jl
to `LSFClusterManagers…
….jl` (#9) Ref #5. I think the name of this package should probably be pluralized, based on the [package naming guidelines here](https://pkgdocs.julialang.org/v1/creating-packages/#Package-naming-rules): > Packages that provide most of their functionality in association with a new type should have pluralized names.
- Loading branch information
1 parent
7e0dae4
commit c0fa1ee
Showing
4 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# LSFClusterManager.jl | ||
# LSFClusterManagers.jl | ||
|
||
The `LSFClusterManager.jl` package implements code for the LSF (Load Sharing Facility) compute cluster job queue system. | ||
The `LSFClusterManagers.jl` package implements code for the LSF (Load Sharing Facility) compute cluster job queue system. | ||
|
||
`LSFClusterManager.LSFManager` supports IBM's scheduler. See the `addprocs_lsf` docstring | ||
`LSFClusterManagers.LSFManager` supports IBM's scheduler. See the `addprocs_lsf` docstring | ||
for more information. | ||
|
||
Implemented in this package (the `LSFClusterManager.jl` package): | ||
Implemented in this package (the `LSFClusterManagers.jl` package): | ||
|
||
| Job queue system | Command to add processors | | ||
| ---------------- | ------------------------- | | ||
| Load Sharing Facility (LSF) | `addprocs_lsf(np::Integer; bsub_flags=``, ssh_cmd=``)` or `addprocs(LSFClusterManager.LSFManager(np, bsub_flags, ssh_cmd, retry_delays, throttle))` | | ||
| Load Sharing Facility (LSF) | `addprocs_lsf(np::Integer; bsub_flags=``, ssh_cmd=``)` or `addprocs(LSFClusterManagers.LSFManager(np, bsub_flags, ssh_cmd, retry_delays, throttle))` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module LSFClusterManager | ||
module LSFClusterManagers | ||
|
||
using Distributed | ||
using Sockets | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters