-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathDESCRIPTION
More file actions
122 lines (122 loc) · 4.05 KB
/
DESCRIPTION
File metadata and controls
122 lines (122 loc) · 4.05 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
Package: future
Version: 1.70.0-9000
Title: Unified Parallel and Distributed Processing in R for Everyone
Depends:
R (>= 3.2.0)
Imports:
digest,
globals (>= 0.18.0),
listenv (>= 0.8.0),
parallel,
parallelly (>= 1.44.0),
tools,
utils
Suggests:
methods,
RhpcBLASctl,
R.rsp,
markdown
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 purpose of this package is to provide a lightweight and
unified Future API for sequential and parallel processing of R
expression via futures. The simplest way to evaluate an expression
in parallel is to use `x %<-% { expression }` with `plan(multisession)`.
This package implements sequential, multicore, multisession, and
cluster futures. With these, R expressions can be evaluated on the
local machine, in parallel a set of local machines, or distributed
on a mix of local and remote machines.
Extensions to this package implement additional backends for
processing futures via compute cluster schedulers, etc.
Because of its unified API, there is no need to modify any code in order
switch from sequential on the local machine to, say, distributed
processing on a remote compute cluster.
Another strength of this package is that global variables and functions
are automatically identified and exported as needed, making it
straightforward to tweak existing code to make use of futures.
License: LGPL (>= 2.1)
LazyLoad: TRUE
ByteCompile: TRUE
URL: https://future.futureverse.org, https://github.com/futureverse/future
BugReports: https://github.com/futureverse/future/issues
Language: en-US
Encoding: UTF-8
RoxygenNote: 7.3.3
Roxygen: list(markdown = TRUE)
Collate:
'000.bquote.R'
'000.import.R'
'000.re-exports.R'
'009.deprecation.R'
'010.tweakable.R'
'010.utils-parallelly.R'
'backend_api-01-FutureBackend-class.R'
'backend_api-03.MultiprocessFutureBackend-class.R'
'backend_api-11.ClusterFutureBackend-class.R'
'backend_api-11.MulticoreFutureBackend-class.R'
'backend_api-11.SequentialFutureBackend-class.R'
'backend_api-13.MultisessionFutureBackend-class.R'
'backend_api-ConstantFuture-class.R'
'backend_api-Future-class.R'
'backend_api-FutureRegistry.R'
'backend_api-UniprocessFuture-class.R'
'backend_api-evalFuture.R'
'core_api-cancel.R'
'core_api-future.R'
'core_api-reset.R'
'core_api-resolved.R'
'core_api-value.R'
'delayed_api-futureAssign.R'
'delayed_api-futureOf.R'
'demo_api-mandelbrot.R'
'infix_api-01-futureAssign_OP.R'
'infix_api-02-globals_OP.R'
'infix_api-03-seed_OP.R'
'infix_api-04-stdout_OP.R'
'infix_api-05-conditions_OP.R'
'infix_api-06-lazy_OP.R'
'infix_api-07-label_OP.R'
'infix_api-08-plan_OP.R'
'infix_api-09-tweak_OP.R'
'protected_api-FutureCondition-class.R'
'protected_api-FutureGlobals-class.R'
'protected_api-FutureResult-class.R'
'protected_api-futures.R'
'protected_api-globals.R'
'protected_api-journal.R'
'protected_api-resolve.R'
'protected_api-result.R'
'protected_api-signalConditions.R'
'testme.R'
'utils-basic.R'
'utils-conditions.R'
'utils-connections.R'
'utils-debug.R'
'utils-immediateCondition.R'
'utils-marshalling.R'
'utils-objectSize.R'
'utils-options.R'
'utils-prune_pkg_code.R'
'utils-registerClusterTypes.R'
'utils-rng_utils.R'
'utils-signalEarly.R'
'utils-stealth_sample.R'
'utils-sticky_globals.R'
'utils-tweakExpression.R'
'utils-uuid.R'
'utils-whichIndex.R'
'utils_api-backtrace.R'
'utils_api-capture_journals.R'
'utils_api-futureCall.R'
'utils_api-futureSessionInfo.R'
'utils_api-makeClusterFuture.R'
'utils_api-minifuture.R'
'utils_api-nbrOfWorkers.R'
'utils_api-plan.R'
'utils_api-plan-with.R'
'utils_api-sessionDetails.R'
'utils_api-tweak.R'
'zzz.R'