68 строки
1.9 KiB
C
68 строки
1.9 KiB
C
/*
|
|
* Copyright (c) 2013 Mellanox Technologies, Inc.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "oshmem_config.h"
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "oshmem/constants.h"
|
|
#include "oshmem/mca/atomic/atomic.h"
|
|
#include "oshmem/mca/atomic/base/base.h"
|
|
#include "oshmem/runtime/runtime.h"
|
|
|
|
#include "atomic_ucx.h"
|
|
|
|
int mca_atomic_ucx_cswap(void *target,
|
|
void *prev,
|
|
const void *cond,
|
|
const void *value,
|
|
size_t nlong,
|
|
int pe)
|
|
{
|
|
ucs_status_t status;
|
|
ucs_status_ptr_t status_ptr;
|
|
spml_ucx_mkey_t *ucx_mkey;
|
|
uint64_t rva;
|
|
uint64_t val;
|
|
|
|
if ((8 != nlong) && (4 != nlong)) {
|
|
ATOMIC_ERROR("[#%d] Type size must be 4 or 8 bytes.", my_pe);
|
|
return OSHMEM_ERROR;
|
|
}
|
|
|
|
ucx_mkey = mca_spml_ucx_get_mkey(pe, target, (void *)&rva);
|
|
val = (8 == nlong) ? *(uint64_t*)value : *(uint32_t*)value;
|
|
if (NULL == cond) {
|
|
status_ptr = ucp_atomic_fetch_nb(mca_spml_self->ucp_peers[pe].ucp_conn,
|
|
UCP_ATOMIC_FETCH_OP_SWAP, val, prev, nlong,
|
|
rva, ucx_mkey->rkey, mca_atomic_ucx_complete_cb);
|
|
status = mca_atomic_ucx_wait_request(status_ptr);
|
|
}
|
|
else {
|
|
switch (nlong) {
|
|
case 4:
|
|
status = ucp_atomic_cswap32(mca_spml_self->ucp_peers[pe].ucp_conn,
|
|
*(uint32_t *)cond, *(uint32_t *)value, rva, ucx_mkey->rkey, prev);
|
|
break;
|
|
case 8:
|
|
status = ucp_atomic_cswap64(mca_spml_self->ucp_peers[pe].ucp_conn,
|
|
*(uint64_t *)cond, *(uint64_t *)value, rva, ucx_mkey->rkey, prev);
|
|
break;
|
|
default:
|
|
assert(0); /* should not be here */
|
|
break;
|
|
}
|
|
}
|
|
|
|
return ucx_status_to_oshmem(status);
|
|
}
|
|
|
|
|