The R Project SVN R

Rev

Rev 81140 | 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
85532 hornik 24
  \abbr{CRAN}, with some low-level functions renamed and not
81140 luke 25
  exported) and \CRANpkg{snow} (for socket clusters only, but MPI
26
  %% and NWS
27
  clusters generated by \CRANpkg{snow} are also supported). There
71198 ripley 28
  have been many enhancements and bug fixes since 2011.
61433 ripley 29
 
71263 ripley 30
  This package also provides \code{\link{makeForkCluster}} to create
31
  socket clusters by forking (not Windows).
71198 ripley 32
 
57335 ripley 33
  For a complete list of exported functions, use
57380 ripley 34
  \code{library(help = "parallel")}.
56583 ripley 35
}
36
\author{
56742 ripley 37
  Brian Ripley, Luke Tierney and Simon Urbanek
38
 
56583 ripley 39
  Maintainer: R Core Team \email{R-core@r-project.org}
40
}
56660 ripley 41
\seealso{
42
  Parallel computation involves launching worker processes: functions
43
  \code{\link{psnice}} and \code{\link{pskill}} in package \pkg{tools}
57380 ripley 44
  provide means to manage such processes.
56660 ripley 45
}
56583 ripley 46
\keyword{ package }