Parallelize Python codes
Project description
Parallelize Python codes
parhugin
provides functions to:
Table of contents
- Installation and setup
- Run one or more Python functions in parallel using multiprocessing
- Complete examples
Installation
-
install using pip
pip install git+https://github.com/kasra-hosseini/parhugin.git
-
install parhugin from the source code:
- Clone parhugin source code:
git clone https://github.com/kasra-hosseini/parhugin.git
- Install parhugin:
cd /path/to/my/parhugin python setup.py install
Alternatively:
cd /path/to/my/parhugin pip install -v -e .
Run one or more Python functions in parallel using multiprocessing
In this scenario, we have:
- one or more functions
- a list of jobs to be run in parallel, e.g.:
[
[func1, (arg1_1, arg2_1, arg3_1)],
[func1, (arg1_2, arg2_2, arg3_2)],
[func2, (...)],
...
]
⚠️ If a function has only one argument, do not forget to add it to the above list either [func_one_arg, [arg1]]
or [func_one_arg, (arg1,)]
.
- User specifies the number of processes to be run in parallel.
parhugin
parallelizes by distributing the jobs following FIFO on the requested number of processes.
Example 1
First, we import parhugin
and define two simple functions called func1
and func2
. These functions can have different number of arguments.
from parhugin import multiFunc
import time
# Define two simple functions, func1 and func2
# Note that functions can have different number of arguments
def func1(a, b, sleep=0.5, info="func1"):
print(f"start, {info} calculated {a+b}")
time.sleep(sleep)
print(f"end, {info}")
def func2(a, sleep=0.2, info="func2"):
print(f"start, {info} prints {a}")
time.sleep(sleep)
print(f"end, {info}")
Next, we specify the number of processes to run in parallel. This can be the number of processors if the jobs are CPU-intensive. Otherwise, you can set this to any other values.
myproc = multiFunc(num_req_p=10)
Now, we need to add jobs to be run in parallel. There are different ways to do this:
- Add one function and its arguments:
myproc.add_job(target_func=func1, target_args=(2, 3, 0.5, "func1"))
print(myproc)
Similarly, we can add another function:
myproc.add_job(target_func=func2, target_args=(10, 0.2, "func2"))
print(myproc)
- Create a list of jobs:
list_jobs = []
for i in range(1, 20):
list_jobs.append([func2, (f"{i}", 0.2, "func2")])
# and then adding them to myproc
myproc.add_list_jobs(list_jobs)
print(myproc)
Finally, run the jobs on the requested number of processes:
myproc.run_jobs()
It is also possible to change the verbosity level of the output by:
myproc.run_jobs(verbosity=2)
Complete examples
Example 1
from parhugin import multiFunc
import time
# Define two simple functions, func1 and func2
# Note that functions can have different number of arguments
def func1(a, b, sleep=0.5, info="func1"):
print(f"start, {info} calculated {a+b}")
time.sleep(sleep)
print(f"end, {info}")
def func2(a, sleep=0.2, info="func2"):
print(f"start, {info} prints {a}")
time.sleep(sleep)
print(f"end, {info}")
myproc = multiFunc(num_req_p=10)
myproc.add_job(target_func=func1, target_args=(2, 3, 0.5, "func1"))
print(myproc)
myproc.add_job(target_func=func2, target_args=(10, 0.2, "func2"))
print(myproc)
list_jobs = []
for i in range(1, 20):
list_jobs.append([func2, (f"{i}", 0.2, "func2")])
# and then adding them to myproc
myproc.add_list_jobs(list_jobs)
print(myproc)
myproc.run_jobs(verbosity=2)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file parhugin-0.0.3.tar.gz
.
File metadata
- Download URL: parhugin-0.0.3.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/42.0.2.post20191203 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | edf0e987ceb65826f2ce11b11d9e4aac1a128e6ce2efea48d428ac4202720fcd |
|
MD5 | 4cdc39fa1fea6a1906f7ea41297d2e75 |
|
BLAKE2b-256 | 1b66bf327e1b60a4fdf874f5365e28e71f803a4ea00311b956b15472e3d5d3fd |