MultiProcessPool
MultiProcessPool have for purpose to use all core of a processor. The usual Pool is restrict by Python’s Global Interpreter Lock (GIL).
This example of use:
def double(value):
return value * 2
def queueop(value, vallistres):
vallistres.append(value)
return vallistres
if __name__ == “__main__”:
pp = MultiProcessPool(double, [ i for i in range(0,100) ], queueop, [])
print sorted(pp.run(4))
Will give a list of double value of the list in parameter.
To import it do:
from multiprocesspool.multiprocesspool import MultiProcessPool
Release files for multiprocesspool 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| multiprocesspool-0.0.1.tar.gz | 3.8 kB | Details |
Release files / multiprocesspool-0.0.1.tar.gz
| Download URL | multiprocesspool-0.0.1.tar.gz |
|---|---|
| Size | 3.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
db181f970bb6bcf4081afb4bc4b77c4f0ced58eb984d87014f3fa0292f7d503e
|
|
BLAKE2b-256 checksum How to use checksums |
f0476be3ec3af3a862dd334722aa58f0ed6ecea0d287858ad98c65ccb4985bd3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |