GetStorageShape
功能说明
获取aclTensor的StorageShape属性。
StorageShape表示aclTensor在内存上的实际排布,即OriginShape实际运行时的shape格式。
函数原型
gert::Shape GetStorageShape()
参数说明
无
返回值说明
返回值为gert::Shape,记录了一组shape信息,例如一个三维shape:[10, 20, 30]。
gert::Shape介绍参见《基础数据结构和接口参考》中“gert命名空间 > Shape”。
约束说明
无
调用示例
1 2 3 | void Func(const aclTensor *input) { auto shape = input->GetStorageShape(); } |
父主题: common_types