Skip to content
This repository was archived by the owner on Sep 30, 2022. It is now read-only.

Commit 9b00cae

Browse files
authored
Merge pull request #1247 from shamisp/topic/oshmem_init
OSHMEM: Removing erroneous initialization check
2 parents 27ffc88 + 8011f42 commit 9b00cae

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

oshmem/proc/proc.c

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
* Copyright (c) 2014-2015 Research Organization for Information Science
55
* and Technology (RIST). All rights reserved.
66
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
7+
* Copyright (c) 2016 ARM, Inc. All rights reserved.
78
* $COPYRIGHT$
89
*
910
* Additional copyrights may follow
@@ -63,14 +64,6 @@ OBJ_CLASS_INSTANCE(oshmem_group_t, opal_object_t, NULL, NULL);
6364

6465
int oshmem_proc_group_init(void)
6566
{
66-
if (orte_process_info.num_procs != opal_list_get_size(&ompi_proc_list)) {
67-
opal_output(0,
68-
"Error: oshmem_group_all is not created: orte_process_info.num_procs = %d ompi_proc_list = %" PRIsize_t,
69-
orte_process_info.num_procs,
70-
opal_list_get_size(&ompi_proc_list));
71-
return OSHMEM_ERROR;
72-
}
73-
7467
/* Setup communicator array */
7568
OBJ_CONSTRUCT(&oshmem_group_array, opal_pointer_array_t);
7669
if (OPAL_SUCCESS

0 commit comments

Comments
 (0)