Skip to content

Commit

Permalink
Merge pull request open-mpi#1817 from shamisp/topic/oshmem_init
Browse files Browse the repository at this point in the history
OSHMEM: Removing erroneous initialization check
  • Loading branch information
jladd-mlnx authored Jun 27, 2016
2 parents 5d32282 + 1bb7788 commit 5795682
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions oshmem/proc/proc.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Copyright (c) 2014-2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2015 Cisco Systems, Inc. All rights reserved.
* Copyright (c) 2016 ARM, Inc. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
Expand Down Expand Up @@ -63,14 +64,6 @@ OBJ_CLASS_INSTANCE(oshmem_group_t, opal_object_t, NULL, NULL);

int oshmem_proc_group_init(void)
{
if (orte_process_info.num_procs != opal_list_get_size(&ompi_proc_list)) {
opal_output(0,
"Error: oshmem_group_all is not created: orte_process_info.num_procs = %d ompi_proc_list = %" PRIsize_t,
orte_process_info.num_procs,
opal_list_get_size(&ompi_proc_list));
return OSHMEM_ERROR;
}

/* Setup communicator array */
OBJ_CONSTRUCT(&oshmem_group_array, opal_pointer_array_t);
if (OPAL_SUCCESS
Expand Down

0 comments on commit 5795682

Please sign in to comment.