-
Notifications
You must be signed in to change notification settings - Fork 102
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
TL/SHARP: SHARP OOB fixes #746
Conversation
5d07eaa
to
a5a3e16
Compare
if(!sharp_ctx->cfg.enable_lazy_group_alloc) { | ||
init_spec.config.flags |= SHARP_COLL_DISABLE_LAZY_GROUP_RESOURCE_ALLOC; | ||
} | ||
#endif |
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.
print warning if disabling lazy group alloc is not supported by sharp and user has changed default value
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.
maybe we can expose the user option also only when flag is there
@@ -30,7 +30,7 @@ static ucc_config_field_t ucc_tl_sharp_context_config_table[] = { | |||
{"", "", NULL, ucc_offsetof(ucc_tl_sharp_context_config_t, super), | |||
UCC_CONFIG_TYPE_TABLE(ucc_tl_context_config_table)}, | |||
|
|||
{"DEVICES", "mlx5_0:1", | |||
{"DEVICES", "", |
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.
how device will be selected for previous SHARP releases?
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.
it was sharplib user's responsibility to specify the device.. there is no default device selection
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.
right, this is my question, if one builds UCC 1.2 with SHARP 3.0 how it will work without providing device?
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.
the default selection was fixed in libsharp in the last HPCX release i. it will fail if we use older than that. that should be ok
- hide sharp lib errors - disable lazy init by default
Why ?