Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ogs
inf
Guix
Commits
b3080cdd
Unverified
Commit
b3080cdd
authored
6 years ago
by
Ricardo Wurmus
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add r-future.
* gnu/packages/cran.scm (r-future): New variable.
parent
226294a4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/cran.scm
+32
-0
32 additions, 0 deletions
gnu/packages/cran.scm
with
32 additions
and
0 deletions
gnu/packages/cran.scm
+
32
−
0
View file @
b3080cdd
...
...
@@ -10558,3 +10558,35 @@ (define-public r-globals
simple as possible to identify global objects for the purpose of exporting
them in distributed compute environments."
)
(
license
license:lgpl2
.
1
+
)))
(
define-public
r-future
(
package
(
name
"r-future"
)
(
version
"1.11.1.1"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
cran-uri
"future"
version
))
(
sha256
(
base32
"1s4lyqg4mm1drzc6czaalmhmxfjgp4nznb14ql5xzny9rprgz43i"
))))
(
build-system
r-build-system
)
(
propagated-inputs
`
((
"r-digest"
,
r-digest
)
(
"r-globals"
,
r-globals
)
(
"r-listenv"
,
r-listenv
)))
(
native-inputs
`
((
"r-r-rsp"
,
r-r-rsp
)))
; vignette builder
(
home-page
"https://github.com/HenrikBengtsson/future"
)
(
synopsis
"Unified parallel and distributed processing in R"
)
(
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.
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 to switch from sequential on
the local machine to, say, distributed processing on a remote compute cluster."
)
(
license
license:lgpl2
.
1
+
)))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment