-
Notifications
You must be signed in to change notification settings - Fork 6
/
DESCRIPTION
29 lines (29 loc) · 1.44 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Package: doFuture
Version: 1.0.1-9000
Title: Use Foreach to Parallelize via the Future Framework
Depends:
foreach (>= 1.5.0),
future (>= 1.32.0)
Imports:
future.apply,
globals,
iterators,
parallel,
utils
Suggests:
doRNG (>= 1.8.2),
markdown,
R.rsp
VignetteBuilder:
R.rsp
Authors@R: c(person("Henrik", "Bengtsson",
role = c("aut", "cre", "cph"),
email = "henrikb@braju.com",
comment = c(ORCID = "0000-0002-7579-5165")))
Description: The 'future' package provides a unifying parallelization framework for R that supports many parallel and distributed backends. The 'foreach' package provides a powerful API for iterating over an R expression in parallel. The 'doFuture' package brings the best of the two together. There are two alternative ways to use this package. The recommended approach is to use 'y <- foreach(...) %dofuture% { ... }', which does not require using 'registerDoFuture()' and has many advantages over '%dopar%'. The alternative is the traditional 'foreach' approach by registering the 'foreach' adapter 'registerDoFuture()' and so that 'y <- foreach(...) %dopar% { ... }' runs in parallelizes with the 'future' framework.
License: LGPL (>= 2.1)
LazyLoad: TRUE
URL: https://doFuture.futureverse.org, https://github.com/HenrikBengtsson/doFuture
BugReports: https://github.com/HenrikBengtsson/doFuture/issues
RoxygenNote: 7.2.3
Roxygen: list(markdown = TRUE)