Windows
Collect all the power counter values for a duration of 10 seconds with sampling interval of 100 milliseconds
C:\> AMDuProfCLI.exe timechart --event power --interval 100 --duration 10
Collect all the frequency counter values for 10 seconds, sampling them every 500 milliseconds and dumping the results into a csv file
C:\> AMDuProfCLI.exe timechart --event frequency -o C:\Temp\output --interval 500 --duration 10
Collect all the frequency counter values at core 0 to 3 for 10 seconds, sampling them every 500 milliseconds and dumping the results into a text file
C:\> AMDuProfCLI.exe timechart --event core=0-3,frequency -o C:\Temp\PowerOutput --interval
500 -duration 10 --format txt
Linux
Collect all the power counter values for a duration of 10 seconds with sampling interval of 100 milliseconds
$ ./AMDuProfCLI timechart --event power --interval 100 --duration 10
Collect all the frequency counter values for 10 seconds, sampling them every 500 milliseconds and dumping the results into a csv file
$ ./AMDuProfCLI timechart --event frequency -o /tmp/PowerOutput --interval 500 --duration 10
Collect all the frequency counter values at core 0 to 3 for 10 seconds, sampling them every 500 milliseconds and dumping the results into a text file
$ ./AMDuProfCLI timechart --event core=0-3,frequency -o /tmp/PowerOutput --interval 500 -- duration 10 --format txt