aclrtCntNotifyRecordMode

typedef enum {
    ACL_RT_CNT_NOTIFY_RECORD_SET_VALUE_MODE = 0,      // Overwrite mode. CntNotify count = Value
    ACL_RT_CNT_NOTIFY_RECORD_ADD_MODE = 1,            // Accumulation mode. CntNotify count = Current value + Value
    ACL_RT_CNT_NOTIFY_RECORD_BIT_OR_MODE = 2,         // Bitwise OR mode. CntNotify count = Current value | Value
    ACL_RT_CNT_NOTIFY_RECORD_BIT_AND_MODE = 4,        // Bitwise AND mode. CntNotify count = Current value & Value
} aclrtCntNotifyRecordMode;