---
title: SetStorageShape
description: "设置aclTensor的StorageShape属性。"
url: https://www.hiascend.com/document/detail/zh/canncommercial/latest/API/aolapi/atlasascendc_api_07_1069.html
sourcePath: /source/zh/canncommercial/900/API/aolapi/atlasascendc_api_07_1069.html
indexId: 63e90e71957972f1608b56eb08087be95a6241fc80e767d894beafacdc2571db70
---
# SetStorageShape

#### 功能说明

设置aclTensor的StorageShape属性。

StorageShape表示aclTensor在内存上的实际排布，即OriginShape实际运行时的shape格式。


#### 函数原型

```
void SetStorageShape(const op::Shape &shape)
```


#### 参数说明

| 参数 | 输入/输出 | 说明 |
| --- | --- | --- |
| shape | 输入 | 数据类型为op::Shape（即gert::Shape），记录了一组shape信息，例如一个三维shape：[10, 20, 30]。 说明： gert::Shape介绍参见《基础数据结构和接口(https://www.hiascend.com/document/detail/zh/canncommercial/900/maintenref/basicdataapi/atlasopapi\_07\_00001.html)》中“gert::Shape(https://www.hiascend.comdocument/detail/zh/canncommercial/900/maintenref/basicdataapi/atlasopapi\_07\_00149.html)”。 |


#### 返回值说明

无


#### 约束说明

无


#### 调用示例

```
// 将input的StorageShape设置为[1, 2, 3, 4, 5]
void Func(aclTensor *input) {
    gert::Shape newShape;
    for (int64_t i = 1; i <= 5; i++) {
        newShape.AppendDim(i);
    }
    input->SetStorageShape(newShape);
}
```
