-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
42 lines (42 loc) · 1.26 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
40
41
42
Package: easypar
Type: Package
Title: Easy parallaleization of R functions.
Version: 1.0.0
Author: Giulio Caravagna
Maintainer: Giulio Caravagna <[email protected]>
Authors@R: c(
person("Giulio", "Caravagna", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-4240-3265")
),
person("Salvatore", "Milite", role=c("ctb"), email="[email protected]")
)
Description: The easypar package makes it easy to implement parallel computations in R.
To use this package, you need to have a function that
carries out your desired computation. easypar will take care of the
burden of turning that function into a runnable parallel piece
of code, offering a soilution based on the foreach and doParallel
paradigms for parallel computing, or generating array jobs for the popular LSF
workload for distributed high performance computing.
License: GPL (>= 3)
Encoding: UTF-8
LazyData: true
Imports:
doParallel,
parallel,
foreach,
dplyr,
progress,
cli,
tibble,
crayon,
readr,
markdown,
prettydoc
RoxygenNote: 7.2.0
Suggests:
covr,
knitr,
rmarkdown
VignetteBuilder: knitr
URL: https://caravagnalab.github.io/easypar/
BugReports: https://github.com/caravagnalab/easypar/issues