We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 955269b + 8128c8e commit f18d660Copy full SHA for f18d660
opal/mca/btl/openib/btl_openib_component.c
@@ -3771,7 +3771,9 @@ static int btl_openib_component_progress(void)
3771
for(i = 0; i < mca_btl_openib_component.devices_count; i++) {
3772
mca_btl_openib_device_t *device =
3773
(mca_btl_openib_device_t *) opal_pointer_array_get_item(&mca_btl_openib_component.devices, i);
3774
- count += progress_one_device(device);
+ if (NULL != device) {
3775
+ count += progress_one_device(device);
3776
+ }
3777
}
3778
3779
#if OPAL_CUDA_SUPPORT /* CUDA_ASYNC_SEND */
0 commit comments