1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University.
* All rights reserved.
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
* All rights reserved.
* Copyright (c) 2004-2020 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2007-2016 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2012-2013 Sandia National Laboratories. All rights reserved.
* Copyright (c) 2017 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2020 Google, LLC. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal/mca/mpool/base/base.h"
#include "osc_rdma.h"
#include "osc_rdma_lock.h"
#include "mpi.h"
int ompi_osc_module_add_peer (ompi_osc_rdma_module_t *module, ompi_osc_rdma_peer_t *peer)
{
int ret = OMPI_SUCCESS;
if (NULL == module->peer_array) {
ret = opal_hash_table_set_value_uint32 (&module->peer_hash, peer->rank, (void *) peer);
} else {
module->peer_array[peer->rank] = peer;
}
return ret;
}
int ompi_osc_rdma_free(ompi_win_t *win)
{
int ret = OMPI_SUCCESS;
ompi_osc_rdma_module_t *module = GET_MODULE(win);
ompi_osc_rdma_peer_t *peer;
uint32_t key;
void *node;
if (NULL == module) {
return OMPI_SUCCESS;
}
while (module->pending_ops) {
ompi_osc_rdma_progress (module);
}
if (NULL != module->comm) {
opal_output_verbose(1, ompi_osc_base_framework.framework_output,
"rdma component destroying window with id %s",
ompi_comm_print_cid(module->comm));
/* finish with a barrier */
if (ompi_group_size(win->w_group) > 1) {
(void) module->comm->c_coll->coll_barrier (module->comm,
module->comm->c_coll->coll_barrier_module);
}
/* remove from component information */
OPAL_THREAD_LOCK(&mca_osc_rdma_component.lock);
opal_hash_table_remove_value_uint32(&mca_osc_rdma_component.modules,
ompi_comm_get_local_cid(module->comm));
OPAL_THREAD_UNLOCK(&mca_osc_rdma_component.lock);
}
win->w_osc_module = NULL;
if (module->state) {
int region_count = module->state->region_count & 0xffffffffL;
if (NULL != module->dynamic_handles) {
for (int i = 0 ; i < region_count ; ++i) {
ompi_osc_rdma_handle_t *region_handle = module->dynamic_handles[i];
ompi_osc_rdma_deregister (module, region_handle->btl_handle);
OBJ_RELEASE(region_handle);
}
free (module->dynamic_handles);
}
}
OBJ_DESTRUCT(&module->outstanding_locks);
OBJ_DESTRUCT(&module->lock);
OBJ_DESTRUCT(&module->peer_lock);
OBJ_DESTRUCT(&module->all_sync);
ompi_osc_rdma_deregister (module, module->state_handle);
ompi_osc_rdma_deregister (module, module->base_handle);
OPAL_LIST_DESTRUCT(&module->pending_posts);
if (NULL != module->rdma_frag) {
ompi_osc_rdma_deregister (module, module->rdma_frag->handle);
}
/* remove all cached peers */
if (NULL == module->peer_array) {
ret = opal_hash_table_get_first_key_uint32 (&module->peer_hash, &key, (void **) &peer, &node);
while (OPAL_SUCCESS == ret) {
OBJ_RELEASE(peer);
ret = opal_hash_table_get_next_key_uint32 (&module->peer_hash, &key, (void **) &peer,
node, &node);
}
OBJ_DESTRUCT(&module->peer_hash);
} else if (NULL != module->comm) {
for (int i = 0 ; i < ompi_comm_size (module->comm) ; ++i) {
if (NULL != module->peer_array[i]) {
OBJ_RELEASE(module->peer_array[i]);
}
}
}
if (module->local_leaders && MPI_COMM_NULL != module->local_leaders) {
ompi_comm_free (&module->local_leaders);
}
if (module->shared_comm && MPI_COMM_NULL != module->shared_comm) {
ompi_comm_free (&module->shared_comm);
}
if (module->comm && MPI_COMM_NULL != module->comm) {
ompi_comm_free (&module->comm);
}
if (module->segment_base) {
opal_shmem_segment_detach (&module->seg_ds);
module->segment_base = NULL;
}
free (module->peer_array);
free (module->outstanding_lock_array);
mca_mpool_base_default_module->mpool_free(mca_mpool_base_default_module,
module->free_after);
if (!module->use_accelerated_btl) {
for (int i = 0 ; i < module->alternate_btl_count ; ++i) {
OBJ_RELEASE(module->alternate_am_rdmas[i]);
}
free(module->alternate_am_rdmas);
}
free (module);
return OMPI_SUCCESS;
}
|