跳到主要内容

构造函数

函数功能

构造一个格式,格式包括原始格式、运行时格式、补维规则。

函数原型

StorageFormat()
StorageFormat(const ge::Format origin_format, const ge::Format storage_format, const ExpandDimsType &expand_dims_type)

参数说明

参数输入/输出说明
origin_format输入原始格式。
storage_format输入运行时格式。
expand_dims_type输入补维规则。

返回值

返回一个指定了origin_format、storage_format和expand_dims_type的StorageFormat对象

约束说明

调用示例

ExpandDimsType dim_type("1100");
StorageFormat format(ge::Format::FORMAT_NCHW, ge::Format::FORMAT_C1HWNC0, dim_type);