-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDESCRIPTION
39 lines (39 loc) · 1.3 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
30
31
32
33
34
35
36
37
38
39
Package: makeParallel
Version: 0.2.1
Date: 2018-07-18
Title: Transform Serial R Code into Parallel R Code
Authors@R: person("Clark", "Fitzgerald", role = c("aut", "cre"),
email = "clarkfitzg@gmail.com",
comment = c(ORCID = "0000-0003-3446-6389"))
Maintainer: Clark Fitzgerald <clarkfitzg@gmail.com>
Depends:
R (>= 3.1.0)
Imports:
methods,
utils,
graphics,
parallel,
codetools,
CodeDepends,
rstatic
Suggests:
igraph,
roxygen2,
knitr,
rmarkdown,
testthat
Description:
Writing parallel R code can be difficult, particularly for code
that is not "embarrassingly parallel".
This experimental package automates the transformation of serial R code
into more efficient parallel versions. It identifies task parallelism by
statically analyzing entire scripts to detect dependencies between
statements. It implements an extensible system for scheduling
and generating new code. It includes a reference implementation of the
'List Scheduling' approach to the general task scheduling problem of scheduling
statements on multiple processors.
License: MIT + file LICENSE
URL: https://github.com/clarkfitzg/makeParallel
BugReports: https://github.com/clarkfitzg/makeParallel
RoxygenNote: 6.1.1
VignetteBuilder: knitr