
Add a framework to support different types of threading models including user space thread packages such as Qthreads and argobot: https://github.com/pmodels/argobots https://github.com/Qthreads/qthreads The default threading model is pthreads. Alternate thread models are specificed at configure time using the --with-threads=X option. The framework is static. The theading model to use is selected at Open MPI configure/build time. mca/threads: implement Argobots threading layer config: fix thread configury - Add double quotations - Change Argobot to Argobots config: implement Argobots check If the poll time is too long, MPI hangs. This quick fix just sets it to 0, but it is not good for the Pthreads version. Need to find a good way to abstract it. Note that even 1 (= 1 millisecond) causes disastrous performance degradation. rework threads MCA framework configury It now works more like the ompi/mca/rte configury, modulo some edge items that are special for threading package linking, etc. qthreads module some argobots cleanup Signed-off-by: Noah Evans <noah.evans@gmail.com> Signed-off-by: Shintaro Iwasaki <siwasaki@anl.gov> Signed-off-by: Howard Pritchard <howardp@lanl.gov>
43 строки
1.6 KiB
C
43 строки
1.6 KiB
C
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
|
/*
|
|
* Copyright (c) 2014-2018 Los Alamos National Security, LLC. All rights
|
|
* reserved.
|
|
* Copyright (c) 2018 Intel, Inc, All rights reserved
|
|
*
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef BTL_OFI_RDMA_H
|
|
#define BTL_OFI_RDMA_H
|
|
|
|
#include "opal/mca/threads/thread_usage.h"
|
|
|
|
#include "btl_ofi.h"
|
|
#include "btl_ofi_endpoint.h"
|
|
|
|
mca_btl_ofi_rdma_completion_t *mca_btl_ofi_rdma_completion_alloc (
|
|
mca_btl_base_module_t *btl,
|
|
mca_btl_base_endpoint_t *endpoint,
|
|
mca_btl_ofi_context_t *ofi_context,
|
|
void *local_address,
|
|
mca_btl_base_registration_handle_t *local_handle,
|
|
mca_btl_base_rdma_completion_fn_t cbfunc,
|
|
void *cbcontext, void *cbdata,
|
|
int type);
|
|
|
|
#define MCA_BTL_OFI_NUM_RDMA_INC(module) \
|
|
OPAL_THREAD_ADD_FETCH64(&(module)->outstanding_rdma, 1); \
|
|
if (module->outstanding_rdma > mca_btl_ofi_component.progress_threshold){ \
|
|
mca_btl_ofi_component.super.btl_progress(); \
|
|
}
|
|
|
|
#define MCA_BTL_OFI_NUM_RDMA_DEC(module) \
|
|
OPAL_THREAD_ADD_FETCH64(&(module)->outstanding_rdma, -1);
|
|
|
|
#endif /* !defined(BTL_OFI_RDMA_H) */
|
|
|