The R Project SVN R

Rev

Rev 71198 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
56583 ripley 1
% File src/library/parallel/man/parallel-package.Rd
68948 ripley 2
% Part of the R package, https://www.R-project.org
71198 ripley 3
% Copyright 2011-2016 R Core Team
56583 ripley 4
% Distributed under GPL 2 or later
5
 
6
\name{parallel-package}
7
\alias{parallel-package}
8
\alias{parallel}
9
\docType{package}
10
\title{
57335 ripley 11
  Support for Parallel Computation
56583 ripley 12
}
13
\description{
14
  Support for parallel computation, including random-number generation.
15
}
16
\details{
71198 ripley 17
  This package was first included with \R 2.14.0 in 2011.
56583 ripley 18
 
19
  There is support for multiple RNG streams with the
20
  \samp{"L'Ecuyer-CMRG"} \link{RNG}: see \code{\link{nextRNGStream}}.
56660 ripley 21
 
22
  It contains functionality derived from and pretty much equivalent to
71198 ripley 23
  that contained in packages \pkg{multicore} (formerly on
24
  \acronym{CRAN}, with some low-level functions renamed and not
25
  exported) and \CRANpkg{snow} (for socket clusters only, but MPI and
26
  NWS clusters generated by \CRANpkg{snow} are also supported). There
27
  have been many enhancements and bug fixes since 2011.
61433 ripley 28
 
71263 ripley 29
  This package also provides \code{\link{makeForkCluster}} to create
30
  socket clusters by forking (not Windows).
71198 ripley 31
 
57335 ripley 32
  For a complete list of exported functions, use
57380 ripley 33
  \code{library(help = "parallel")}.
56583 ripley 34
}
35
\author{
56742 ripley 36
  Brian Ripley, Luke Tierney and Simon Urbanek
37
 
56583 ripley 38
  Maintainer: R Core Team \email{R-core@r-project.org}
39
}
56660 ripley 40
\seealso{
41
  Parallel computation involves launching worker processes: functions
42
  \code{\link{psnice}} and \code{\link{pskill}} in package \pkg{tools}
57380 ripley 43
  provide means to manage such processes.
56660 ripley 44
}
56583 ripley 45
\keyword{ package }