* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
#ifndef SHMEM_DEVICE_COMMON_HPP
#define SHMEM_DEVICE_COMMON_HPP
#include "shmemi_def.h"
#include "shmemi_device_meta.h"
#if defined(MULTI_INSTANCE)
[[block_local]] __inline__ uint64_t g_instance_addr;
ACLSHMEM_DEVICE uint64_t aclshmemx_instance_ctx_get()
{
return g_instance_addr;
}
ACLSHMEM_DEVICE void aclshmemx_instance_ctx_set(uint64_t instance_id)
{
g_instance_addr = SMEM_SHM_DEVICE_USER_CONTEXT_ADDR + (instance_id << 1) * SMEM_SHM_DEVICE_USER_CONTEXT_PRE_SIZE;
return;
}
#else
__attribute__((unavailable("requires macro MULTI_INSTANCE to be defined!")))
ACLSHMEM_DEVICE uint64_t aclshmemx_instance_ctx_get();
__attribute__((unavailable("requires macro MULTI_INSTANCE to be defined!")))
ACLSHMEM_DEVICE void aclshmemx_instance_ctx_set(uint64_t instance_id);
#endif
ACLSHMEM_DEVICE __gm__ aclshmem_device_host_state_t *aclshmemi_get_state() {
#if defined(MULTI_INSTANCE)
return reinterpret_cast<__gm__ aclshmem_device_host_state_t *>(g_instance_addr);
#else
return reinterpret_cast<__gm__ aclshmem_device_host_state_t *>(aclshmemi_get_extra_context_addr(0));
#endif
}
ACLSHMEM_DEVICE int aclshmemi_get_my_pe()
{
return aclshmemi_get_state()->mype;
}
ACLSHMEM_DEVICE int aclshmemi_get_total_pe()
{
return aclshmemi_get_state()->npes;
}
ACLSHMEM_DEVICE uint64_t aclshmemi_get_heap_size()
{
return aclshmemi_get_state()->heap_size;
}
template<typename T>
ACLSHMEM_DEVICE void aclshmemi_store(__gm__ T *addr, T val)
{
*((__gm__ T *)addr) = val;
}
template<typename T>
ACLSHMEM_DEVICE T aclshmemi_load(__gm__ T *cache)
{
return *((__gm__ T *)cache);
}
#endif