Switch from serial to parallel computing without requiring any code modifications.
Project description
ray-ease
Switch from serial to parallel computing without requiring any code modifications.
About the project
This package is a convenient Ray wrapper that enables the utilization of Ray decorated functions and actors as if they were regular local functions. With this tool, your program can seamlessly run in both parallel and serial modes without requiring any code modifications. This capability is particularly advantageous during the debugging phase, as parallelizing code may inadvertently introduce unnecessary complexities and overhead.
Installation
$ pip install ray-ease
Usage
Effortlessly parallelize your code by simply decorating your functions or classes with the parallelize
decorator. Retrieve the results using the retrieve
function. This enables you to parallelize your code with Ray, default behavior of the init
function, or run it serially without any overhead from Ray with rez.init(config="serial")
.
[!NOTE]
To explore additional useful examples, please refer to the dedicated folder designated for this purpose.
Running a Task
import ray_ease as rez
rez.init()
# Define the square task.
@rez.parallelize
def square(x):
return x * x
# Launch four parallel square tasks.
futures = [square(i) for i in range(4)]
# Retrieve results.
print(rez.retrieve(futures))
# -> [0, 1, 4, 9]
See Ray version for comparison.
Calling an Actor
import ray_ease as rez
rez.init()
# Define the Counter actor.
@rez.parallelize
class Counter:
def __init__(self):
self.i = 0
def get(self):
return self.i
def incr(self, value):
self.i += value
# Create a Counter actor.
c = Counter()
# Submit calls to the actor. These calls run asynchronously but in
# submission order on the remote actor process.
for _ in range(10):
c.incr(1)
# Retrieve final actor state.
print(rez.retrieve(c.get()))
# -> 10
See Ray version for comparison.
Comparison with and without Ray
Parallel computation with Ray (see base example):
import time
import ray_ease as rez
rez.init(num_cpus=4) # Initialize Ray and specify this system has 4 CPUs.
@rez.parallelize
def do_some_work(x):
time.sleep(1) # Replace this with work you need to do.
return x
start = time.time()
results = rez.retrieve([do_some_work(x) for x in range(4)])
print("duration =", time.time() - start)
print("results =", results)
This yields the following output:
duration = 1.0233514308929443
results = [0, 1, 2, 3]
As opposed to serial computation, obtained by specifying to ray_ease
to use the serial config with rez.init("serial")
:
import time
import ray_ease as rez
rez.init("serial")
@rez.parallelize
def do_some_work(x):
time.sleep(1) # Replace this with work you need to do.
return x
start = time.time()
results = rez.retrieve([do_some_work(x) for x in range(4)])
print("duration =", time.time() - start)
print("results =", results)
The outputs provide confirmation that the execution was carried out sequentially, taking approximately four times longer than before:
duration = 4.021065711975098
results = [0, 1, 2, 3]
Contributing
Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.
License
ray-ease
was created by Arthur Elskens. It is licensed under the terms of the MIT license. See LICENSE for more information.
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
Built Distribution
File details
Details for the file ray_ease-0.2.6.tar.gz
.
File metadata
- Download URL: ray_ease-0.2.6.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb5c4022194a908d03eca383544310a9f0ce99f622d8f7095cdf4cb5c690f44e |
|
MD5 | 2365bdd2a92ea265cafadbe49e676f9b |
|
BLAKE2b-256 | 9abb8795157c924b9181de66a650ca58db14b67f0cb5bc879c38b334456c4a73 |
File details
Details for the file ray_ease-0.2.6-py2.py3-none-any.whl
.
File metadata
- Download URL: ray_ease-0.2.6-py2.py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4d6df175f2e4aed49911bf6e167604da2623b5ed03fa3eb79891aeb8bb4fa53 |
|
MD5 | 2904b6b2053be593f937e5a9cea851f8 |
|
BLAKE2b-256 | 49286edc0f20f525286952b72b7aa7fa56d8f3bad9f2a42725c4191aef36e28d |