Function: set_attr_list_list_int
C Prototype |
aclError aclopSetAttrListListInt(aclopAttr *attr, const char *attrName, int numLists, const int *numValues, const int64_t *const values[]); |
---|---|
Python Function |
ret = acl.op.set_attr_list_list_int(attr, attr_name , values) |
Function Usage |
Sets the list attribute value of the int64_t type list. It is a synchronous interface. |
Input Description |
attr: int, attribute address object of the ACL operator. This object is created by calling acl.op.create_attr. attr_name: str, attribute name. values: list. Each element in the list is a one-dimensional array numpy object. The type of the numpy object is int64. |
Return Value |
ret: int, error code.
|
Restrictions |
None |
Precautions |
None |