acldumpType

1
2
3
4
5
6
7
enum acldumpType {
    AIC_ERR_BRIEF_DUMP = 1,         // Lightweight exception dump
    AIC_ERR_NORM_DUMP = 2,          // Common exception dump: extends the lightweight exception dump with the shape, data type, format, and attribute information.
     AIC_ERR_DETAIL_DUMP = 3,        // Detailed exception dump: extends the lightweight exception dump with the internal storage, register, and call stack information about the AI Core.
     DATA_DUMP = 4,                  // Model dump configuration and single-operator dump configuration
    OVERFLOW_DUMP = 5               // Overflow operator dump
};