|
34 | 34 | #define PROCESS_INFO_CSV_FORMAT "%d,%d,%d,%3.2f,%3.2f,%s,%s\n" |
35 | 35 | #define PROCESS_INFO_CSV_HDR_FORMAT "\nSNo,PID,Samples,Power(Joules),Power(%),Name,Path\n\n" |
36 | 36 | #else // Windows |
37 | | - #define PROCESS_INFO_TXT_FORMAT "%d\t%d\t%d\t%3.2f\t%3.2f\t\t%3.2f\t\t%-45.45s\t%s\n" |
38 | | - #define PROCESS_INFO_TXT_HDR_FORMAT "\nSNo\tPID\tSamples\tIPC\tPower(Joules)\tPower(%)\tName\t\t\t\t\t\tPath\n\n" |
39 | | - #define PROCESS_INFO_CSV_FORMAT "%d,%d,%d,%3.2f,%3.2f,%3.2f,%s,%s\n" |
40 | | - #define PROCESS_INFO_CSV_HDR_FORMAT "\nSNo,PID,Samples,IPC,Power(Joules),Power(%),Name,Path\n\n" |
| 37 | + #define PROCESS_INFO_TXT_FORMAT "%d\t%d\t%d\t%3.2f\t\t%3.2f\t\t%-45.45s\t%s\n" |
| 38 | + #define PROCESS_INFO_TXT_HDR_FORMAT "\nSNo\tPID\tSamples\tPower(Joules)\tPower(%)\tName\t\t\t\t\t\tPath\n\n" |
| 39 | + #define PROCESS_INFO_CSV_FORMAT "%d,%d,%d,%3.2f,%3.2f,%s,%s\n" |
| 40 | + #define PROCESS_INFO_CSV_HDR_FORMAT "\nSNo,PID,Samples,Power(Joules),Power(%),Name,Path\n\n" |
41 | 41 | #endif |
42 | 42 |
|
43 | 43 | void ppReporter::ReportHeader() |
@@ -465,9 +465,6 @@ void ppReporterText::WriteProcessData(AMDTUInt32 recCnt, AMDTPwrProcessInfo*& pI |
465 | 465 | cnt, |
466 | 466 | recInfo->m_pid, |
467 | 467 | recInfo->m_sampleCnt, |
468 | | -#if AMDT_BUILD_TARGET != AMDT_LINUX_OS // Windows |
469 | | - recInfo->m_ipc, |
470 | | -#endif |
471 | 468 | recInfo->m_power, |
472 | 469 | (recInfo->m_power * 100) / totalPower, |
473 | 470 | recInfo->m_name, |
@@ -759,9 +756,6 @@ void ppReporterCsv::WriteProcessData(AMDTUInt32 recCnt, AMDTPwrProcessInfo*& pIn |
759 | 756 | cnt, |
760 | 757 | recInfo->m_pid, |
761 | 758 | recInfo->m_sampleCnt, |
762 | | -#if AMDT_BUILD_TARGET != AMDT_LINUX_OS // Windows |
763 | | - recInfo->m_ipc, |
764 | | -#endif |
765 | 759 | recInfo->m_power, |
766 | 760 | (recInfo->m_power * 100) / totalPower, |
767 | 761 | recInfo->m_name, |
|
0 commit comments