
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>
226 строки
7.0 KiB
C
226 строки
7.0 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-2006 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) 2007-2018 Los Alamos National Security, LLC. All rights
|
|
* reserved.
|
|
* Copyright (c) 2015-2016 Research Organization for Information Science
|
|
* and Technology (RIST). All rights reserved.
|
|
* Copyright (c) 2019 Sandia National Laboratories. All rights reserved.
|
|
* Copyright (c) 2020 Triad National Security, LLC. All rights
|
|
* reserved.
|
|
*
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef OPAL_MCA_THREADS_PTHREADS_THREADS_PTHREADS_MUTEX_H
|
|
#define OPAL_MCA_THREADS_PTHREADS_THREADS_PTHREADS_MUTEX_H
|
|
|
|
/**
|
|
* @file:
|
|
*
|
|
* Mutual exclusion functions: Unix implementation.
|
|
*
|
|
* Functions for locking of critical sections.
|
|
*
|
|
* On unix, use pthreads or our own atomic operations as
|
|
* available.
|
|
*/
|
|
|
|
#include "opal_config.h"
|
|
|
|
#include <pthread.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|
|
|
|
#include "opal/class/opal_object.h"
|
|
#include "opal/sys/atomic.h"
|
|
#include "opal/util/output.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
struct opal_mutex_t {
|
|
opal_object_t super;
|
|
|
|
pthread_mutex_t m_lock_pthread;
|
|
|
|
#if OPAL_ENABLE_DEBUG
|
|
int m_lock_debug;
|
|
const char *m_lock_file;
|
|
int m_lock_line;
|
|
#endif
|
|
|
|
opal_atomic_lock_t m_lock_atomic;
|
|
};
|
|
OPAL_DECLSPEC OBJ_CLASS_DECLARATION(opal_mutex_t);
|
|
OPAL_DECLSPEC OBJ_CLASS_DECLARATION(opal_recursive_mutex_t);
|
|
|
|
#if defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP)
|
|
#define OPAL_PTHREAD_RECURSIVE_MUTEX_INITIALIZER \
|
|
PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP
|
|
#elif defined(PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
|
|
#define OPAL_PTHREAD_RECURSIVE_MUTEX_INITIALIZER \
|
|
PTHREAD_RECURSIVE_MUTEX_INITIALIZER
|
|
#endif
|
|
|
|
#if OPAL_ENABLE_DEBUG
|
|
#define OPAL_MUTEX_STATIC_INIT \
|
|
{ \
|
|
.super = OPAL_OBJ_STATIC_INIT(opal_mutex_t), \
|
|
.m_lock_pthread = PTHREAD_MUTEX_INITIALIZER, \
|
|
.m_lock_debug = 0, \
|
|
.m_lock_file = NULL, \
|
|
.m_lock_line = 0, \
|
|
.m_lock_atomic = OPAL_ATOMIC_LOCK_INIT, \
|
|
}
|
|
#else
|
|
#define OPAL_MUTEX_STATIC_INIT \
|
|
{ \
|
|
.super = OPAL_OBJ_STATIC_INIT(opal_mutex_t), \
|
|
.m_lock_pthread = PTHREAD_MUTEX_INITIALIZER, \
|
|
.m_lock_atomic = OPAL_ATOMIC_LOCK_INIT, \
|
|
}
|
|
#endif
|
|
|
|
#if defined(OPAL_PTHREAD_RECURSIVE_MUTEX_INITIALIZER)
|
|
|
|
#if OPAL_ENABLE_DEBUG
|
|
#define OPAL_RECURSIVE_MUTEX_STATIC_INIT \
|
|
{ \
|
|
.super = OPAL_OBJ_STATIC_INIT(opal_mutex_t), \
|
|
.m_lock_pthread = OPAL_PTHREAD_RECURSIVE_MUTEX_INITIALIZER, \
|
|
.m_lock_debug = 0, \
|
|
.m_lock_file = NULL, \
|
|
.m_lock_line = 0, \
|
|
.m_lock_atomic = OPAL_ATOMIC_LOCK_INIT, \
|
|
}
|
|
#else
|
|
#define OPAL_RECURSIVE_MUTEX_STATIC_INIT \
|
|
{ \
|
|
.super = OPAL_OBJ_STATIC_INIT(opal_mutex_t), \
|
|
.m_lock_pthread = OPAL_PTHREAD_RECURSIVE_MUTEX_INITIALIZER, \
|
|
.m_lock_atomic = OPAL_ATOMIC_LOCK_INIT, \
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
/************************************************************************
|
|
*
|
|
* mutex operations (non-atomic versions)
|
|
*
|
|
************************************************************************/
|
|
|
|
static inline int opal_mutex_trylock(opal_mutex_t *m)
|
|
{
|
|
int ret = pthread_mutex_trylock(&m->m_lock_pthread);
|
|
if (EDEADLK == ret) {
|
|
#if OPAL_ENABLE_DEBUG
|
|
opal_output(0, "opal_mutex_trylock() %d",ret);
|
|
#endif
|
|
return 1;
|
|
}
|
|
return 0 == ret ? 0 : 1;
|
|
}
|
|
|
|
static inline void opal_mutex_lock(opal_mutex_t *m)
|
|
{
|
|
#if OPAL_ENABLE_DEBUG
|
|
int ret = pthread_mutex_lock(&m->m_lock_pthread);
|
|
if (EDEADLK == ret) {
|
|
errno = ret;
|
|
opal_output(0, "opal_mutex_lock() %d", ret);
|
|
}
|
|
#else
|
|
pthread_mutex_lock(&m->m_lock_pthread);
|
|
#endif
|
|
}
|
|
|
|
static inline void opal_mutex_unlock(opal_mutex_t *m)
|
|
{
|
|
#if OPAL_ENABLE_DEBUG
|
|
int ret = pthread_mutex_unlock(&m->m_lock_pthread);
|
|
if (EPERM == ret) {
|
|
errno = ret;
|
|
opal_output(0, "opal_mutex_unlock() %d", ret);
|
|
}
|
|
#else
|
|
pthread_mutex_unlock(&m->m_lock_pthread);
|
|
#endif
|
|
}
|
|
|
|
/************************************************************************
|
|
*
|
|
* mutex operations (atomic versions)
|
|
*
|
|
************************************************************************/
|
|
|
|
#if OPAL_HAVE_ATOMIC_SPINLOCKS
|
|
|
|
/************************************************************************
|
|
* Spin Locks
|
|
************************************************************************/
|
|
|
|
static inline int opal_mutex_atomic_trylock(opal_mutex_t *m)
|
|
{
|
|
return opal_atomic_trylock(&m->m_lock_atomic);
|
|
}
|
|
|
|
static inline void opal_mutex_atomic_lock(opal_mutex_t *m)
|
|
{
|
|
opal_atomic_lock(&m->m_lock_atomic);
|
|
}
|
|
|
|
static inline void opal_mutex_atomic_unlock(opal_mutex_t *m)
|
|
{
|
|
opal_atomic_unlock(&m->m_lock_atomic);
|
|
}
|
|
|
|
#else
|
|
|
|
/************************************************************************
|
|
* Standard locking
|
|
************************************************************************/
|
|
|
|
static inline int opal_mutex_atomic_trylock(opal_mutex_t *m)
|
|
{
|
|
return opal_mutex_trylock(m);
|
|
}
|
|
|
|
static inline void opal_mutex_atomic_lock(opal_mutex_t *m)
|
|
{
|
|
opal_mutex_lock(m);
|
|
}
|
|
|
|
static inline void opal_mutex_atomic_unlock(opal_mutex_t *m)
|
|
{
|
|
opal_mutex_unlock(m);
|
|
}
|
|
|
|
#endif
|
|
|
|
typedef pthread_cond_t opal_cond_t;
|
|
#define OPAL_CONDITION_STATIC_INIT PTHREAD_COND_INITIALIZER
|
|
|
|
int opal_cond_init(opal_cond_t *cond);
|
|
int opal_cond_wait(opal_cond_t *cond, opal_mutex_t *lock);
|
|
int opal_cond_broadcast(opal_cond_t *cond);
|
|
int opal_cond_signal(opal_cond_t *cond);
|
|
int opal_cond_destroy(opal_cond_t *cond);
|
|
|
|
END_C_DECLS
|
|
|
|
#endif /* OPAL_MCA_THREADS_PTHREADS_THREADS_PTHREADS_MUTEX_H */
|