aclopCreateHandle
Applicability
Product |
Supported |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Prototype
aclError aclopCreateHandle(const char *opType, int numInputs, const aclTensorDesc *const inputDesc[], int numOutputs, const aclTensorDesc *const outputDesc[], const aclopAttr *opAttr, aclopHandle **handle)
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
opType |
Input |
Pointer to the operator type name. |
numInputs |
Input |
Number of operator input tensors. |
inputDesc |
Input |
Pointer array of the operator input tensor description. |
numOutputs |
Input |
Number of operator output tensors. |
outputDesc |
Input |
Pointer array of the operator output tensor description. |
opAttr |
Input |
Pointer to the operator attributes. |
handle |
Output |
Pointer to the pointer to the aclopHandle data. |
Returns
0 on success; else, failure. For details, see aclError.
Restrictions
If an operator has a constant input but aclSetTensorConst has not been called to set the constant input, call aclSetTensorPlaceMent to set the placement attribute of TensorDesc and set memType to the host memory.