More robust ray
Project description
Sunray
Ray is a unified framework for scaling AI and Python applications. However, it falls short in offering friendly type hints, particularly when it comes to working with the Actor.
To address this shortfall, sunray provides enhanced and more robust type hints.
install
pip install sunray
Let's vs.
Round 1: Build an actor
| sunray | ray |
|---|---|
- sunray returns
Actor[Demo], but ray returnsObjectRef[Demo] - ray mypy raise error
Type[Demo] has no attribute "remote"
Round 2: Get actor remote methods
| sunray | ray |
|---|---|
- sunray list all remote methods
- ray list nothing
Round 3: Actor remote method call
| sunray | ray |
|---|---|
- sunray correctly provided parameter hints.
- ray ...
Round 4: Annotate with Actor
| sunray | ray |
|---|---|
- with sunray, just annotate it with
Actor[Demo]. - with ray, I don't known.
Round 5: Stream
| sunray | ray |
|---|---|
- sunray correctly identified that
streamreturns a generator. - ray still returns ObjectRef.
Round 6: Unpack result
| sunray | ray |
|---|---|
- sunray will auto unpack tuple result if options specify
unpack=True. - ray need to specify how many return numbers, so you need to count it.
- ray mypy raise error 'RemoteFunctionNoArgs has no attribute "options"'.
Round 7: Get actor
| sunray | ray |
|---|---|
- sunray get_actor will return
ActorHandle, and returnActor[Demo]if you specify with generic type. - ray just return
Any.
Round 8: Call self remote method
| sunray | ray |
|---|---|
- sunray maintains a consistent calling convention, whether it's from internal or external functions.
- ray, you need to first obtain the current actor from the running context, and then call through the actor.
Round 9: Lazy Computation
| sunray | ray |
|---|---|
- sunray can successfully track the input parameter types and output types.
- ray does not have this capability.
API
sunray re-export all apis from ray.core with friendly type hints. In addition, sunray provides ActorMixin which is used to help creating more robust actors.
ActorMixin
ActorMixin is a mixin, and provides a classmethod new_actor
import sunray
class Demo(
# Here to specify default actor options
sunray.ActorMixin, name="DemoActor", num_cpus=1, concurrency_groups={"g1": 1}
):
def __init__(self, init_v: int):
self.init_v = init_v
# annotate `add` is a remote_method
@sunray.remote_method
def add(self, v: int) -> int:
return self.init_v + v
# support directly call remote_method
@sunray.remote_method
def calculate(self, v: int) -> int:
return self.add(v)
# support specify remote method options
@sunray.remote_method(concurrency_group="g1")
async def sleep(self): ...
# construct the actor
actor = Demo.new_actor().remote(1)
# call remote method
ref = actor.methods.add.remote(1)
print(sunray.get(ref))
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 Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sunray-0.13.0-py3-none-any.whl.
File metadata
- Download URL: sunray-0.13.0-py3-none-any.whl
- Upload date:
- Size: 24.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.11.12 Linux/6.11.0-1014-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69a8c45122e032cbc79bea71f922ff37f61b5edeafd5449ba6d650cf27b3cfb3
|
|
| MD5 |
d463bbe12fbcc06c70c3465bdc5aab2a
|
|
| BLAKE2b-256 |
ab55c6433b6c3fc643598d15d946bb3f5e0b385c4fe5f2dbd0e81848ff7cd811
|