File: RcppParallel-package.R

package info (click to toggle)
r-cran-rcppparallel 5.1.6%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 544 kB
  • sloc: cpp: 1,848; sh: 19; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 960 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

#' Parallel programming tools for Rcpp
#' 
#' High level functions for doing parallel programming with Rcpp.  For example,
#' the `parallelFor()` function can be used to convert the work of a
#' standard serial "for" loop into a parallel one, and the `parallelReduce()`
#' function can be used for accumulating aggregate or other values.
#' 
#' The high level interface enables safe and robust parallel programming
#' without direct manipulation of operating system threads. On Windows, macOS,
#' and Linux systems the underlying implementation is based on Intel TBB
#' (Threading Building Blocks). On other platforms, a less-performant fallback
#' implementation based on the TinyThread library is used.
#' 
#' For additional documentation, see the package website at:
#' 
#' <https://rcppcore.github.io/RcppParallel/>
#' 
#' 
#' @name RcppParallel-package
#' @docType package
#' @aliases RcppParallel RcppParallel-package
#' @keywords package parallel
NULL