GetInputShape
函数功能
获取算子输入张量的实际存储形状。
函数原型
const gert::StorageShape* GetInputShape(int64_t index) const
参数说明
返回值说明
返回StorageShape结构体,表示该输入张量的存储形状。
约束说明
使用时必须确保:不要对返回的StorageShape做修改,也不要试图释放它。
调用示例
gert::StorageShape* GetInputShape(ExeResGenerationContext* context) {
int64_t index = 9;
gert::StorageShape* shape = context->GetInputShape(index);
...
}