---
title: MutableFormat
description: "获取Tensor的数据格式，包含运行时数据格式和原始数据格式。"
url: https://www.hiascend.com/document/detail/zh/canncommercial/latest/maintenref/basicdataapi/atlasopapi_07_00757.html
sourcePath: /source/zh/canncommercial/900/maintenref/basicdataapi/atlasopapi_07_00757.html
indexId: 07b151134cff84636fa29047c0fc53c53786a8b94ef425f6b9ff0c93d27f3d0b78
---
# MutableFormat

#### 函数功能

获取Tensor的数据格式，包含运行时数据格式和原始数据格式。


#### 函数原型

```
StorageFormat &MutableFormat()
```


#### 参数说明

无


#### 返回值说明

Format引用。

关于StorageFormat类型的定义，请参见StorageFormat。


#### 约束说明

无


#### 调用示例

```
TensorV2 tensor{{{8, 3, 224, 224}, {16, 3, 224, 224}},       // shape              
                {ge::FORMAT_ND, ge::FORMAT_FRACTAL_NZ, {}},  // format              
                kFollowing,                                  // placement              
                ge::DT_FLOAT16,                              //dt              
                nullptr};
auto fmt = tensor.MutableFormat();
```
