-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
[RLlib + Tune] Add placement group support to RLlib. #14289
Changes from 16 commits
00a45b3
668902f
824467f
a19ea3a
d8038af
df93afd
925f8c9
8fe428b
389ed96
d463cf1
5963334
439cf11
42412d6
c151046
528f4e8
dca9077
280aea5
8474df4
ef13eef
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -224,18 +224,33 @@ def __init__(self, | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if trainable_cls: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
default_resources = trainable_cls.default_resource_request( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.config) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if default_resources: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if resources: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
raise ValueError( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Resources for {} have been automatically set to {} " | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"by its `default_resource_request()` method. Please " | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"clear the `resources_per_trial` option.".format( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
trainable_cls, default_resources)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# If Trainable returns resources, do not allow manual overrid via | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# `resources_per_trial` by the user. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if default_resources and (resources or placement_group_factory): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
raise ValueError( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"Resources for {} have been automatically set to {} " | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"by its `default_resource_request()` method. Please " | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"clear the `resources_per_trial` option.".format( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
trainable_cls, default_resources)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# New way: Trainable returns a PlacementGroupFactory object. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if isinstance(default_resources, PlacementGroupFactory): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
placement_group_factory = default_resources | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resources = None | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Set placement group factory to None for backwards compatibility. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
placement_group_factory = None | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
(and remove line under this). We need to keep the indent here, and with the suggested change we keep the same logic as before. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
resources = default_resources | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.location = Location() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.resources = resources or Resources(cpu=1, gpu=0) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.placement_group_factory = placement_group_factory | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if isinstance(resources, PlacementGroupFactory): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.placement_group_factory = resources | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
else: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.placement_group_factory = placement_group_factory | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We don't need this block anymore ( There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. removed. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self._setup_resources() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
self.stopping_criterion = stopping_criterion or {} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there's a lot of special-casing here in this file diff -- can we please avoid this?