Skip to content

Commit 2c37cd4

Browse files
Updated 'gh-pages' from docs/ folder
1 parent 68acf0a commit 2c37cd4

53 files changed

Lines changed: 208 additions & 163 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

404.html

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

CONDUCT.html

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

CONTRIBUTING.html

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

OVERVIEW.html

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

articles/future.batchtools.html

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

articles/future.batchtools.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Here is an example of how to evaluate R expressions on a Slurm
66
high-performance computing (HPC) cluster from within R.
77

88
``` r
9+
910
library(future)
1011

1112
# Limit runtime to 10 minutes and memory to 400 MiB per future,
@@ -59,6 +60,7 @@ by parallel R workers launched on different compute nodes by the
5960
specified job scheduler:
6061

6162
``` r
63+
6264
library(future)
6365
plan(future.batchtools::batchtools_slurm)
6466

@@ -87,6 +89,7 @@ used. *The user has full control of how futures are evaluated*. For
8789
instance, to use local batchtools futures, run the demo as:
8890

8991
``` r
92+
9093
library(future)
9194
plan(future.batchtools::batchtools_local)
9295
demo("mandelbrot", package = "future", ask = FALSE)
@@ -99,13 +102,13 @@ for all batchtools backends. Below are the most common types of
99102
batchtools backends. For other types of parallel and distributed
100103
backends, please see <https://www.futureverse.org/backends.html>.
101104

102-
| Backend | Description | Alternative in future package |
103-
|:-----------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------|
104-
| `batchtools_lsf` | Futures are evaluated via a [Load Sharing Facility (LSF)](https://en.wikipedia.org/wiki/Platform_LSF) job scheduler | N/A |
105-
| `batchtools_openlava` | Futures are evaluated via an [OpenLava](https://en.wikipedia.org/wiki/OpenLava) job scheduler | N/A |
106-
| `batchtools_sge` | Futures are evaluated via a [Sun/Son of/Oracle/Univa/Altair Grid Engine (SGE)](https://en.wikipedia.org/wiki/Oracle_Grid_Engine) job scheduler | N/A |
107-
| `batchtools_slurm` | Futures are evaluated via a [Slurm](https://en.wikipedia.org/wiki/Slurm_Workload_Manager) job scheduler | N/A |
108-
| `batchtools_torque` | Futures are evaluated via a [TORQUE](https://en.wikipedia.org/wiki/TORQUE) / PBS job scheduler | N/A |
109-
| `batchtools_custom` | Futures are evaluated via a custom batchtools configuration R script or via a set of cluster functions | N/A |
110-
| `batchtools_multicore` | parallel evaluation by forking the current R process | `plan(multicore)` |
111-
| `batchtools_local` | sequential evaluation in a separate R process (on current machine) | `plan(cluster, workers = I(1))` |
105+
| Backend | Description | Alternative in future package |
106+
|:---|:---|:---|
107+
| `batchtools_lsf` | Futures are evaluated via a [Load Sharing Facility (LSF)](https://en.wikipedia.org/wiki/Platform_LSF) job scheduler | N/A |
108+
| `batchtools_openlava` | Futures are evaluated via an [OpenLava](https://en.wikipedia.org/wiki/OpenLava) job scheduler | N/A |
109+
| `batchtools_sge` | Futures are evaluated via a [Sun/Son of/Oracle/Univa/Altair Grid Engine (SGE)](https://en.wikipedia.org/wiki/Oracle_Grid_Engine) job scheduler | N/A |
110+
| `batchtools_slurm` | Futures are evaluated via a [Slurm](https://en.wikipedia.org/wiki/Slurm_Workload_Manager) job scheduler | N/A |
111+
| `batchtools_torque` | Futures are evaluated via a [TORQUE](https://en.wikipedia.org/wiki/TORQUE) / PBS job scheduler | N/A |
112+
| `batchtools_custom` | Futures are evaluated via a custom batchtools configuration R script or via a set of cluster functions | N/A |
113+
| `batchtools_multicore` | parallel evaluation by forking the current R process | `plan(multicore)` |
114+
| `batchtools_local` | sequential evaluation in a separate R process (on current machine) | `plan(cluster, workers = I(1))` |

articles/index.html

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

authors.html

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

index.html

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

0 commit comments

Comments
 (0)