GetPhyAddr
产品支持情况
功能说明
获取全局数据的地址。
函数原型
-
获取全局数据的地址
__aicore__ inline const __gm__ PrimType* GetPhyAddr() const -
获取全局数据(指定偏移offset个元素)的地址
__aicore__ inline __gm__ PrimType* GetPhyAddr(const uint64_t offset) const
参数说明
表 1 参数说明
返回值说明
全局数据的地址。
约束说明
无。
调用示例
AscendC::LocalTensor<T> xLocal = inQueueX.DeQue<T>();
AscendC::LocalTensor<T> yLocal = outQueueY.AllocTensor<T>();
// 调用GetPhyAddr()返回LocalTensor地址,CPU上返回的是指针类型(T*),NPU上返回的是物理存储的地址(uint64_t)
__ubuf__ T* srcAddr = reinterpret_cast<__ubuf__ T*>(xLocal.GetPhyAddr());
__ubuf__ T* dstAddr = reinterpret_cast<__ubuf__ T*>(yLocal.GetPhyAddr());