Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Mikhail Brinskii <[email protected]>
Min Fang <[email protected]>
Nathan Hjelm <[email protected]>
Netanel Yosephian <[email protected]>
Nicolas Morey <[email protected]>
Ofir Farjon <[email protected]>
Olly Perks <[email protected]>
Ovidiu Mara <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/ucp/core/ucp_context.c
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ static ucs_config_field_t ucp_context_config_table[] = {
"Number of usage tracker rounds performed for each progress operation. Must be\n"
"non-zero value.",
ucs_offsetof(ucp_context_config_t, dynamic_tl_progress_factor),
UCS_CONFIG_TYPE_TIME_UNITS},
UCS_CONFIG_TYPE_UINT},

{"RESOLVE_REMOTE_EP_ID", "n",
"Defines whether resolving remote endpoint ID is required or not when\n"
Expand Down
2 changes: 1 addition & 1 deletion src/uct/sm/self/self.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static ucs_config_field_t uct_self_md_config_table[] = {
UCS_CONFIG_TYPE_TABLE(uct_md_config_table)},

{"NUM_DEVICES", "1", "Number of \"self\" devices to create",
ucs_offsetof(uct_self_md_config_t, num_devices), UCS_CONFIG_TYPE_INT},
ucs_offsetof(uct_self_md_config_t, num_devices), UCS_CONFIG_TYPE_ULONG},

{NULL}
};
Expand Down
Loading