Parallize is a Python package that provides utilities to parallelize both synchronous and asynchronous functions using the `concurrent.futures.ProcessPoolExecutor`.
Project description
Parallize
Parallize is a Python package that provides utilities to parallelize synchronous functions using the concurrent.futures.ProcessPoolExecutor
and convert it into async functions to prevent the main thread from blocking. This allows you to execute functions in separate processes, leveraging multiple CPU cores for improved performance.
Features
- Parallelize Synchronous Functions: Execute synchronous functions in parallel using multiple processes.
- Parallelize Asynchronous Functions: Execute asynchronous functions in parallel using multiple processes.
- Customizable Worker Count: Specify the maximum number of worker processes to use, or let the package use the number of available CPU cores by default.
Mini Benchmark
Here are the updated benchmark results comparing serial and parallel execution times using the test_aparallize.py
test case:
Test Case | Concurrent Execution Time | Parallel Execution Time | Speedup | Tasks Count |
---|---|---|---|---|
test_aparallize_fn |
0:00:17.215937 | 0:00:08.293026 | 2.08x | 2 |
test_aparallize_10 |
0:01:25.070893 | 0:00:13.997451 | 5.94x | 10 |
Benchmark Details
- Concurrent Execution Time: The time taken to execute the CPU-bound task concurrently using a
ThreadPoolExecutor
. - Parallel Execution Time: The time taken to execute the same task in parallel using the
aparallize
decorator. - Speedup: The ratio of serial execution time to parallel execution time, indicating the performance improvement achieved by parallelizing the task.
Installation
To install Parallize, you can use pip:
pip install parallize
Usage
from parallize import aparallize
def my_function(x, y):
return x + y
# Call the function as usual
result = await aparallize(my_function)(1, 2)
print(result) # This will be executed in a separate process
Customizing the Number of Workers
You can specify the maximum number of worker processes to use by passing the max_workers
argument to the decorator:
def my_function(x, y):
return x + y
result = await aparallize(my_function, max_workers=4)(1, 2)
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Issues
If you encounter any issues or have suggestions for improvements, please open an issue on the GitHub repository.
Acknowledgments
- Thanks to the Python community for providing powerful tools and libraries for parallel processing.
@vikyw89-20240804
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file parallize-0.1.5.tar.gz
.
File metadata
- Download URL: parallize-0.1.5.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.3 Linux/6.8.0-39-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b0248f1ab3f3e68436c7651fd12d023b6043df8b9b07c0a4a93b0b34ae438e9 |
|
MD5 | d94bd37613e022a9bcdc70911a6c0ad6 |
|
BLAKE2b-256 | e484b5fb54cc0d82bbfbfd7cbe2713cda75bc3ca456299109f8003f2c141710b |
File details
Details for the file parallize-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: parallize-0.1.5-py3-none-any.whl
- Upload date:
- Size: 4.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.12.3 Linux/6.8.0-39-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95961c8a2b718847f8fea4d88e777a6f0c6968dd37308c9c5b49a725b4f34b17 |
|
MD5 | d2b101ad3d49ae30ef331066586eabae |
|
BLAKE2b-256 | 48942e6c196067e246af327dc971f91ef18ec88b74eb9ca207552b0986b53605 |