d4afb16f5a
This commit rewrites both the mpool and rcache frameworks. Summary of changes: - Before this change a significant portion of the rcache functionality lived in mpool components. This meant that it was impossible to add a new memory pool to use with rdma networks (ugni, openib, etc) without duplicating the functionality of an existing mpool component. All the registration functionality has been removed from the mpool and placed in the rcache framework. - All registration cache mpools components (udreg, grdma, gpusm, rgpusm) have been changed to rcache components. rcaches are allocated and released in the same way mpool components were. - It is now valid to pass NULL as the resources argument when creating an rcache. At this time the gpusm and rgpusm components support this. All other rcache components require non-NULL resources. - A new mpool component has been added: hugepage. This component supports huge page allocations on linux. - Memory pools are now allocated using "hints". Each mpool component is queried with the hints and returns a priority. The current hints supported are NULL (uses posix_memalign/malloc), page_size=x (huge page mpool), and mpool=x. - The sm mpool has been moved to common/sm. This reflects that the sm mpool is specialized and not meant for any general allocations. This mpool may be moved back into the mpool framework if there is any objection. - The opal_free_list_init arguments have been updated. The unused0 argument is not used to pass in the registration cache module. The mpool registration flags are now rcache registration flags. - All components have been updated to make use of the new framework interfaces. As this commit makes significant changes to both the mpool and rcache frameworks both versions have been bumped to 3.0.0. Signed-off-by: Nathan Hjelm <hjelmn@lanl.gov>
184 строки
6.5 KiB
C
184 строки
6.5 KiB
C
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
|
/*
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
* University Research and Technology
|
|
* Corporation. All rights reserved.
|
|
* Copyright (c) 2004-2013 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2004-2005 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) 2006-2009 Cisco Systems, Inc. All rights reserved.
|
|
* Copyright (c) 2006 Voltaire. All rights reserved.
|
|
* Copyright (c) 2007 Mellanox Technologies. All rights reserved.
|
|
* Copyright (c) 2010 IBM Corporation. All rights reserved.
|
|
* Copyright (c) 2012-2015 NVIDIA Corporation. All rights reserved.
|
|
* Copyright (c) 2015 Los Alamos National Security, LLC. All rights
|
|
* reserved.
|
|
*
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
/**
|
|
* @file:
|
|
*
|
|
* This file implements a simple memory pool that is used by the GPU
|
|
* buffer on the sending side. It just gets a memory handle and event
|
|
* handle that can be sent to the remote side which can then use the
|
|
* handles to get access to the memory and the event to determine when
|
|
* it can start accessing the memory. There is no caching of the
|
|
* memory handles as getting new ones is fast. The event handles are
|
|
* cached by the cuda_common code.
|
|
*/
|
|
|
|
#include "opal_config.h"
|
|
#include "opal/mca/rcache/base/base.h"
|
|
#include "opal/mca/rcache/gpusm/rcache_gpusm.h"
|
|
#include "opal/mca/common/cuda/common_cuda.h"
|
|
|
|
/**
|
|
* Called when the registration free list is created. An event is created
|
|
* for each entry.
|
|
*/
|
|
static void mca_rcache_gpusm_registration_constructor( mca_rcache_gpusm_registration_t *item )
|
|
{
|
|
mca_common_cuda_construct_event_and_handle(&item->event,
|
|
(void *)&item->evtHandle);
|
|
}
|
|
|
|
/**
|
|
* Called when the program is exiting. This destroys the events.
|
|
*/
|
|
static void mca_rcache_gpusm_registration_destructor( mca_rcache_gpusm_registration_t *item )
|
|
{
|
|
mca_common_cuda_destruct_event(item->event);
|
|
}
|
|
|
|
OBJ_CLASS_INSTANCE(mca_rcache_gpusm_registration_t, mca_rcache_base_registration_t,
|
|
mca_rcache_gpusm_registration_constructor,
|
|
mca_rcache_gpusm_registration_destructor);
|
|
|
|
/*
|
|
* Initializes the rcache module.
|
|
*/
|
|
void mca_rcache_gpusm_module_init(mca_rcache_gpusm_module_t* rcache)
|
|
{
|
|
rcache->super.rcache_component = &mca_rcache_gpusm_component.super;
|
|
rcache->super.rcache_register = mca_rcache_gpusm_register;
|
|
rcache->super.rcache_find = mca_rcache_gpusm_find;
|
|
rcache->super.rcache_deregister = mca_rcache_gpusm_deregister;
|
|
rcache->super.rcache_finalize = mca_rcache_gpusm_finalize;
|
|
|
|
OBJ_CONSTRUCT(&rcache->reg_list, opal_free_list_t);
|
|
|
|
/* Start with 0 entries in the free list since CUDA may not have
|
|
* been initialized when this free list is created and there is
|
|
* some CUDA specific activities that need to be done. */
|
|
opal_free_list_init (&rcache->reg_list, sizeof(struct mca_rcache_common_cuda_reg_t),
|
|
opal_cache_line_size,
|
|
OBJ_CLASS(mca_rcache_gpusm_registration_t),
|
|
0,opal_cache_line_size,
|
|
0, -1, 64, NULL, 0, NULL, NULL, NULL);
|
|
|
|
}
|
|
|
|
/**
|
|
* Just go ahead and get a new registration. The find and register
|
|
* functions are the same thing for this memory pool.
|
|
*/
|
|
int mca_rcache_gpusm_find(mca_rcache_base_module_t *rcache, void *addr,
|
|
size_t size,
|
|
mca_rcache_base_registration_t **reg)
|
|
{
|
|
return mca_rcache_gpusm_register(rcache, addr, size, 0, 0, reg);
|
|
}
|
|
|
|
/*
|
|
* This is the one function that does all the work. It will call into
|
|
* the register function to get the memory handle for the sending
|
|
* buffer. There is no need to deregister the memory handle so the
|
|
* deregister function is a no-op.
|
|
*/
|
|
int mca_rcache_gpusm_register(mca_rcache_base_module_t *rcache, void *addr,
|
|
size_t size, uint32_t flags, int32_t access_flags,
|
|
mca_rcache_base_registration_t **reg)
|
|
{
|
|
mca_rcache_gpusm_module_t *rcache_gpusm = (mca_rcache_gpusm_module_t*)rcache;
|
|
mca_rcache_base_registration_t *gpusm_reg;
|
|
opal_free_list_item_t *item;
|
|
unsigned char *base, *bound;
|
|
int rc;
|
|
|
|
/* In spite of the fact we return an error code, the existing code
|
|
* checks the registration for a NULL value rather than looking at
|
|
* the return code. So, initialize the registration to NULL in
|
|
* case we run into a failure. */
|
|
*reg = NULL;
|
|
|
|
base = addr;
|
|
bound = (unsigned char *)addr + size - 1;
|
|
|
|
item = opal_free_list_get (&rcache_gpusm->reg_list);
|
|
if(NULL == item) {
|
|
return OPAL_ERR_OUT_OF_RESOURCE;
|
|
}
|
|
gpusm_reg = (mca_rcache_base_registration_t*)item;
|
|
|
|
gpusm_reg->rcache = rcache;
|
|
gpusm_reg->base = base;
|
|
gpusm_reg->bound = bound;
|
|
gpusm_reg->flags = flags;
|
|
gpusm_reg->access_flags = access_flags;
|
|
|
|
rc = cuda_getmemhandle (base, size, gpusm_reg, NULL);
|
|
|
|
if(rc != OPAL_SUCCESS) {
|
|
opal_free_list_return (&rcache_gpusm->reg_list, item);
|
|
return rc;
|
|
}
|
|
|
|
*reg = gpusm_reg;
|
|
(*reg)->ref_count++;
|
|
return OPAL_SUCCESS;
|
|
|
|
}
|
|
|
|
/*
|
|
* Return the registration to the free list.
|
|
*/
|
|
int mca_rcache_gpusm_deregister(struct mca_rcache_base_module_t *rcache,
|
|
mca_rcache_base_registration_t *reg)
|
|
{
|
|
int rc;
|
|
mca_rcache_gpusm_module_t *rcache_gpusm = (mca_rcache_gpusm_module_t *)rcache;
|
|
|
|
rc = cuda_ungetmemhandle (NULL, reg);
|
|
opal_free_list_return (&rcache_gpusm->reg_list, (opal_free_list_item_t *) reg);
|
|
return OPAL_SUCCESS;
|
|
}
|
|
|
|
/**
|
|
* Free up the resources.
|
|
*/
|
|
void mca_rcache_gpusm_finalize(struct mca_rcache_base_module_t *rcache)
|
|
{
|
|
opal_free_list_item_t *item;
|
|
mca_rcache_gpusm_module_t *rcache_gpusm = (mca_rcache_gpusm_module_t *)rcache;
|
|
|
|
/* Need to run the destructor on each item in the free list explicitly.
|
|
* The destruction of the free list only runs the destructor on the
|
|
* main free list, not each item. */
|
|
while (NULL != (item = (opal_free_list_item_t *)opal_lifo_pop(&(rcache_gpusm->reg_list.super)))) {
|
|
OBJ_DESTRUCT(item);
|
|
}
|
|
|
|
OBJ_DESTRUCT(&rcache_gpusm->reg_list);
|
|
return;
|
|
}
|