-
Notifications
You must be signed in to change notification settings - Fork 37
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
RayCluster with create_settings #118
Conversation
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.
A few comments. nothing major. Looks good.
smartsim/launcher/lsf/lsfLauncher.py
Outdated
@@ -26,6 +26,8 @@ | |||
|
|||
import time | |||
|
|||
from smartsim.settings.settings import RunSettings |
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.
use relative improt here
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.
One minor comment. otherwise LGTM!
In this PR, we change the way Ray is started (internally): instead of creating
SrunSettings
,AprunSettings
, andMpirunSettings
objects, we just create aBaseRunSettings
object with the correctrun_command
. The same holds for batch settings.Also, notably, this automatically adds support for
Cobalt
as a launcher.