Skip to content
Snippets Groups Projects
Commit a9e03b7a authored by David Hrbáč's avatar David Hrbáč
Browse files

R

parent 520237a8
No related branches found
Tags
5 merge requests!368Update prace.md to document the change from qprace to qprod as the default...,!367Update prace.md to document the change from qprace to qprod as the default...,!366Update prace.md to document the change from qprace to qprod as the default...,!323extended-acls-storage-section,!118R
Pipeline #
......@@ -85,7 +85,7 @@ $ R
More information and examples may be obtained directly by reading the documentation available in R
```console
```r
> ?parallel
> library(help = "parallel")
> vignette("parallel")
......@@ -102,7 +102,7 @@ The forking is the most simple to use. Forking family of functions provide paral
Forking example:
```cpp
```r
library(parallel)
#integrand function
......@@ -165,7 +165,7 @@ Static Rmpi programs are executed via mpiexec, as any other MPI programs. Number
Static Rmpi example:
```cpp
```r
library(Rmpi)
#integrand function
......@@ -221,7 +221,7 @@ Dynamic Rmpi programs are executed by calling the R directly. OpenMPI module mus
Dynamic Rmpi example:
```cpp
```r
#integrand function
f <- function(i,h) {
x <- h*(i-0.5)
......@@ -299,7 +299,7 @@ Execution is identical to other dynamic Rmpi programs.
mpi.apply Rmpi example:
```cpp
```r
#integrand function
f <- function(i,h) {
x <- h*(i-0.5)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment