ProfDataTypeConfig
Profiling data type configuration file. The header file is include/ge/ge_prof.h in the CANN component directory.
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. kProfL2cache, = 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. }; |
Parent topic: Data Structures and APIs