/PmapProgressMeter.jl

A simple wrapper that allows pmap to report results using the ProgressMeter package.

Primary LanguageJuliaOtherNOASSERTION

PmapProgressMeter

Build Status

This is a simple wrapper around pmap that uses the ProgressMeter package. It takes care of getting the synchronization right among parallel workers.

Installation

Pkg.clone("https://github.com/slundberg/PmapProgressMeter.jl")

Usage

using ProgressMeter
using PmapProgressMeter

pmap(x->begin sleep(1); x end, Progress(10), 1:10)