GetStorageFormat
功能说明
获取aclTensor的StorageFormat。
StorageFormat表示aclTensor在内存中的排布格式,例如NCHW、ND等。
函数原型
op::Format GetStorageFormat()
参数说明
无
返回值说明
返回一个op::Format(即ge::Format),本身是一个枚举,包含多种不同的Format,例如NCHW、ND等。
ge::Format介绍参见《基础数据结构和接口参考》中“ge命名空间 > Format”。
约束说明
无
调用示例
1 2 3 | void Func(const aclTensor *input) { auto format = input->GetStorageFormat(); } |
父主题: common_types