aclRegisterCallbackType

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
typedef enum aclRegisterCallbackType {
    ACL_REG_TYPE_ACL_MODEL,           // Model management
    ACL_REG_TYPE_ACL_OP_EXECUTOR,     // Single-operator calling
    ACL_REG_TYPE_ACL_OP_CBLAS,        // CBLAS API in single-operator calling
    ACL_REG_TYPE_ACL_OP_COMPILER,     // Single-operator compilation
    ACL_REG_TYPE_ACL_TDT_CHANNEL,     // Tensor data transmission
    ACL_REG_TYPE_ACL_TDT_QUEUE,       // Shared queue management
    ACL_REG_TYPE_ACL_DVPP,            // Media data processing
    ACL_REG_TYPE_ACL_RETR,            // Feature vector search
    ACL_REG_TYPE_OTHER = 0xFFFF,      // User-defined function
} aclRegisterCallbackType;