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

[tune] filter placement group resources if not in use #16996

Merged
merged 3 commits into from Jul 16, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion python/ray/tune/ray_trial_executor.py
Expand Up @@ -904,7 +904,8 @@ def debug_string(self):
total_resources.get(name, 0.),
self._avail_resources.get_res_total(name), name)
for name in self._avail_resources.custom_resources
if not name.startswith(ray.resource_spec.NODE_ID_PREFIX)
if not name.startswith(ray.resource_spec.NODE_ID_PREFIX) and (
total_resources.get(name, 0.) > 0 or "_group_" not in name)
])
if customs:
status += " ({})".format(customs)
Expand Down