ProfDataTypeConfig

1
2
3
4
5
6
7
8
9
enum ProfDataTypeConfig {
  kProfTaskTime,          = 0x0002,      // Collect operator delivery and execution duration data, as well as basic operator information, to provide more comprehensive performance analysis data.
  kProfAiCoreMetrics,     = 0x0004,      // AI Core data
  kProfAicpu,             = 0x0008,      // AI CPU data, which is not supported in the current version.
  kProL2cache,            = 0x0010,      // L2 cache sampling data
  kProfHccl,              = 0x0020,      // Collective communication data
  kProfTrainingTrace,     = 0x0040,      // Iteration traces
  kProfTaskTimeL0,        = 0x0800,      // Collect operator delivery and execution duration data. Compared with kProfTaskTime, it does not collect basic operator information, so the performance overhead during collection is smaller, and this enables more accurate collection of statistics on time duration data.
};