Skip to content

Commit c9b63f5

Browse files
HELP: Add Wikipedia references for all job schedulers
1 parent 47e0444 commit c9b63f5

11 files changed

+46
-6
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: future.batchtools
2-
Version: 0.12.2-9923
2+
Version: 0.12.2-9924
33
Depends:
44
R (>= 3.2.0),
55
parallelly,

R/batchtools_lsf.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ BatchtoolsLsfFutureBackend <- function(...) {
77
}
88

99

10-
#' A batchtools LSF backend resolves futures in parallel via a LSF job scheduler
10+
#' A batchtools LSF backend resolves futures in parallel via a Load Sharing Facility (LSF) job scheduler
1111
#'
1212
#' @inheritParams BatchtoolsFutureBackend
1313
#' @inheritParams BatchtoolsTemplateFutureBackend
@@ -44,6 +44,9 @@ BatchtoolsLsfFutureBackend <- function(...) {
4444
#' pid <- value(f)
4545
#' message("Worker process ID: ", pid)
4646
#'
47+
#' @references
48+
#' * <https://en.wikipedia.org/wiki/IBM_Spectrum_LSF>
49+
#'
4750
#' @export
4851
batchtools_lsf <- function(..., template = "lsf") {
4952
stop("INTERNAL ERROR: The future.batchtools::batchtools_lsf() must never be called directly")

R/batchtools_openlava.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ BatchtoolsOpenLavaFutureBackend <- function(...) {
4343
#' f <- future(Sys.getpid())
4444
#' pid <- value(f)
4545
#' message("Worker process ID: ", pid)
46-
#'
46+
#'
47+
#' @references
48+
#' * <https://en.wikipedia.org/wiki/OpenLava>
49+
#'
4750
#' @export
4851
batchtools_openlava <- function(..., template = "openlava") {
4952
stop("INTERNAL ERROR: The future.batchtools::batchtools_openlava() must never be called directly")

R/batchtools_sge.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ BatchtoolsSGEFutureBackend <- function(...) {
4343
#' pid <- value(f)
4444
#' message("Worker process ID: ", pid)
4545
#'
46+
#' @references
47+
#' * <https://en.wikipedia.org/wiki/Oracle_Grid_Engine>
48+
#'
4649
#' @export
4750
batchtools_sge <- function(..., template = "sge") {
4851
stop("INTERNAL ERROR: The future.batchtools::batchtools_sge() must never be called directly")

R/batchtools_slurm.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ BatchtoolsSlurmFutureBackend <- function(...) {
4343
#' f <- future(Sys.getpid())
4444
#' pid <- value(f)
4545
#' message("Worker process ID: ", pid)
46-
#'
46+
#'
47+
#' @references
48+
#' * <https://en.wikipedia.org/wiki/Slurm_Workload_Manager>
49+
#'
4750
#' @export
4851
batchtools_slurm <- function(..., template = "slurm") {
4952
stop("INTERNAL ERROR: The future.batchtools::batchtools_slurm() must never be called directly")

R/batchtools_torque.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ BatchtoolsTorqueFutureBackend <- function(...) {
4343
#' pid <- value(f)
4444
#' message("Worker process ID: ", pid)
4545
#'
46+
#' @references
47+
#' * <https://en.wikipedia.org/wiki/TORQUE>
48+
#'
4649
#' @export
4750
batchtools_torque <- function(..., template = "torque") {
4851
stop("INTERNAL ERROR: The future.batchtools::batchtools_torque() must never be called directly")

man/batchtools_lsf.Rd

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/batchtools_openlava.Rd

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/batchtools_sge.Rd

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/batchtools_slurm.Rd

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)