Skip to content

A framework for out-of-core and parallel execution

License

Notifications You must be signed in to change notification settings

nucklass/Dagger.jl

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dagger.jl

A framework for out-of-core and parallel computing

Documentation Build Status
Build Status

At the core of Dagger.jl is a scheduler heavily inspired by Dask. It can run computations represented as directed-acyclic-graphs (DAGs) efficiently on many Julia worker processes and threads, as well as GPUs via DaggerGPU.jl.

Installation

You can install Dagger by typing

julia> ] add Dagger

Usage

Once installed, the Dagger package can by used like so

using Distributed; addprocs() # get us some workers
using Dagger

# do some stuff in parallel!
a = Dagger.@spawn 1+3
b = Dagger.@spawn rand(a, 4)
c = Dagger.@spawn sum(b)
fetch(c) # some number!

Acknowledgements

We thank DARPA, Intel, and the NIH for supporting this work at MIT.

About

A framework for out-of-core and parallel execution

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Julia 100.0%