1 file was added to this release more than 14 days after its initial publication. Inspect the release files before installing.
Dispatch your trivially parallizable jobs with sharedmem.
Now also supports Python 3.
sharedmem.empty creates numpy arrays to child processes.
sharedmem.MapReduce dispatches work to child processes.
sharedmem.MapReduce.ordered and sharedmem.MapReduce.critical provides the equivlant concept of OpenMP ordered and OpenMP critical sections.
Functions and variables are inherited from a fork and copy-on-write. Pickability is not a concern.
Easier to use than multiprocessing.Pool, at the cost of not supporting Windows.
For documentation, please refer to http://rainwoodman.github.io/sharedmem .
>>>
>>> input = numpy.arange(1024 * 1024 * 128, dtype='f8')
>>> output = sharedmem.empty(1024 * 1024 * 128, dtype='f8')
>>> with MapReduce() as pool:
>>> chunksize = 1024 * 1024
>>> def work(i):
>>> s = slice (i, i + chunksize)
>>> output[s] = input[s]
>>> return i, sum(input[s])
>>> def reduce(i, r):
>>> print('chunk', i, 'done')
>>> return r
>>> r = pool.map(work, range(0, len(input), chunksize), reduce=reduce)
>>> print numpy.sum(r)
>>>
Release files for sharedmem 0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
File added late
1 file was uploaded more than 14 days after the first file in this release.
While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.
We recommend inspecting the release files before installing.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| sharedmem-0.3.tar.gz | 13.2 kB | Details |