1
1
openmpi/oshmem/shmem/c/shmem_addr_accessible.c

30 строки
626 B
C

/*
* Copyright (c) 2013 Mellanox Technologies, Inc.
* All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "oshmem_config.h"
#include "oshmem/constants.h"
#include "oshmem/include/shmem.h"
#include "oshmem/runtime/runtime.h"
#include "oshmem/mca/memheap/memheap.h"
int shmem_addr_accessible(void *addr, int pe)
{
uint64_t rva;
mca_spml_mkey_t *mkey;
RUNTIME_CHECK_INIT();
mkey = MCA_MEMHEAP_CALL(get_cached_mkey(pe, (unsigned long)addr,
oshmem_get_transport_id(pe), &rva));
return mkey ? 1 : 0;
}