daggergpufusion
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.1%) to scientific vocabulary
Repository
Basic Info
- Host: GitHub
- Owner: johnmaxrin
- License: other
- Language: Julia
- Default Branch: gpu-fusion
- Size: 1.88 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md

A framework for out-of-core and parallel computing
| Documentation | 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.
The *DTable** has been moved out of this repository. You can now find it here.*
Installation
Dagger.jl can be installed using the Julia package manager. Enter the Pkg REPL mode by typing "]" in the Julia REPL and then run:
julia
pkg> add Dagger
Or, equivalently, install Dagger via the Pkg API:
julia
julia> import Pkg; Pkg.add("Dagger")
Usage
Once installed, the Dagger package can be loaded with using Dagger, or if
you want to use Dagger for distributed computing, it can be loaded as:
julia
using Distributed; addprocs() # Add one Julia worker per CPU core
using Dagger
You can run the following example to see how Dagger exposes easy parallelism:
```julia
This runs first:
a = Dagger.@spawn rand(100, 100)
These run in parallel:
b = Dagger.@spawn sum(a) c = Dagger.@spawn prod(a)
Finally, this runs:
wait(Dagger.@spawn println("b: ", b, ", c: ", c)) ```
Use Cases
Dagger can support a variety of use cases that benefit from easy, automatic parallelism, such as:
This isn't an exhaustive list of the use cases that Dagger supports. There are more examples in the docs, and more use cases examples are welcome (just file an issue or PR).
Contributing Guide
Please see the roadmap for missing features or known bugs:
Other resources:
Contributions are encouraged.
There are several ways to contribute to our project:
Reporting Bugs: If you find a bug, please open an issue and describe the problem. Make sure to include steps to reproduce the issue and any error messages you receive regarding that issue.
Fixing Bugs: If you'd like to fix a bug, please create a pull request with your changes. Make sure to include a description of the problem and how your changes will address it.
Additional examples and documentation improvements are also very welcome.
Resources
List of recommended Dagger.jl resources:
- Docs
- Videos
- Distributed Computing with Dagger.jl
- Easy, Featureful Parallelism with Dagger.jl
- Easier parallel Julia workflow with Dagger.jl
- Dagger.jl Development and Roadmap
Help and Discussion
For help and discussion, we suggest asking in the following places:
Julia Discourse and on the Julia Slack in the #dagger channel.
References
bibtex
@article{dagger1,
title={{{Dynamic Task Scheduling with Data Dependency Awareness Using Julia}},
author={Alomairy, Rabab and Tome, Felipe and Samaroo, Julian and Edelman, Alan},
pages={1--6},
year={2024},
publisher={MIT Open Access Articles}
}
bibtex
@article{dagger2,
title={{{Efficient Dynamic Task Scheduling in Heterogeneous Environments with Julia}},
author={Samaroo, Julian and Alomairy, Rabab and and Giordano, Mose and Edelman, Alan},
year={2024},
publisher={MIT Open Access Articles}
}
Acknowledgements
We thank DARPA, Intel, and the NIH for supporting this work at MIT.
Owner
- Name: John Maxrin
- Login: johnmaxrin
- Kind: user
- Location: India, Kerala
- Company: IIT Madras
- Repositories: 3
- Profile: https://github.com/johnmaxrin
Robert K Samuel
Citation (CITATION.cff)
cff-version: 1.2.0 message: "If you use this software, please cite it as below." authors: - family-names: "Samaroo" given-names: "Julian" orcid: "https://orcid.org/0009-0003-9623-0512" - family-names: "Alomairy" given-names: "Rabab" orcid: "https://orcid.org/0000-0001-9911-6094" - family-names: "de Alcântara Tomé" given-names: "Felipe" orcid: "https://orcid.org/0000-0002-1448-9340" - family-names: "Wrigley" given-names: "James" orcid: "https://orcid.org/0009-0003-6525-7413" title: "Dagger.jl" version: 0.18.12 date-released: 2024-06-25 url: "https://github.com/JuliaParallel/Dagger.jl"
GitHub Events
Total
- Push event: 3
- Create event: 2
Last Year
- Push event: 3
- Create event: 2
Dependencies
- actions/checkout v4 composite
- julia-actions/setup-julia v2 composite
- actions/checkout v4 composite
- julia-actions/setup-julia v2 composite
- actions/checkout v4 composite
- julia-actions/cache v2 composite
- julia-actions/setup-julia latest composite
- JuliaRegistries/TagBot v1 composite