---
title: MutableFormat
description: "获取Tensor的format，包含运行时format和原始format。"
url: https://www.hiascend.com/document/detail/zh/canncommercial/latest/maintenref/basicdataapi/atlasopapi_07_00216.html
sourcePath: /source/zh/canncommercial/900/maintenref/basicdataapi/atlasopapi_07_00216.html
indexId: 86b2e92f9fb4a5b4b647ff84e894a1fa4cd852ef883d25e4cffa39bb3e7814e578
---
# MutableFormat

#### 函数功能

获取Tensor的format，包含运行时format和原始format。


#### 函数原型

StorageFormat &MutableFormat()


#### 参数说明

无。


#### 返回值说明

format引用。

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


#### 约束说明

无。


#### 调用示例

```
Tensor 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();
```
