下载
中文
注册

aclCreateTensorList

函数功能

创建aclTensorList对象,作为单算子API执行接口的入参。

aclTensorList是AscendCL定义的一种用来管理和存储多个张量数据的列表结构,开发者无需关注其内部实现,直接使用即可。

函数原型

aclTensorList *aclCreateTensorList(const aclTensor *const *value, uint64_t size)

参数说明

参数名

输入/输出

说明

value

输入

aclTensor类型的指针数组,其指向的值会赋给TensorList。

size

输入

张量列表的长度,取值大于0。

返回值说明

成功则返回创建好的aclTensorList,否则返回nullptr。

约束与限制

调用示例

关键代码示例如下,仅供参考,不支持直接拷贝运行。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
// 创建aclTensor: input1 input2
std::vector<int64_t> shape = {1, 2, 3};
aclTensor *input1 = aclCreateTensor(shape.data(), shape.size(), aclDataType::ACL_FLOAT,
nullptr, 0, aclFormat::ACL_FORMAT_ND, shape.data(), shape.size(), nullptr);
aclTensor *input2 = aclCreateTensor(shape.data(), shape.size(), aclDataType::ACL_FLOAT,
nullptr, 0, aclFormat::ACL_FORMAT_ND, shape.data(), shape.size(), nullptr);
// 创建aclTensorList
std::vector<aclTensor *> tmp{input1, input2};
aclTensorList* tensorList = aclCreateTensorList(tmp.data(), tmp.size());
// aclTensorList作为单算子API执行接口的入参
auto ret = aclnnXxxGetWorkspaceSize(srcTensor, tensorList, ..., outTensor, ..., &workspaceSize, &executor);
ret = aclnnXxx(...);
...
// 销毁aclTensorList
ret = aclDestroyTensorList(tensorList);