All Projects → luispedro → Jug

luispedro / Jug

Licence: mit
Parallel programming with Python

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Jug

tumbleweed
Lightweight workflow engine microservice implement BPMN 2.0
Stars: ✭ 23 (-93.18%)
Mutual labels:  workflow, workflow-engine
CaseManagement
CMMN engine implementation in dotnet core
Stars: ✭ 16 (-95.25%)
Mutual labels:  workflow, workflow-engine
nactivity
workflow engine activity activiti
Stars: ✭ 55 (-83.68%)
Mutual labels:  workflow, workflow-engine
zenaton-ruby
💎 Ruby gem to run and orchestrate background jobs with Zenaton Workflow Engine
Stars: ✭ 32 (-90.5%)
Mutual labels:  workflow, workflow-engine
Conductor
Distributed workflow server
Stars: ✭ 281 (-16.62%)
Mutual labels:  workflow-engine, workflow
framework
The Arcane Framework for HPC codes
Stars: ✭ 15 (-95.55%)
Mutual labels:  hpc, parallel-computing
Rails workflow
Check Wiki for details
Stars: ✭ 295 (-12.46%)
Mutual labels:  workflow-engine, workflow
pcluster-manager
Manage AWS ParallelCluster through an easy to use web interface
Stars: ✭ 67 (-80.12%)
Mutual labels:  hpc, parallel-computing
Arvados
An open source platform for managing and analyzing biomedical big data
Stars: ✭ 274 (-18.69%)
Mutual labels:  workflow-engine, workflow
tukio
Tukio is an event based workflow generator library
Stars: ✭ 27 (-91.99%)
Mutual labels:  workflow, workflow-engine
cruise
User space POSIX-like file system in main memory
Stars: ✭ 27 (-91.99%)
Mutual labels:  hpc, parallel-computing
Sciluigi
A light-weight wrapper library around Spotify's Luigi workflow library to make writing scientific workflows more fluent, flexible and modular
Stars: ✭ 290 (-13.95%)
Mutual labels:  workflow-engine, workflow
awflow
Reproducible research and reusable acyclic workflows in Python. Execute code on HPC systems as if you executed them on your personal computer!
Stars: ✭ 15 (-95.55%)
Mutual labels:  hpc, workflow-engine
PyMFEM
Python wrapper for MFEM
Stars: ✭ 91 (-73%)
Mutual labels:  hpc, parallel-computing
ParallelUtilities.jl
Fast and easy parallel mapreduce on HPC clusters
Stars: ✭ 28 (-91.69%)
Mutual labels:  hpc, parallel-computing
bitpit
Open source library for scientific HPC
Stars: ✭ 80 (-76.26%)
Mutual labels:  hpc, parallel-computing
t8code
Parallel algorithms and data structures for tree-based AMR with arbitrary element shapes.
Stars: ✭ 37 (-89.02%)
Mutual labels:  hpc, parallel-computing
hpc
Learning and practice of high performance computing (CUDA, Vulkan, OpenCL, OpenMP, TBB, SSE/AVX, NEON, MPI, coroutines, etc. )
Stars: ✭ 39 (-88.43%)
Mutual labels:  hpc, parallel-computing
mbsolve
An open-source solver tool for the Maxwell-Bloch equations.
Stars: ✭ 14 (-95.85%)
Mutual labels:  hpc, parallel-computing
Workflow Core
Lightweight workflow engine for .NET Standard
Stars: ✭ 3,605 (+969.73%)
Mutual labels:  workflow-engine, workflow

=========================================== Jug: A Task-Based Parallelization Framework

Jug allows you to write code that is broken up into tasks and run different tasks on different processors.

.. image:: https://travis-ci.com/luispedro/jug.png :target: https://travis-ci.com/luispedro/jug

.. image:: https://zenodo.org/badge/205237.svg :target: https://zenodo.org/badge/latestdoi/205237

.. image:: https://anaconda.org/conda-forge/jug/badges/installer/conda.svg :target: https://anaconda.org/conda-forge/jug

.. image:: https://img.shields.io/badge/CITATION-doi.org%2F10.5334%2Fjors.161-green.svg :target: http://doi.org/10.5334/jors.161

.. image:: https://badges.gitter.im/Join%20Chat.svg :alt: Join the chat at https://gitter.im/luispedro/jug :target: https://gitter.im/luispedro/jug?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge

It uses the filesystem to communicate between processes and works correctly over NFS, so you can coordinate processes on different machines.

Jug is a pure Python implementation and should work on any platform.

Python versions 3.5 and above are supported.

Website: http://luispedro.org/software/jug <http://luispedro.org/software/jug>__

Documentation: https://jug.readthedocs.org/ <https://jug.readthedocs.org/>__

Video: On vimeo <http://vimeo.com/8972696>__ or showmedo <http://showmedo.com/videotutorials/video?name=9750000;fromSeriesID=975>__

Mailing List: http://groups.google.com/group/jug-users <http://groups.google.com/group/jug-users>__

Testimonials

"I've been using jug with great success to distribute the running of a reasonably large set of parameter combinations" - Andreas Longva

Install

You can install Jug with pip::

pip install Jug

or use, if you are using conda <http://anaconda.org/>, you can install jug from conda-forge <https://conda-forge.github.io/> using the following commands::

conda config --add channels conda-forge
conda install jug

Citation

If you use Jug to generate results for a scientific publication, please cite

Coelho, L.P., (2017). Jug: Software for Parallel Reproducible Computation in
Python. Journal of Open Research Software. 5(1), p.30.

http://doi.org/10.5334/jors.161

Short Example

Here is a one minute example. Save the following to a file called primes.py (if you have installed jug, you can obtain a slightly longer version of this example by running jug demo on the command line)::

from jug import TaskGenerator
from time import sleep

@TaskGenerator
def is_prime(n):
    sleep(1.)
    for j in range(2,n-1):
        if (n % j) == 0:
            return False
    return True

primes100 = [is_prime(n) for n in range(2,101)]

This is a brute-force way to find all the prime numbers up to 100. Of course, this is only for didactical purposes, normally you would use a better method. Similarly, the sleep function is so that it does not run too fast. Still, it illustrates the basic functionality of Jug for embarassingly parallel problems.

Type jug status primes.py to get::

Task name                  Waiting       Ready    Finished     Running
----------------------------------------------------------------------
primes.is_prime                  0          99           0           0
......................................................................
Total:                           0          99           0           0

This tells you that you have 99 tasks called primes.is_prime ready to run. So run jug execute primes.py &. You can even run multiple instances in the background (if you have multiple cores, for example). After starting 4 instances and waiting a few seconds, you can check the status again (with jug status primes.py)::

Task name                  Waiting       Ready    Finished     Running
----------------------------------------------------------------------
primes.is_prime                  0          63          32           4
......................................................................
Total:                           0          63          32           4

Now you have 32 tasks finished, 4 running, and 63 still ready. Eventually, they will all finish and you can inspect the results with jug shell primes.py. This will give you an ipython shell. The primes100 variable is available, but it is an ugly list of jug.Task objects. To get the actual value, you call the value function::

In [1]: primes100 = value(primes100)

In [2]: primes100[:10]
Out[2]: [True, True, False, True, False, True, False, False, False, True]

What's New

Version 2.1.1 (18 March 2021)

  • Include requirements files in distribution

Version 2.1.0 (18 March 2021)

  • Improvements to webstatus (by Robert Denham)
  • Removed Python 2.7 support
  • Fix output encoding for Python 3.8
  • Fix bug mixing mapreduce() & status --cache
  • Make block_access (used in mapreduce()) much faster (20x)
  • Fix important redis bug
  • More precise output in cleanup command

Version 2.0.2 (Thu Jun 11 2020)

  • Fix command line argument parsing

Version 2.0.1 (Thu Jun 11 2020)

  • Fix handling of JUG_EXIT_IF_FILE_EXISTS environmental variable
  • Fix passing an argument to jug.main() function
  • Extend --pdb to exceptions raised while importing the jugfile (issue #79)

version 2.0.0 (Fri Feb 21 2020)

  • jug.backend.base_store has 1 new method 'listlocks'
  • jug.backend.base_lock has 2 new methods 'fail' and 'is_failed'
  • Add 'jug execute --keep-failed' to preserve locks on failing tasks.
  • Add 'jug cleanup --failed-only' to remove locks from failed tasks
  • 'jug status' and 'jug graph' now display failed tasks
  • Check environmental exit variables by default (suggested by Renato Alves, issue #66)
  • Fix 'jug sleep-until' in the presence of barrier() (issue #71)

For older version see ChangeLog file or the full history <https://jug.readthedocs.io/en/latest/history.html>__.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].