Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[core][compiled graphs] Add ray[cg] pip install option #49220

Merged
merged 4 commits into from
Dec 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def get_packages(self):
"pyarrow <18; sys_platform == 'darwin' and platform_machine == 'x86_64'",
]
setup_spec.extras = {
"adag": [
"cg": [
"cupy-cuda12x; sys_platform != 'darwin'",
],
"client": [
Expand Down Expand Up @@ -287,6 +287,10 @@ def get_packages(self):
],
}

# Both "adag" and "cg" are for Compiled Graphs.
# "adag" is deprecated and will be removed in the future.
setup_spec.extras["adag"] = list(setup_spec.extras["cg"])

# Ray Serve depends on the Ray dashboard components.
setup_spec.extras["serve"] = list(
set(setup_spec.extras["serve"] + setup_spec.extras["default"])
Expand Down
Loading