用于封装算子的输入aclTensor和aclTensorList。
OP_INPUT(x...)
参数 |
输入/输出 |
说明 |
---|---|---|
x... |
输入 |
输入的aclTensor和aclTensorList。 |
如果算子包含非aclTensor且非aclTensorList的输入参数,需要先调用aclOpExecutor::ConverToTensor将参数转换为aclTensor。
1 2 | // 封装算子的两个输入参数,self和other OP_INPUT(self, other); |