shape
功能说明
获取Tensor形状。
函数原型
shape()
参数说明
无。
支持的型号
Atlas 200/300/500 推理产品
Atlas 训练系列产品
Atlas推理系列产品(Ascend 310P处理器)AI Core
Atlas推理系列产品(Ascend 310P处理器)Vector Core
Atlas A2训练系列产品/Atlas 800I A2推理产品
Atlas 200/500 A2推理产品
注意事项
无
返回值
shape形状: List类型,List中的元素为立即数(int)、Scalar(int、uint)或Expr(int、uint)。
调用示例
from tbe import tik tik_instance = tik.Tik() data_A = tik_instance.Tensor("float16", (128,), name="data_A", scope=tik.scope_ubuf) data_A.shape
返回:[128]
父主题: Tensor管理