2013-09-10 15:34:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2013 Mellanox Technologies, Inc.
|
2015-06-23 20:59:57 -07:00
|
|
|
* All rights reserved.
|
2013-09-10 15:34:09 +00:00
|
|
|
* $COPYRIGHT$
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2013-09-10 15:34:09 +00:00
|
|
|
* Additional copyrights may follow
|
2015-06-23 20:59:57 -07:00
|
|
|
*
|
2013-09-10 15:34:09 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MCA_ATOMIC_MXM_H
|
|
|
|
#define MCA_ATOMIC_MXM_H
|
|
|
|
|
|
|
|
#include "oshmem_config.h"
|
|
|
|
|
2015-03-05 20:50:44 -07:00
|
|
|
#include "oshmem/mca/mca.h"
|
2013-09-10 15:34:09 +00:00
|
|
|
#include "oshmem/mca/atomic/atomic.h"
|
2014-01-28 07:30:36 +00:00
|
|
|
#include "oshmem/util/oshmem_util.h"
|
2013-09-10 15:34:09 +00:00
|
|
|
|
|
|
|
/* This component does uses SPML:IKRIT */
|
|
|
|
#include "oshmem/mca/spml/ikrit/spml_ikrit.h"
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
|
|
|
/* Globally exported variables */
|
|
|
|
|
|
|
|
OSHMEM_MODULE_DECLSPEC extern mca_atomic_base_component_1_0_0_t
|
|
|
|
mca_atomic_mxm_component;
|
|
|
|
|
|
|
|
/* this component works with spml:ikrit only */
|
2016-05-25 15:34:40 -06:00
|
|
|
extern mca_spml_ikrit_t *mca_atomic_mxm_spml_self;
|
2013-09-10 15:34:09 +00:00
|
|
|
|
|
|
|
OSHMEM_DECLSPEC void atomic_mxm_lock(int pe);
|
|
|
|
OSHMEM_DECLSPEC void atomic_mxm_unlock(int pe);
|
|
|
|
|
|
|
|
/* API functions */
|
|
|
|
|
|
|
|
int mca_atomic_mxm_init(bool enable_progress_threads, bool enable_threads);
|
|
|
|
int mca_atomic_mxm_finalize(void);
|
|
|
|
mca_atomic_base_module_t*
|
|
|
|
mca_atomic_mxm_query(int *priority);
|
|
|
|
|
|
|
|
int mca_atomic_mxm_fadd(void *target,
|
|
|
|
void *prev,
|
|
|
|
const void *value,
|
|
|
|
size_t nlong,
|
|
|
|
int pe,
|
|
|
|
struct oshmem_op_t *op);
|
|
|
|
int mca_atomic_mxm_cswap(void *target,
|
|
|
|
void *prev,
|
|
|
|
const void *cond,
|
|
|
|
const void *value,
|
|
|
|
size_t nlong,
|
|
|
|
int pe);
|
|
|
|
|
|
|
|
struct mca_atomic_mxm_module_t {
|
|
|
|
mca_atomic_base_module_t super;
|
|
|
|
};
|
|
|
|
typedef struct mca_atomic_mxm_module_t mca_atomic_mxm_module_t;
|
|
|
|
OBJ_CLASS_DECLARATION(mca_atomic_mxm_module_t);
|
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
|
2016-10-25 18:07:16 +03:00
|
|
|
/* move to spml/ikrit */
|
2014-05-22 05:58:22 +00:00
|
|
|
static inline mxm_mem_key_t *to_mxm_mkey(sshmem_mkey_t *mkey) {
|
|
|
|
|
|
|
|
if (0 == mkey->len) {
|
2014-12-16 16:34:42 +02:00
|
|
|
return &mxm_empty_mem_key;
|
2014-05-22 05:58:22 +00:00
|
|
|
}
|
|
|
|
return (mxm_mem_key_t *)mkey->u.data;
|
|
|
|
}
|
|
|
|
|
2013-09-10 15:34:09 +00:00
|
|
|
#endif /* MCA_ATOMIC_MXM_H */
|