You are not logged in.

#1 2014-09-02 23:39:15

buntolo
Member
Registered: 2011-10-11
Posts: 202

Haswell temperature problems with pstate

I have temperatures problem with an i7-4710MQ CPU @ 2.50GHz (@3.5GHz in Turbo mode).
Kernel is Linux 3.16.1-1-ARCH and I am using intel_pstate driver.

$ LC_ALL=C cpupower frequency-info
analyzing CPU 0:
  driver: intel_pstate
  CPUs which run at the same hardware frequency: 0
  CPUs which need to have their frequency coordinated by software: 0
  maximum transition latency: 0.97 ms.
  hardware limits: 800 MHz - 3.50 GHz
  available cpufreq governors: performance, powersave
  current policy: frequency should be within 800 MHz and 3.50 GHz.
                  The governor "powersave" may decide which speed to use
                  within this range.
  boost state support:
    Supported: yes
    Active: yes

$ cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver
intel_pstate
intel_pstate
intel_pstate
intel_pstate
intel_pstate
intel_pstate
intel_pstate

intel_pstate

I have quite high temperatures at idle, this is the lowest:

$ sensors
coretemp-isa-0000
Adapter: ISA adapter
Physical id 0:  +54.0°C  (high = +84.0°C, crit = +100.0°C)
Core 0:         +52.0°C  (high = +84.0°C, crit = +100.0°C)
Core 1:         +54.0°C  (high = +84.0°C, crit = +100.0°C)
Core 2:         +51.0°C  (high = +84.0°C, crit = +100.0°C)
Core 3:         +50.0°C  (high = +84.0°C, crit = +100.0°C)

Sometime it stays at 60° for quite a lot too.

It went over 70°C as well (it's just 6% CPU load):
YqKultj.png

All these temperatures are taken with discrete GPU turned OFF! I am not using discrete GPU while using Linux.


Windows has lower temperatures, it will not raise above 80°C when playing heavy games, like Crysis or Star Citizen, at 1920x1080. At idle I have never seen any core above 55°C

I have read the wiki page (https://wiki.archlinux.org/index.php/CP … cy_scaling) but I can not find anything useful.
I have installed thermald which it seems to do nothing if leaved at default. I do not know how to configure it .xml config file as man page says nothing (it is just a repaste of the .xml config file) and I have not managed to find any good guide on the web.
The problem is that I find useless to keep low temperatures by just spinning fan at high-loudness speeds, I just want keep CPU cooler by making it use lower voltages and loads.
Documentation is scarce and on the offical page you can only find an introduction to its theoretical principles, nothing about it's regulation.

https://wiki.ubuntu.com/Kernel/PowerMan … rmalIssues
https://wiki.debian.org/thermald
https://01.org/linux-thermal-daemon/doc … mal-daemon


For now disabling Turbo and 2 of 4 cores helps control temperatures, but definitely it is NOT a solution.

1) What could I do with thermald?
2) First: I already KNOW that intel_pstate behavior is "special" and totally different from the old Core days when we were using 'ondemand' and such. This stated I would like to "transform" the 4710 in a 4702 or 4712 by lowering it's frequencies from 2.5@3.5 to 2.2@3.3 or even lower. The problem is that I do not understand how: reading the wiki I do not understand if the solution proposed can be applied only on acpi or both acpi and pstate (https://wiki.archlinux.org/index.php/CP … requencies).

Regarding pstate behavior: with Turbo enabled frequencies were always around 2.5GHz; without it they are in the 0.8/1.35GH range. It is said that frequency is a liar and it has nothing to do with energy drain as pstate can put inactive cores at near-0MHz and near-0W.
A fact is that disabling 2 cores I get lower temperatures (which to me seems pretty logic)
Another fact is that disabling Turbo frequencies drop as well as temperatures. I am running this machine for 20 minutes and yet I have not seen CPU raising above 52°C.

Last edited by buntolo (2014-09-02 23:50:27)

Offline

#2 2014-09-04 23:58:16

kang
Member
Registered: 2010-08-07
Posts: 83

Re: Haswell temperature problems with pstate

check with i7-git or turbostat, I suspect you're not entering correct C-states.

Also p-states + full "tickless" = turbo mode always on (its a bug), just in case you run that (its not in the default kernel).

Offline

#3 2014-09-07 01:02:32

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

I have not understood the full thickness thing, could you try to explain it differently or provide some search key for Google? It seems you have useful information for me.

Offline

#4 2014-09-09 09:35:44

kang
Member
Registered: 2010-08-07
Posts: 83

Re: Haswell temperature problems with pstate

zgrep NO_HZ /proc/config.gz
if CONFIG_NO_HZ_FULL=1 that means "full tickless"

You probably want to run turbostat regardless - check the CPU states, if idle you should probably see a lot of CPU%c7. Also check the packages states, if nothing is under Pkg%pc2 there might be something that keeps other parts of the chipset on. Finally look at GfxWatt which should be fairly low at idle (like 0.01w) if RC6 sleep mode is enabled.

Offline

#5 2014-09-09 16:59:40

Hydranix
Member
Registered: 2013-02-10
Posts: 55

Re: Haswell temperature problems with pstate

Try running this as root...

#!/usr/bin/bash
cd /tmp
wget http://aur.archlinux.org/packages/i7/i7z-git/i7z-git.tar.gz
tar xfv i7z-git.tar.gz
cd i7z-git
makepkg --asroot -i
i7z

It should tell you plenty about your CPU, copy and paste its output. (you might need to make the terminal window bigger if you can't see the full output...)

Offline

#6 2014-09-10 17:44:36

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

After upgrading the kernel and everything, it seems working.

I will wait some days to mark the thread as [SOLVED], just the time to check everything is fine.

Offline

#7 2014-09-10 19:55:02

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Haswell temperature problems with pstate

There no need to run makepkg with the --asroot flag.  I would just:

makepkg -srci

CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#8 2014-09-17 13:02:57

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

After days of checking nothing has changed. Right now I'm running at 62°C without load. Still I get really high turbo frequency, like 3/3.4 GHz.
Windows 8 have not all these temperature problems (it stays in the low-50°C and it takes a bit to get there) and CPU-Z show 800-1000 MHz frequency during easy tasks.

$ zgrep NO_HZ /proc/config.gz 
CONFIG_NO_HZ_COMMON=y
CONFIG_NO_HZ_IDLE=y
# CONFIG_NO_HZ_FULL is not set
# CONFIG_NO_HZ is not set
CONFIG_RCU_FAST_NO_HZ=y


Here is i7z:

Cpu speed from cpuinfo 2494.00Mhz
cpuinfo might be wrong if cpufreq is enabled. To guess correctly try estimating
Linux's inbuilt cpu_khz code emulated now
True Frequency (without accounting Turbo) 2493 MHz
  CPU Multiplier 25x || Bus clock frequency (BCLK) 99.72 MHz

Socket [0] - [physical cores=4, logical cores=8, max online cores ever=4]
  TURBO ENABLED on 4 Cores, Hyper Threading ON
  Max Frequency without considering Turbo 2592.72 MHz (99.72 x [26])
  Max TURBO Multiplier (if Enabled) with 1/2/3/4 Cores is  35x/34x/33x/33x
  Real Current Frequency 3483.92 MHz [99.72 x 34.94] (Max of below)
        Core [core-id]  :Actual Freq (Mult.)      C0%   Halt(C1)%  C3 %   C6 %
        Core 1 [0]:       3483.92 (34.94x)       1.7    95.6       1       1
        Core 2 [1]:       3421.50 (34.31x)         1    99.9       0       0
        Core 3 [2]:       3446.50 (34.56x)         1    99.7       0       0
        Core 4 [3]:       3449.00 (34.59x)         1    98.8       0       1



C0 = Processor running without halting
C1 = Processor running with halts (States >C0 are power saver)
C3 = Cores running with PLL turned off and core cache turned off
C6 = Everything in C3 + core state saved to last level cache
  Above values in table are in percentage over the last 1 sec

Last edited by buntolo (2014-09-17 13:03:29)

Offline

#9 2014-09-17 13:11:07

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: Haswell temperature problems with pstate

i7z is outdated, those numbers are bogus, use i2z-git from AUR.

Beyond that, it seems pstate in kernel 3.16 is a bit flaky, disable it and see if acpi_cpufreq ondemand behaves better.

Offline

#10 2014-09-17 19:03:41

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Haswell temperature problems with pstate

Yeah, you should be in C7 state with haswell.  Something is wrong.  Do use i7z-git and post back.

My i3-4130T (Haswell):

# i7z
Cpu speed from cpuinfo 2900.00Mhz
cpuinfo might be wrong if cpufreq is enabled. To guess correctly try estimating via tsc
Linux's inbuilt cpu_khz code emulated now
True Frequency (without accounting Turbo) 2900 MHz
  CPU Multiplier 29x || Bus clock frequency (BCLK) 100.00 MHz

Socket [0] - [physical cores=2, logical cores=4, max online cores ever=2]
  TURBO DISABLED on 2 Cores, Hyper Threading ON
  Max Frequency without considering Turbo 2900.00 MHz (100.00 x [29])
  Max TURBO Multiplier (if Enabled) with 1/2/3/4 Cores is  29x/29x/29x/29x
  Real Current Frequency 860.42 MHz [100.00 x 8.60] (Max of below)
        Core [core-id]  :Actual Freq (Mult.)      C0%   Halt(C1)%  C3 %   C6 %   C7 %  Temp      VCore
        Core 1 [0]:       860.42 (8.60x)           1    0.573      0       0    99.3    24      0.6804
        Core 2 [1]:       856.62 (8.57x)        1.79    0.515      1       0      98    24      0.6830

CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#11 2014-09-17 19:16:03

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

Gusar wrote:

i7z is outdated, those numbers are bogus, use i2z-git from AUR.

Beyond that, it seems pstate in kernel 3.16 is a bit flaky, disable it and see if acpi_cpufreq ondemand behaves better.


Now I am using i7z-git.

Houston we've got a problem...

Cpu speed from cpuinfo 2493.00Mhz
cpuinfo might be wrong if cpufreq is enabled. To guess correctly try estimating
Linux's inbuilt cpu_khz code emulated now
True Frequency (without accounting Turbo) 2494 MHz
  CPU Multiplier 25x || Bus clock frequency (BCLK) 99.76 MHz

Socket [0] - [physical cores=4, logical cores=8, max online cores ever=4]
  TURBO ENABLED on 4 Cores, Hyper Threading ON
  Max Frequency without considering Turbo 2593.76 MHz (99.76 x [26])
  Max TURBO Multiplier (if Enabled) with 1/2/3/4 Cores is  35x/34x/33x/33x
  Real Current Frequency 3305.35 MHz [99.76 x 33.13] (Max of below)
        Core [core-id]  :Actual Freq (Mult.)      C0%   Halt(C1)%  C3 %   C6 %
        Core 1 [0]:       3257.16 (32.65x)         1       0       1       0
        Core 2 [1]:       3305.35 (33.13x)         1    22.4       0       0
        Core 3 [2]:       3284.97 (32.93x)         1    26.1       0       0
        Core 4 [3]:       3009.34 (30.17x)         1    22.8       0       0



C0 = Processor running without halting
C1 = Processor running with halts (States >C0 are power saver modes with cores i
C3 = Cores running with PLL turned off and core cache turned off
C6, C7 = Everything in C3 + core state saved to last level cache, C7 is deeper t
  Above values in table are in percentage over the last 1 sec

All cores spend most of the time on high frequency and out of C1 state.

Offline

#12 2014-09-17 19:20:03

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Haswell temperature problems with pstate

Start by dropping out of X.  Any change?  Look at htop.  Anything sucking down the CPU cycles?


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#13 2014-09-17 19:28:16

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

graysky wrote:

Start by dropping out of X.  Any change?  Look at htop.  Anything sucking down the CPU cycles?

Nothing sucks CPU more than 5%, and even that rarely occours.
After installing stuff I'll try without X.

$ top -b -n 1
top - 21:27:12 up  1:32,  3 users,  load average: 0,07, 0,10, 0,13
Tasks: 180 total,   1 running, 179 sleeping,   0 stopped,   0 zombie
%Cpu(s):  3,5 us,  0,6 sy,  0,0 ni, 95,9 id,  0,1 wa,  0,0 hi,  0,0 si,  0,0 st
KiB Mem:   8099160 total,  1440948 used,  6658212 free,    58052 buffers
KiB Swap:  3670012 total,        0 used,  3670012 free.   648200 cached Mem

  PID USER      PR  NI    VIRT    RES    SHR S  %CPU %MEM     TIME+ COMMAND
    1 root      20   0   26308   4948   2936 S   0,0  0,1   0:00.52 systemd
    2 root      20   0       0      0      0 S   0,0  0,0   0:00.00 kthreadd
    3 root      20   0       0      0      0 S   0,0  0,0   0:00.07 ksoftirqd/0
    5 root       0 -20       0      0      0 S   0,0  0,0   0:00.00 kworker/0:+
    7 root      20   0       0      0      0 S   0,0  0,0   0:00.58 rcu_preempt
    8 root      20   0       0      0      0 S   0,0  0,0   0:00.00 rcu_sched
    9 root      20   0       0      0      0 S   0,0  0,0   0:00.00 rcu_bh
   10 root      rt   0       0      0      0 S   0,0  0,0   0:00.01 migration/0
   11 root      rt   0       0      0      0 S   0,0  0,0   0:00.00 watchdog/0
   12 root      rt   0       0      0      0 S   0,0  0,0   0:00.00 watchdog/1
   13 root      rt   0       0      0      0 S   0,0  0,0   0:00.01 migration/1
   14 root      20   0       0      0      0 S   0,0  0,0   0:00.06 ksoftirqd/1
   16 root       0 -20       0      0      0 S   0,0  0,0   0:00.00 kworker/1:+
   17 root      rt   0       0      0      0 S   0,0  0,0   0:00.00 watchdog/2
   18 root      rt   0       0      0      0 S   0,0  0,0   0:00.01 migration/2
   19 root      20   0       0      0      0 S   0,0  0,0   0:00.06 ksoftirqd/2

Last edited by buntolo (2014-09-17 19:29:36)

Offline

#14 2014-09-17 19:34:28

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Haswell temperature problems with pstate

I guess what you are looking to verify is that you're able to hit C7 state (assuming you've enabled it in your BIOS).  Disable services, display-manager and either drop to or boot to the console.  Check i7z.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#15 2014-09-17 19:36:33

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

I do not get why I can see C7 only from shell...

This is what I get without X:

Socket [0] - [physical cores=4, logical cores=8, max online cores ever=4]
  TURBO ENABLED on 4 Cores, Hyper Threading ON
  Max Frequency without considering Turbo 2592.72 MHz (99.72 x [26])
  Max TURBO Multiplier (if Enabled) with 1/2/3/4 Cores is  35x/34x/33x/33x
  Real Current Frequency 1961.14 MHz [99.72 x 19.67] (Max of below)
        Core [core-id]  :Actual Freq (Mult.)      C0%   Halt(C1)%  C3 %   C6 %   C7 %  Temp      VCore
        Core 1 [0]:       1961.14 (19.67x)         1    38.9       1       0      60    48      0.9019
        Core 2 [1]:       1107.76 (11.11x)         1    0.105      0       0    99.8    49      0.8994
        Core 3 [2]:       1690.73 (16.95x)         1    0.135      0       0    99.8    47      0.9038
        Core 4 [3]:       1896.38 (19.02x)         1    0.0151     0       0     100    48      0.8994



C0 = Processor running without halting
C1 = Processor running with halts (States >C0 are power saver modes with cores idling)
C3 = Cores running with PLL turned off and core cache turned off
C6, C7 = Everything in C3 + core state saved to last level cache, C7 is deeper than C6
  Above values in table are in percentage over the last 1 sec

Last edited by buntolo (2014-09-17 19:49:50)

Offline

#16 2014-09-17 19:39:47

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Haswell temperature problems with pstate

Good, now one-by-one, start your disabled services watching the C7 state.  If it stays there, now start X.  Still there?  Figure it out.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#17 2014-09-17 19:57:23

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

graysky wrote:

Good, now one-by-one, start your disabled services watching the C7 state.  If it stays there, now start X.  Still there?  Figure it out.

I do not understand these:
1) Why do I see C7 only from shell?
2) How do I see which disabled services watching C7?
3) How do I see what X is doing if i7z show different behavior out of a shell? Should I use another tty shell after X is started?

Offline

#18 2014-09-17 20:00:14

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Haswell temperature problems with pstate

You have 6ish TTYs.  Ctrl+alt+Fx where x=1,2,3,4,5,6.  Use them.  Maybe I am misunderstanding your question.


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#19 2014-09-17 20:25:08

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

graysky wrote:

You have 6ish TTYs.  Ctrl+alt+Fx where x=1,2,3,4,5,6.  Use them.  Maybe I am misunderstanding your question.

That what I was thiking about: using another tty.

I have not disabled any service, I use no DM, I login from shell and .bash_profile + .Xinitrc launch X and XFCE.
I have not understood how to see which services hit C7.

I put intel_pstate=disabled in the kernel line but it seems I did it wrong:

menuentry "Arch NO pstate (on /dev/sda6)" --class gnu-linux --class gnu --class os {
	insmod part_gpt
	insmod ext2
	set root='(hd0,gpt6)'
	search --no-floppy --fs-uuid --set=root d8c82b46-b3d6-43eb-9865-bd5ad84665b4
	linux /boot/vmlinuz-linux root=/dev/sda6 intel_pstate=disabled
	initrd /boot/initramfs-linux.img
}
$ cat /sys/devices/system/cpu/cpu*/cpufreq/scaling_driver
intel_pstate
intel_pstate
intel_pstate
intel_pstate
intel_pstate
intel_pstate
intel_pstate
intel_pstate

Offline

#20 2014-09-17 21:03:11

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Haswell temperature problems with pstate

Why would you disable it?

To see which services you have set to start at boot (for the most part:

find /etc/systemd/system -mindepth 1 -type d | xargs ls -l --color

Now, if you're at a tty and you're in C7, you have no need to disable them one-by-one to see which one is to blame.  Instead enter X and just sit there with nothing open.  What is your C7 status?


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#21 2014-09-17 21:50:19

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

I want to disable it to check if acpi-freq is better than intel_pstate.

It seems I can hit C7 in X, but temperatures are still high. CPU is at 62°C right now, without even havening opened Firefox.



Here are the modules I'm running. I removedo wpa_supplicant and thermald.

$ find /etc/systemd/system -mindepth 1 -type d | xargs ls -l --color
/etc/systemd/system/getty.target.wants:
total 0
lrwxrwxrwx 1 root root 38 Aug  3 12:15 getty@tty1.service -> /usr/lib/systemd/system/getty@.service

/etc/systemd/system/graphical.target.wants:
total 0
lrwxrwxrwx 1 root root 42 Aug 30 14:27 bumblebeed.service -> /usr/lib/systemd/system/bumblebeed.service

/etc/systemd/system/multi-user.target.wants:
total 0
lrwxrwxrwx 1 root root 46 Aug  5 20:15 NetworkManager.service -> /usr/lib/systemd/system/NetworkManager.service
lrwxrwxrwx 1 root root 40 Aug 20 14:49 cpupower.service -> /usr/lib/systemd/system/cpupower.service
lrwxrwxrwx 1 root root 42 Aug 20 18:58 lm_sensors.service -> /usr/lib/systemd/system/lm_sensors.service

/etc/systemd/system/sysinit.target.wants:
total 0

Last edited by buntolo (2014-09-17 21:50:57)

Offline

#22 2014-09-18 02:08:55

kang
Member
Registered: 2010-08-07
Posts: 83

Re: Haswell temperature problems with pstate

you guys should use turbostat and powertop. i7z is nice and all but its missing a lot of data.
turbostat will tell you your package states and powertop what is using the power.

you can very well be in C7 99% of the time and have some devices sucking a lot of power.

also, unless you're using a tickless system, i would recommend using pstate.

Offline

#23 2014-09-18 08:55:17

graysky
Wiki Maintainer
From: :wq
Registered: 2008-12-01
Posts: 10,597
Website

Re: Haswell temperature problems with pstate

kang wrote:

also, unless you're using a tickless system, i would recommend using pstate.

I believe that the Arch default is tickless.  Why do you say that?

EDIT: https://bugzilla.kernel.org/show_bug.cgi?id=93521#c10

Last edited by graysky (2015-03-14 11:47:08)


CPU-optimized Linux-ck packages @ Repo-ck  • AUR packagesZsh and other configs

Offline

#24 2014-09-18 10:44:06

buntolo
Member
Registered: 2011-10-11
Posts: 202

Re: Haswell temperature problems with pstate

I'm trying to use powertop and turbostat but I don't understand them...
Now I'm going to paste every tab and what I don't understand.
Generally speaking I understend single stats, but I fail to get a picture of the whole. Can't figure the big thing out.

Overview

Summary: 230.8 wakeups/second,  25.0 GPU ops/seconds, 0.0 VFS ops/sec and 1.2% CPU use

                Usage       Events/s    Category       Description
              4.5 ms/s     109.4        Process        /usr/bin/Xorg.bin -nolisten tcp :0 vt1 -auth /tmp/serverauth.gGXWEp5Avk vt1
              1.0 ms/s      62.6        Interrupt      [47] i915
              0.8 ms/s      15.1        Process        xfwm4 --replace --display :0.0 --sm-client-id 2c698fc92-d160-42f4-8f88-e927427c8150
             73.8 s/s   8.3        Timer          tick_sched_timer
              1.9 ms/s       6.9        Process        leafpad
             11.2 s/s   6.5        kWork          console_callback
            106.9 s/s   6.3        Timer          hrtimer_wakeup
              7.5 s/s   6.0        Interrupt      [6] tasklet(softirq)
              1.3 ms/s       5.3        Process        conky -p 5
             33.1 s/s   3.4        Process        [rcu_preempt]
             12.6 s/s   3.3        kWork          intel_unpin_work_fn
             15.8 s/s   3.0        Interrupt      [4] block(softirq)
            173.2 s/s   1.7        Process        syndaemon -i .25 -K -t -R -d
              4.6 s/s   1.7        Interrupt      [46] iwlwifi
             45.2 s/s   1.7        Process        [irq/46-iwlwifi]
            125.5 s/s   1.6        Process        nm-applet
             74.1 s/s   1.6        Process        turbostat
            555.3 s/s   1.4        Process        /usr/bin/xfce4-terminal
            104.1 s/s   1.0        Process        /usr/bin/firefox
             10.7 s/s   0.9        Timer          watchdog_timer_fn
             55.6 s/s   0.6        Process        /usr/bin/NetworkManager --no-daemon
              1.3 s/s   0.5        kWork          i915_gem_retire_work_handler
              0.8 s/s   0.5        kWork          mei_timer
            147.2 s/s   0.4        Interrupt      [1] i8042
             30.5 s/s   0.3        kWork          i915_gem_idle_work_handler
              1.5 s/s   0.3        Timer          sched_rt_period_timer
             10.7 s/s  0.30        Process        /usr/bin/gpg-agent --sh --daemon --enable-ssh-support --write-env-file /home/archio/.cache/gpg-agent-info
              5.4 s/s  0.30        Process        /usr/lib/rtkit/rtkit-daemon
             70.6 s/s  0.25        Interrupt      [9] RCU(softirq)
              2.2 s/s  0.25        Process        [watchdog/2]
              2.2 s/s  0.25        Process        [watchdog/6]
              2.0 s/s  0.25        Process        [watchdog/5]
              2.0 s/s  0.25        Process        [watchdog/1]
              2.0 s/s  0.25        Process        [watchdog/7]
              2.0 s/s  0.25        Process        [watchdog/0]
              1.9 s/s  0.25        Process        [watchdog/4]
              1.9 s/s  0.25        Process        [watchdog/3]
              1.6 s/s  0.25        kWork          flush_to_ldisc
             38.4 s/s  0.20        Process        /usr/lib/at-spi2-core/at-spi2-registryd --use-gnome-session
             12.6 s/s  0.20        kWork          bdi_writeback_workfn
              1.5 s/s  0.20        kWork          ieee80211_iface_work

<ESC> Exit |                                                                                                            


Idle stats

          Package   |             Core    |            CPU 0       CPU 4
                    |                     | C0 active   0.6%        0.1%
                    |                     | POLL        0.0%    0.0 ms  0.0%    0.0 ms
                    |                     | C1E-HSW     0.1%    0.3 ms  0.4%    0.5 ms
C2 (pc2)   67.4%    |                     |
C3 (pc3)   29.4%    | C3 (cc3)    0.0%    | C3-HSW      0.1%    0.8 ms  0.0%    0.5 ms
C6 (pc6)    0.0%    | C6 (cc6)    1.4%    | C6-HSW      0.0%    1.6 ms  1.4%   71.6 ms
C7 (pc7)    0.0%    | C7 (cc7)   96.7%    | C7s-HSW    99.0%    7.2 ms 97.8%  136.6 ms

                    |             Core    |            CPU 1       CPU 5
                    |                     | C0 active   0.1%        0.0%
                    |                     | POLL        0.0%    0.0 ms  0.0%    0.0 ms
                    |                     | C1E-HSW     0.1%    1.3 ms  0.0%    0.0 ms
                    |                     |
                    | C3 (cc3)    0.0%    | C3-HSW      0.1%    6.5 ms  0.0%    0.0 ms
                    | C6 (cc6)    0.0%    | C6-HSW      0.0%    0.6 ms  0.0%    0.0 ms
                    | C7 (cc7)   99.5%    | C7s-HSW    99.6%   91.9 ms 99.8%  231.2 ms

                    |             Core    |            CPU 2       CPU 6
                    |                     | C0 active   0.1%        0.1%
                    |                     | POLL        0.0%    0.0 ms  0.0%    0.0 ms
                    |                     | C1E-HSW     0.3%    0.5 ms  0.0%    0.0 ms
                    |                     |
                    | C3 (cc3)    0.0%    | C3-HSW      0.0%    0.2 ms  0.0%    0.0 ms
                    | C6 (cc6)    0.0%    | C6-HSW      0.0%    0.1 ms  0.0%    0.0 ms
                    | C7 (cc7)   99.1%    | C7s-HSW    99.3%   96.4 ms 99.8%  221.1 ms

                    |             Core    |            CPU 3       CPU 7
                    |                     | C0 active   0.1%        0.0%
                    |                     | POLL        0.0%    0.0 ms  0.0%    0.0 ms
                    |                     | C1E-HSW     0.2%    0.7 ms  0.1%    1.7 ms
                    |                     |
                    | C3 (cc3)    0.0%    | C3-HSW      0.0%    0.2 ms  0.0%    0.0 ms
                    | C6 (cc6)    0.0%    | C6-HSW      0.0%    0.1 ms  0.0%    2.0 ms
                    | C7 (cc7)   99.0%    | C7s-HSW    99.4%  103.9 ms 99.5%  152.6 ms

                    |             GPU     |
                    |                     |
                    | Powered On  0.8%    |
                    | RC6        99.2%    |
                    | RC6p        0.0%    |
                    | RC6pp       0.0%    |
                    |                     |

<ESC> Exit |                                                                                                            

1) What's the difference between package and core?
2) The second column lists 4 core and 1 GPU. I'd think it's the physical CPU (4 physical core + 1 iGPU), but I don't get which core is which, as there is no core number.




Frequency stats

            Package |             Core    |            CPU 0       CPU 4
                    |                     | Actual    2.4 GHz     2.4 GHz
Idle        99.1%   | Idle        99.7%   | Idle        99.7%      100.0%
25.12 GHz    0.0%   | 3.40 GHz     0.0%   | 3.21 GHz     0.0%        0.0%
3.50 GHz     0.1%   | 3.21 GHz     0.0%   | 1200 MHz     0.0%        0.0%
2.10 GHz     0.0%   | 1200 MHz     0.0%   |  800 MHz     0.2%        0.0%
2.90 GHz     0.0%   |  800 MHz     0.2%   | 1000 MHz     0.0%        0.0%
1.60 GHz     0.1%   | 1000 MHz     0.0%   | 2.90 GHz     0.0%        0.0%
 800 MHz     0.6%   | 2.90 GHz     0.0%   | 1.60 GHz     0.0%        0.0%
1500 MHz     0.0%   | 1.60 GHz     0.0%   | 3.50 GHz     0.0%        0.0%
1000 MHz     0.0%   | 3.50 GHz     0.0%   | 3.00 GHz     0.0%        0.0%
1.71 GHz     0.0%   | 3.00 GHz     0.0%   | 2.81 GHz     0.0%        0.0%
2.00 GHz     0.0%   | 2.81 GHz     0.0%   | 1.80 GHz     0.0%        0.0%
2.71 GHz     0.0%   | 1.80 GHz     0.0%   | 1100 MHz     0.0%        0.0%
2.60 GHz     0.0%   | 1100 MHz     0.0%   | 2.71 GHz     0.0%        0.0%
2.81 GHz     0.0%   | 2.71 GHz     0.0%   |  900 MHz     0.0%        0.0%
 900 MHz     0.0%   | 2.31 GHz     0.0%   | 1.71 GHz     0.0%        0.0%
1100 MHz     0.0%   |  900 MHz     0.0%   | 2.60 GHz     0.0%        0.0%
3.00 GHz     0.0%   | 1.71 GHz     0.0%   |
2.50 GHz     0.0%   | 2.60 GHz     0.0%   |
2.21 GHz     0.0%   |                     |
1400 MHz     0.0%   |                     |
3.40 GHz     0.0%   |                     |

                    |             Core    |            CPU 1       CPU 5
                    |                     | Actual    2.2 GHz     2.3 GHz
                    | Idle        99.6%   | Idle        99.6%       99.9%
                    | 3.40 GHz     0.0%   | 3.40 GHz     0.0%        0.0%
                    |  800 MHz     0.2%   |  800 MHz     0.2%        0.0%
                    | 1.60 GHz     0.0%   | 1.60 GHz     0.0%        0.0%
                    | 2.90 GHz     0.0%   | 2.90 GHz     0.0%        0.0%
                    | 3.50 GHz     0.0%   | 3.50 GHz     0.0%        0.0%
                    | 3.00 GHz     0.0%   | 2.81 GHz     0.0%        0.0%
                    | 2.81 GHz     0.0%   | 1.80 GHz     0.0%        0.0%
                    | 1.80 GHz     0.0%   | 1100 MHz     0.0%        0.0%
                    | 1100 MHz     0.0%   | 2.40 GHz     0.0%        0.0%
                    | 2.40 GHz     0.0%   | 2.71 GHz     0.0%        0.0%
                    | 2.71 GHz     0.0%   | 2.31 GHz     0.0%        0.0%
                    | 2.31 GHz     0.0%   |  900 MHz     0.0%        0.0%
                    |  900 MHz     0.0%   | 1.71 GHz     0.0%        0.0%
                    | 1.71 GHz     0.0%   | 3.00 GHz     0.0%        0.0%
                    | 2.60 GHz     0.0%   | 2.60 GHz     0.0%        0.0%
                    | 1000 MHz     0.0%   | 1000 MHz     0.0%        0.0%

<ESC> Exit |                                                                                                            


Device stats

              Usage     Device name
              1.2%        DRAM
              1.2%        CPU misc
             21.6 ops/s   GPU misc
              1.2%        CPU core
             21.6 ops/s   GPU core
             50.0%        Display backlight
            100.0%        PCI Device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller
            100.0%        PCI Device: Realtek Semiconductor Co., Ltd. Device 5287
            100.0%        PCI Device: Intel Corporation Wireless 7260
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]
            100.0%        PCI Device: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller
            100.0%        PCI Device: Intel Corporation HM87 Express LPC Controller
            100.0%        Radio device: iwlwifi
            100.0%        PCI Device: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller
            100.0%        PCI Device: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #4
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #3
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller
            100.0%        PCI Device: Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2
              0.2 pkts/s  Network interface: wlp2s0 (iwlwifi)
              0.0%        USB device: usb-device-8087-07dc
              0.0 pkts/s  Network interface: enp3s0f1 (r8169)
              0.0%        Radio device: btusb
              0.0%        USB device: EHCI Host Controller
              0.0%        USB device: EHCI Host Controller
              0.0%        USB device: xHCI Host Controller
              0.0%        USB device: xHCI Host Controller
              0.0%        USB device: usb-device-8087-8000
              0.0%        USB device: usb-device-8087-8008
              0.0%        USB device: BisonCam, NB Pro (Generic)








<ESC> Exit |                                                                                                            

3) What the heck are all those 100%?



Tunables

>> Bad           VM writeback timeout                                                                                   
   Bad           NMI watchdog should be turned off
   Bad           Enable Audio codec power management
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #3
   Bad           Runtime PM for PCI Device Intel Corporation 4th Gen Core Processor Integrated Graphics Controller
   Bad           Runtime PM for PCI Device Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor HD Audio Controller
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset Family USB xHCI
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset Family MEI Controller #1
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #2
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset High Definition Audio Controller
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #1
   Bad           Runtime PM for PCI Device Intel Corporation HM87 Express LPC Controller
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset Family 6-port SATA Controller 1 [AHCI mode]
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset Family SMBus Controller
   Bad           Runtime PM for PCI Device Intel Corporation Wireless 7260
   Bad           Runtime PM for PCI Device Realtek Semiconductor Co., Ltd. Device 5287
   Bad           Runtime PM for PCI Device Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor DRAM Controller
   Bad           Runtime PM for PCI Device Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset Family PCI Express Root Port #4
   Bad           Runtime PM for PCI Device Intel Corporation 8 Series/C220 Series Chipset Family USB EHCI #1
   Bad           Wake-on-lan status for device enp3s0f1
   Good          Enable SATA link power management for host0
   Good          Enable SATA link power management for host5
   Good          Bluetooth device interface status
   Good          Enable SATA link power management for host2
   Good          Enable SATA link power management for host3
   Good          Enable SATA link power management for host4
   Good          Enable SATA link power management for host1
   Good          Autosuspend for unknown USB device 1-7 (8087:07dc)
   Good          Autosuspend for USB device BisonCam, NB Pro [Generic]
   Good          Autosuspend for unknown USB device 3-1 (8087:8008)
   Good          Autosuspend for unknown USB device 4-1 (8087:8000)
   Good          Autosuspend for USB device xHCI Host Controller [usb1]
   Good          Autosuspend for USB device xHCI Host Controller [usb2]
   Good          Autosuspend for USB device EHCI Host Controller [usb3]
   Good          Autosuspend for USB device EHCI Host Controller [usb4]
   Good          Wake-on-lan status for device wlp2s0







 <ESC> Exit | <Enter> Toggle tunable | <r> Window refresh                                                               

4) Should I worry about all those 'Bad'?
5) Can I tune anything?


Here is turbostat.

       -       -       8    0.33    2598    2494       0    2.28    0.06    0.03   97.30      48      48   64.14   27.67    0.00    0.00    1.39    0.07    0.03
       0       0      34    1.36    2511    2494       0    1.54    0.20    0.14   96.77      45      48   64.14   27.67    0.00    0.00    1.39    0.07    0.03
       0       4       2    0.09    2737    2494       0    2.80
       1       1      17    0.64    2655    2494       0    2.01    0.00    0.00   97.35      48
       1       5       4    0.13    2786    2494       0    2.52
       2       2       5    0.17    2791    2494       0    1.15    0.01    0.00   98.68      45
       2       6       3    0.12    2648    2494       0    1.20
       3       3       2    0.08    2683    2494       0    3.48    0.03    0.00   96.41      46
       3       7       1    0.04    2600    2494       0    3.52
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       5    0.27    1988    2494       0    1.33    0.03    0.02   98.35      48      48   65.85   28.71    0.00    0.00    1.13    0.03    0.01
       0       0      18    0.78    2295    2494       0    1.64    0.07    0.08   97.42      45      48   65.86   28.71    0.00    0.00    1.13    0.03    0.01
       0       4       2    0.16    1344    2494       0    2.26
       1       1      11    0.55    1925    2494       0    1.72    0.02    0.00   97.71      48
       1       5       2    0.11    2186    2494       0    2.17
       2       2       4    0.17    2406    2494       0    0.25    0.00    0.00   99.58      44
       2       6       3    0.19    1442    2494       0    0.22
       3       3       2    0.08    2121    2494       0    1.23    0.02    0.00   98.67      45
       3       7       2    0.14    1324    2494       0    1.17
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       3    0.13    2428    2494       0    0.86    0.01    0.01   98.99      46      47   66.58   28.92    0.00    0.00    0.93    0.02    0.01
       0       0       8    0.32    2453    2494       0    0.49    0.00    0.00   99.19      44      47   66.58   28.92    0.00    0.00    0.93    0.02    0.01
       0       4       2    0.07    2519    2494       0    0.74
       1       1       7    0.28    2471    2494       0    1.76    0.03    0.00   97.92      46
       1       5       1    0.03    2395    2494       0    2.02
       2       2       1    0.03    1520    2494       0    0.39    0.00    0.00   99.58      45
       2       6       3    0.11    2465    2494       0    0.31
       3       3       4    0.15    2462    2494       0    0.56    0.00    0.03   99.27      46
       3       7       2    0.07    2371    2494       0    0.64
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      19    0.69    2720    2494       0    5.08    0.37    0.25   93.60      48      48   60.17   24.79    0.00    0.00    2.15    0.28    0.09
       0       0      55    2.18    2518    2494       0    4.60    1.10    0.91   91.21      45      48   60.17   24.79    0.00    0.00    2.15    0.28    0.09
       0       4       2    0.09    2560    2494       0    6.68
       1       1      28    0.97    2921    2494       0    3.50    0.02    0.10   95.41      48
       1       5       4    0.13    2751    2494       0    4.34
       2       2       8    0.28    2718    2494       0    5.63    0.11    0.00   93.99      45
       2       6      26    0.88    2939    2494       0    5.02
       3       3      22    0.79    2777    2494       0    5.16    0.25    0.00   93.81      46
       3       7       6    0.20    2828    2494       0    5.74
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       9    0.34    2525    2494       0    1.40    0.10    0.09   98.07      46      46   66.30   27.23    0.00    0.00    1.22    0.04    0.00
       0       0      50    1.99    2510    2494       0    1.96    0.37    0.35   95.33      45      46   66.30   27.23    0.00    0.00    1.22    0.04    0.00
       0       4       1    0.04    2540    2494       0    3.92
       1       1       8    0.31    2495    2494       0    0.09    0.00    0.00   99.60      46
       1       5       1    0.02    2495    2494       0    0.38
       2       2       3    0.10    2623    2494       0    1.05    0.04    0.00   98.81      44
       2       6       3    0.12    2643    2494       0    1.04
       3       3       1    0.04    2500    2494       0    1.39    0.00    0.00   98.57      44
       3       7       2    0.08    2731    2494       0    1.36
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       7    0.26    2552    2494       0    1.01    0.06    0.04   98.63      46      47   65.63   28.49    0.00    0.00    1.10    0.03    0.03
       0       0      29    1.14    2525    2494       0    1.39    0.25    0.15   97.08      45      47   65.63   28.49    0.00    0.00    1.10    0.03    0.03
       0       4       1    0.02    2576    2494       0    2.50
       1       1       4    0.16    2563    2494       0    0.19    0.00    0.00   99.65      46
       1       5       0    0.02    2426    2494       0    0.33
       2       2      11    0.44    2566    2494       0    0.48    0.00    0.00   99.08      45
       2       6       2    0.10    2568    2494       0    0.82
       3       3       3    0.10    2650    2494       0    1.18    0.00    0.00   98.72      45
       3       7       3    0.10    2675    2494       0    1.18
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      11    0.51    2189    2494       0    1.89    0.45    0.39   96.76      45      47   61.08   25.94    0.00    0.00    1.52    0.07    0.10
       0       0      48    2.27    2121    2494       0    2.87    1.29    1.10   92.47      45      47   61.08   25.94    0.00    0.00    1.52    0.07    0.10
       0       4       2    0.09    1970    2494       0    5.06
       1       1       7    0.32    2263    2494       0    0.90    0.49    0.45   97.83      45
       1       5       2    0.08    2343    2494       0    1.15
       2       2      19    0.77    2496    2494       0    0.70    0.00    0.00   98.53      44
       2       6       6    0.26    2212    2494       0    1.20
       3       3       2    0.10    1865    2494       0    1.68    0.01    0.00   98.21      45
       3       7       4    0.22    1862    2494       0    1.56
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      44    1.56    2797    2494       0    9.85    0.19    0.11   88.30      48      48   52.78   22.64    0.00    0.00    3.16    0.71    0.06
       0       0     264    9.12    2894    2494       0    8.79    0.64    0.43   81.02      46      48   52.78   22.64    0.00    0.00    3.16    0.71    0.06
       0       4       3    0.13    2401    2494       0   17.78
       1       1       8    0.41    1859    2494       0    8.56    0.09    0.00   90.94      48
       1       5       3    0.18    1739    2494       0    8.79
       2       2      35    1.20    2928    2494       0    7.95    0.00    0.00   90.85      45
       2       6       6    0.28    2014    2494       0    8.87
       3       3       9    0.45    2108    2494       0    9.15    0.01    0.00   90.40      46
       3       7      21    0.71    2960    2494       0    8.88
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       6    0.23    2484    2494       0    1.19    0.12    0.06   98.39      46      46   66.49   28.08    0.00    0.00    1.07    0.04    0.02
       0       0      27    1.11    2479    2494       0    1.28    0.48    0.19   96.95      45      46   66.50   28.08    0.00    0.00    1.07    0.04    0.02
       0       4       1    0.06    2555    2494       0    2.33
       1       1       3    0.15    2288    2494       0    1.29    0.00    0.06   98.51      46
       1       5       2    0.06    2477    2494       0    1.37
       2       2       8    0.28    2719    2494       0    0.42    0.00    0.00   99.30      44
       2       6       2    0.09    2553    2494       0    0.62
       3       3       1    0.07    1875    2494       0    1.10    0.00    0.00   98.82      45
       3       7       1    0.05    2516    2494       0    1.12
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       9    0.39    2364    2494       0    2.71    0.10    0.12   96.68      47      47   62.40   26.33    0.00    0.00    1.47    0.07    0.06
       0       0      35    1.43    2475    2494       0    1.58    0.42    0.48   96.10      45      47   62.40   26.33    0.00    0.00    1.47    0.07    0.06
       0       4       1    0.02    2290    2494       0    2.99
       1       1       7    0.34    1992    2494       0    1.09    0.00    0.00   98.57      47
       1       5       2    0.13    1532    2494       0    1.30
       2       2       6    0.27    2210    2494       0    3.67    0.00    0.00   96.06      44
       2       6       6    0.25    2306    2494       0    3.69
       3       3      14    0.53    2655    2494       0    3.49    0.00    0.00   95.98      44
       3       7       3    0.13    2202    2494       0    3.89
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       6    0.28    2317    2494       0    2.12    0.14    0.04   97.42      47      47   64.87   27.70    0.00    0.00    1.13    0.05    0.03
       0       0      25    1.01    2433    2494       0    1.19    0.35    0.12   97.33      45      47   64.87   27.70    0.00    0.00    1.13    0.05    0.03
       0       4       1    0.03    2396    2494       0    2.17
       1       1       5    0.22    2130    2494       0    0.73    0.00    0.04   99.02      47
       1       5       1    0.06    2274    2494       0    0.88
       2       2       5    0.22    2254    2494       0    2.89    0.21    0.00   96.68      44
       2       6       5    0.20    2235    2494       0    2.90
       3       3       7    0.32    2290    2494       0    3.03    0.00    0.00   96.64      45
       3       7       3    0.16    2073    2494       0    3.20
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      10    0.36    2871    2494       0    8.49    0.06    0.07   91.03      47      47   59.66   25.90    0.00    0.00    2.22    0.35    0.02
       0       0      23    0.90    2524    2494       0    6.15    0.20    0.26   92.49      47      47   59.66   25.90    0.00    0.00    2.22    0.35    0.02
       0       4       2    0.06    2647    2494       0    6.99
       1       1       3    0.11    2616    2494       0    7.11    0.02    0.00   92.77      47
       1       5       1    0.04    2692    2494       0    7.17
       2       2       5    0.17    2656    2494       0   10.20    0.01    0.02   89.60      44
       2       6       2    0.08    2607    2494       0   10.29
       3       3      46    1.47    3158    2494       0    9.28    0.00    0.00   89.25      44
       3       7       1    0.05    2776    2494       0   10.70
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       4    0.21    2117    2494       0    1.89    0.07    0.03   97.81      47      47   65.68   28.79    0.00    0.00    1.01    0.04    0.01
       0       0      10    0.45    2137    2494       0    0.96    0.01    0.00   98.59      45      47   65.68   28.79    0.00    0.00    1.01    0.04    0.01
       0       4       0    0.02    2233    2494       0    1.38
       1       1       7    0.35    2024    2494       0    1.01    0.02    0.13   98.48      47
       1       5       1    0.07    2210    2494       0    1.30
       2       2       5    0.22    2218    2494       0    2.17    0.01    0.00   97.60      44
       2       6       3    0.13    2120    2494       0    2.26
       3       3       7    0.32    2103    2494       0    2.89    0.24    0.00   96.55      46
       3       7       2    0.10    2095    2494       0    3.11
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       8    0.33    2342    2494       0    2.09    0.10    0.07   97.41      47      47   64.86   27.85    0.00    0.00    1.14    0.06    0.03
       0       0      22    0.90    2408    2494       0    0.94    0.07    0.14   97.94      44      47   64.86   27.85    0.00    0.00    1.14    0.06    0.03
       0       4       1    0.04    2406    2494       0    1.80
       1       1      14    0.62    2243    2494       0    1.51    0.00    0.00   97.88      47
       1       5       3    0.13    2524    2494       0    1.99
       2       2       8    0.35    2151    2494       0    2.40    0.01    0.03   97.21      44
       2       6       3    0.14    2249    2494       0    2.61
       3       3       9    0.36    2390    2494       0    2.63    0.31    0.10   96.60      44
       3       7       3    0.11    2691    2494       0    2.88
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       4    0.18    2513    2494       0    1.29    0.00    0.01   98.53      47      47   66.77   29.16    0.00    0.00    0.95    0.03    0.00
       0       0      17    0.68    2505    2494       0    1.19    0.01    0.02   98.09      45      47   66.77   29.16    0.00    0.00    0.95    0.03    0.00
       0       4       0    0.02    2467    2494       0    1.86
       1       1       7    0.30    2471    2494       0    0.19    0.00    0.00   99.51      47
       1       5       1    0.03    2463    2494       0    0.46
       2       2       5    0.20    2552    2494       0    1.40    0.00    0.00   98.40      45
       2       6       1    0.05    2741    2494       0    1.55
       3       3       4    0.14    2543    2494       0    1.74    0.00    0.00   98.12      44
       3       7       0    0.01    2397    2494       0    1.87
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      10    0.37    2731    2494       0    7.14    0.08    1.23   91.18      47      47   60.81   26.32    0.00    0.00    1.95    0.30    0.01
       0       0      31    1.04    2947    2494       0    4.83    0.00    4.92   89.21      45      47   60.81   26.32    0.00    0.00    1.95    0.30    0.01
       0       4       1    0.06    2390    2494       0    5.81
       1       1      10    0.44    2366    2494       0    5.25    0.30    0.00   94.01      47
       1       5       3    0.11    2348    2494       0    5.57
       2       2       8    0.31    2537    2494       0    8.47    0.01    0.02   91.19      44
       2       6       3    0.14    2439    2494       0    8.65
       3       3      14    0.50    2693    2494       0    9.20    0.00    0.00   90.29      44
       3       7      10    0.33    3102    2494       0    9.38
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       6    0.23    2623    2494       0    1.11    0.13    0.03   98.51      46      46   66.79   28.64    0.00    0.00    1.03    0.05    0.03
       0       0      11    0.42    2529    2494       0    0.68    0.08    0.11   98.71      45      46   66.79   28.64    0.00    0.00    1.03    0.05    0.03
       0       4       1    0.03    2538    2494       0    1.07
       1       1      15    0.57    2652    2494       0    1.30    0.28    0.00   97.84      46
       1       5       6    0.23    2705    2494       0    1.64
       2       2       8    0.29    2641    2494       0    1.25    0.14    0.00   98.32      44
       2       6       3    0.11    2661    2494       0    1.43
       3       3       3    0.13    2624    2494       0    0.71    0.00    0.00   99.15      44
       3       7       1    0.03    2510    2494       0    0.82
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       9    0.48    1956    2494       0    2.38    0.26    0.11   96.78      46      46   63.62   26.54    0.00    0.00    1.32    0.07    0.03
       0       0      32    1.94    1656    2494       0    3.28    1.00    0.42   93.36      45      46   63.62   26.54    0.00    0.00    1.32    0.07    0.03
       0       4       2    0.09    2184    2494       0    5.12
       1       1      10    0.45    2310    2494       0    0.91    0.02    0.00   98.62      46
       1       5       5    0.17    2637    2494       0    1.19
       2       2       9    0.33    2611    2494       0    2.56    0.00    0.00   97.11      44
       2       6       2    0.11    2202    2494       0    2.78
       3       3      14    0.72    2005    2494       0    1.25    0.00    0.00   98.03      45
       3       7       1    0.04    2036    2494       0    1.93
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       4    0.18    2329    2494       0    1.52    0.01    0.00   98.29      46      46   65.55   28.92    0.00    0.00    0.98    0.03    0.01
       0       0      10    0.44    2188    2494       0    2.38    0.02    0.01   97.15      44      46   65.55   28.92    0.00    0.00    0.98    0.03    0.01
       0       4       2    0.09    2366    2494       0    2.73
       1       1       9    0.38    2349    2494       0    2.40    0.01    0.00   97.21      46
       1       5       1    0.04    2211    2494       0    2.74
       2       2       2    0.07    2245    2494       0    0.13    0.00    0.00   99.80      44
       2       6       3    0.11    2342    2494       0    0.09
       3       3       8    0.29    2581    2494       0    0.72    0.00    0.00   98.99      45
       3       7       1    0.04    1947    2494       0    0.98
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      23    0.73    3188    2494       0    7.98    0.00    0.01   91.28      46      46   60.48   26.64    0.00    0.00    2.34    0.60    0.01
       0       0      21    0.73    2809    2494       0   10.02    0.00    0.00   89.25      46      46   60.48   26.64    0.00    0.00    2.34    0.60    0.01
       0       4     123    3.65    3367    2494       0    7.11
       1       1      17    0.58    2871    2494       0    7.41    0.00    0.03   91.98      46
       1       5       1    0.04    2856    2494       0    7.95
       2       2       3    0.13    2671    2494       0    7.15    0.01    0.01   92.71      44
       2       6       3    0.09    3003    2494       0    7.18
       3       3       6    0.22    2721    2494       0    8.60    0.00    0.00   91.18      44
       3       7      13    0.40    3214    2494       0    8.41
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       2    0.09    2559    2494       0    0.57    0.01    0.00   99.34      47      47   67.89   29.99    0.00    0.00    0.79    0.01    0.00
       0       0      10    0.38    2538    2494       0    0.93    0.03    0.00   98.66      45      47   67.89   29.99    0.00    0.00    0.79    0.01    0.00
       0       4       1    0.04    2891    2494       0    1.26
       1       1       2    0.06    2686    2494       0    1.04    0.00    0.00   98.89      47
       1       5       0    0.02    2483    2494       0    1.09
       2       2       1    0.02    2471    2494       0    0.06    0.00    0.00   99.92      44
       2       6       1    0.05    2520    2494       0    0.03
       3       3       2    0.09    2489    2494       0    0.04    0.00    0.00   99.87      45
       3       7       1    0.02    2382    2494       0    0.11
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       4    0.15    2614    2494       0    1.43    0.04    0.01   98.37      46      46   65.95   29.18    0.00    0.00    1.01    0.04    0.02
       0       0       9    0.34    2541    2494       0    2.97    0.15    0.00   96.54      45      46   65.95   29.18    0.00    0.00    1.01    0.04    0.02
       0       4       3    0.12    2733    2494       0    3.19
       1       1       9    0.32    2767    2494       0    1.31    0.00    0.04   98.34      46
       1       5       1    0.04    2479    2494       0    1.59
       2       2       3    0.12    2675    2494       0    0.79    0.00    0.00   99.09      43
       2       6       3    0.12    2629    2494       0    0.78
       3       3       3    0.14    2382    2494       0    0.35    0.00    0.00   99.50      45
       3       7       1    0.03    2380    2494       0    0.46
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       3    0.16    2028    2494       0    0.87    0.01    0.05   98.92      45      47   66.79   29.06    0.00    0.00    0.92    0.02    0.02
       0       0       7    0.31    2224    2494       0    1.25    0.00    0.16   98.27      44      47   66.79   29.06    0.00    0.00    0.92    0.02    0.02
       0       4       2    0.13    1721    2494       0    1.44
       1       1       4    0.25    1689    2494       0    0.17    0.00    0.00   99.58      45
       1       5       1    0.03    2011    2494       0    0.39
       2       2       4    0.16    2349    2494       0    0.45    0.00    0.00   99.39      44
       2       6       2    0.12    1946    2494       0    0.49
       3       3       5    0.24    2095    2494       0    1.27    0.04    0.02   98.43      45
       3       7       1    0.03    2238    2494       0    1.48
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      19    0.71    2605    2494       0    5.61    0.22    0.02   93.43      46      46   47.87   19.98    0.00    0.00    3.07    0.29    0.23
       0       0      26    1.04    2496    2494       0    5.06    0.42    0.02   93.46      45      46   47.87   19.98    0.00    0.00    3.07    0.29    0.23
       0       4       3    0.10    2774    2494       0    6.00
       1       1      40    1.49    2663    2494       0    5.22    0.04    0.04   93.20      46
       1       5       1    0.06    2563    2494       0    6.66
       2       2      21    0.89    2419    2494       0    5.31    0.03    0.00   93.78      44
       2       6       2    0.07    2723    2494       0    6.12
       3       3      52    1.92    2697    2494       0    4.37    0.41    0.02   93.27      45
       3       7       3    0.13    2554    2494       0    6.16
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      17    0.67    2468    2494       0    1.66    0.06    0.05   97.55      46      46   49.69   20.41    0.00    0.00    2.56    0.08    0.25
       0       0      33    1.36    2447    2494       0    1.42    0.09    0.16   96.97      44      46   49.69   20.41    0.00    0.00    2.56    0.08    0.25
       0       4       4    0.13    2690    2494       0    2.65
       1       1      39    1.59    2462    2494       0    0.44    0.02    0.01   97.94      46
       1       5       2    0.07    2492    2494       0    1.95
       2       2      14    0.57    2458    2494       0    0.85    0.01    0.00   98.57      44
       2       6       2    0.09    2671    2494       0    1.33
       3       3      37    1.51    2463    2494       0    1.61    0.14    0.03   96.71      45
       3       7       1    0.05    2441    2494       0    3.07
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       3    0.15    1692    2494       0    0.45    0.01    0.00   99.40      46      46   68.09   30.13    0.00    0.00    0.73    0.01    0.00
       0       0       8    0.40    1895    2494       0    0.74    0.00    0.00   98.87      44      46   68.09   30.13    0.00    0.00    0.73    0.01    0.00
       0       4       2    0.16    1398    2494       0    0.98
       1       1       3    0.15    2148    2494       0    0.05    0.00    0.00   99.80      46
       1       5       1    0.03    1681    2494       0    0.17
       2       2       3    0.18    1406    2494       0    0.45    0.01    0.00   99.37      43
       2       6       2    0.14    1630    2494       0    0.49
       3       3       2    0.13    1349    2494       0    0.29    0.02    0.00   99.56      44
       3       7       0    0.03    1750    2494       0    0.39
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       2    0.07    2539    2494       0    0.47    0.00    0.00   99.46      45      46   68.03   30.14    0.00    0.00    0.76    0.01    0.00
       0       0       7    0.29    2541    2494       0    0.61    0.01    0.00   99.09      44      46   68.03   30.14    0.00    0.00    0.76    0.01    0.00
       0       4       1    0.05    2665    2494       0    0.86
       1       1       1    0.05    2455    2494       0    0.03    0.00    0.00   99.92      45
       1       5       0    0.02    2427    2494       0    0.07
       2       2       1    0.04    2420    2494       0    0.05    0.00    0.00   99.91      43
       2       6       1    0.05    2565    2494       0    0.05
       3       3       1    0.04    2637    2494       0    1.03    0.00    0.00   98.93      44
       3       7       1    0.02    2490    2494       0    1.04
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       4    0.22    1861    2494       0    0.85    0.02    0.00   98.91      49      49   67.54   29.83    0.00    0.00    0.82    0.04    0.00
       0       0       7    0.39    1930    2494       0    1.14    0.01    0.00   98.46      45      49   67.54   29.83    0.00    0.00    0.82    0.04    0.00
       0       4       3    0.17    1639    2494       0    1.36
       1       1       4    0.30    1226    2494       0    0.56    0.00    0.00   99.14      48
       1       5       1    0.06    1609    2494       0    0.80
       2       2       2    0.11    2111    2494       0    0.45    0.01    0.00   99.43      45
       2       6       3    0.20    1549    2494       0    0.36
       3       3       9    0.40    2288    2494       0    0.92    0.06    0.00   98.62      49
       3       7       3    0.10    2669    2494       0    1.22
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       6    0.23    2824    2494       0    8.26    0.00    0.00   91.50      47      47   62.14   27.04    0.00    0.00    1.97    0.31    0.01
       0       0       8    0.31    2584    2494       0    8.34    0.01    0.00   91.34      45      47   62.14   27.04    0.00    0.00    1.97    0.31    0.01
       0       4       2    0.09    2784    2494       0    8.57
       1       1       3    0.13    2617    2494       0    7.79    0.01    0.00   92.07      47
       1       5       1    0.04    2599    2494       0    7.88
       2       2      10    0.33    2954    2494       0    7.96    0.00    0.02   91.70      44
       2       6       3    0.10    2711    2494       0    8.19
       3       3      14    0.49    2751    2494       0    8.59    0.00    0.00   90.92      44
       3       7      10    0.31    3216    2494       0    8.78
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       2    0.07    2375    2494       0    0.39    0.02    0.01   99.52      46      46   68.52   29.91    0.00    0.00    0.78    0.01    0.00
       0       0       5    0.22    2216    2494       0    0.58    0.00    0.01   99.18      45      46   68.52   29.92    0.00    0.00    0.78    0.01    0.00
       0       4       1    0.04    2604    2494       0    0.77
       1       1       2    0.08    2156    2494       0    0.70    0.00    0.00   99.22      46
       1       5       0    0.02    2414    2494       0    0.76
       2       2       2    0.09    2639    2494       0    0.05    0.00    0.00   99.86      44
       2       6       1    0.04    2607    2494       0    0.10
       3       3       2    0.08    2517    2494       0    0.03    0.06    0.03   99.81      45
       3       7       0    0.01    2286    2494       0    0.09
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       2    0.13    1838    2494       0    0.78    0.00    0.00   99.09      46      47   67.88   30.07    0.00    0.00    0.86    0.02    0.00
       0       0       6    0.24    2346    2494       0    0.86    0.00    0.00   98.89      45      47   67.88   30.07    0.00    0.00    0.86    0.02    0.00
       0       4       2    0.13    1610    2494       0    0.97
       1       1       3    0.22    1518    2494       0    0.98    0.00    0.00   98.80      46
       1       5       1    0.04    1747    2494       0    1.16
       2       2       3    0.19    1833    2494       0    1.08    0.01    0.00   98.72      45
       2       6       2    0.13    1635    2494       0    1.14
       3       3       0    0.02    2078    2494       0    0.05    0.00    0.00   99.93      45
       3       7       1    0.03    2031    2494       0    0.04
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       3    0.10    2618    2494       0    0.88    0.00    0.00   99.02      48      48   67.75   29.63    0.00    0.00    0.92    0.02    0.00
       0       0       8    0.31    2602    2494       0    1.07    0.00    0.00   98.62      46      48   67.75   29.63    0.00    0.00    0.92    0.02    0.00
       0       4       2    0.08    2836    2494       0    1.30
       1       1       4    0.15    2576    2494       0    1.24    0.01    0.00   98.61      48
       1       5       1    0.03    2446    2494       0    1.36
       2       2       3    0.10    2719    2494       0    1.00    0.00    0.00   98.90      45
       2       6       2    0.09    2582    2494       0    1.00
       3       3       0    0.02    2456    2494       0    0.03    0.00    0.00   99.95      46
       3       7       1    0.02    2412    2494       0    0.03
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      11    0.40    2673    2494       0   13.88    0.38    0.03   85.31      48      48   56.18   24.29    0.00    0.00    2.89    0.49    0.04
       0       0      30    1.21    2522    2494       0   14.01    1.31    0.12   83.35      45      48   56.18   24.29    0.00    0.00    2.89    0.49    0.04
       0       4       2    0.08    2536    2494       0   15.14
       1       1      26    0.90    2896    2494       0   12.12    0.00    0.00   86.98      48
       1       5       2    0.07    2670    2494       0   12.96
       2       2       4    0.16    2584    2494       0   15.43    0.22    0.00   84.19      45
       2       6      15    0.54    2739    2494       0   15.05
       3       3       5    0.19    2535    2494       0   13.09    0.00    0.00   86.72      47
       3       7       1    0.04    2576    2494       0   13.24
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      10    0.40    2505    2494       0    0.97    0.07    0.11   98.44      48      48   66.36   27.92    0.00    0.00    1.21    0.03    0.00
       0       0      48    1.92    2500    2494       0    1.89    0.19    0.41   95.58      45      48   66.36   27.92    0.00    0.00    1.21    0.03    0.00
       0       4       4    0.14    2615    2494       0    3.67
       1       1      17    0.69    2480    2494       0    0.17    0.00    0.00   99.13      48
       1       5       1    0.04    2418    2494       0    0.82
       2       2       4    0.18    2501    2494       0    0.55    0.09    0.03   99.15      46
       2       6       5    0.19    2621    2494       0    0.55
       3       3       1    0.04    2456    2494       0    0.05    0.00    0.00   99.91      46
       3       7       1    0.03    2342    2494       0    0.06
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       4    0.18    2064    2494       0    1.25    0.01    0.00   98.57      47      47   67.06   29.16    0.00    0.00    0.91    0.02    0.00
       0       0      10    0.45    2137    2494       0    1.58    0.00    0.00   97.98      47      47   67.06   29.16    0.00    0.00    0.91    0.02    0.00
       0       4       5    0.25    2052    2494       0    1.77
       1       1       7    0.33    2032    2494       0    1.49    0.01    0.00   98.18      47
       1       5       1    0.05    2112    2494       0    1.77
       2       2       1    0.05    2120    2494       0    1.71    0.01    0.00   98.23      46
       2       6       4    0.22    1893    2494       0    1.54
       3       3       1    0.05    2203    2494       0    0.06    0.01    0.00   99.88      47
       3       7       1    0.04    2253    2494       0    0.08
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       5    0.19    2517    2494       0    0.83    0.01    0.00   98.97      48      48   66.74   29.27    0.00    0.00    1.07    0.02    0.01
       0       0      10    0.41    2496    2494       0    1.33    0.01    0.01   98.24      46      48   66.74   29.27    0.00    0.00    1.07    0.02    0.01
       0       4       8    0.32    2524    2494       0    1.42
       1       1      13    0.50    2530    2494       0    0.15    0.00    0.00   99.35      48
       1       5       1    0.03    2479    2494       0    0.62
       2       2       1    0.06    2490    2494       0    0.07    0.00    0.00   99.88      47
       2       6       1    0.05    2510    2494       0    0.07
       3       3       4    0.16    2539    2494       0    1.41    0.04    0.00   98.39      47
       3       7       0    0.01    2407    2494       0    1.55
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       9    0.34    2704    2494       0    8.65    0.02    0.03   90.95      49      49   60.09   26.48    0.00    0.00    2.22    0.35    0.00
       0       0      30    1.09    2754    2494       0    7.24    0.00    0.00   91.68      46      49   60.09   26.49    0.00    0.00    2.22    0.35    0.00
       0       4       5    0.21    2442    2494       0    8.11
       1       1      27    0.95    2803    2494       0    6.75    0.04    0.00   92.25      49
       1       5       2    0.07    2488    2494       0    7.64
       2       2       3    0.11    2387    2494       0    8.38    0.02    0.13   91.36      46
       2       6       3    0.11    2594    2494       0    8.39
       3       3       4    0.16    2580    2494       0   11.27    0.03    0.00   88.54      47
       3       7       1    0.04    2474    2494       0   11.39
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       6    0.30    1936    2494       0    0.98    0.01    0.03   98.67      48      48   65.77   28.86    0.00    0.00    1.06    0.03    0.01
       0       0      14    0.67    2065    2494       0    1.57    0.03    0.00   97.73      47      48   65.77   28.86    0.00    0.00    1.06    0.03    0.01
       0       4      12    0.57    2170    2494       0    1.67
       1       1      13    0.68    1977    2494       0    1.74    0.00    0.11   97.47      48
       1       5       1    0.09    1432    2494       0    2.33
       2       2       2    0.13    1225    2494       0    0.18    0.03    0.00   99.66      46
       2       6       2    0.16    1526    2494       0    0.15
       3       3       2    0.11    1588    2494       0    0.07    0.00    0.00   99.82      47
       3       7       0    0.02    1610    2494       0    0.16
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       3    0.12    2530    2494       0    0.66    0.00    0.00   99.22      48      49   67.69   29.89    0.00    0.00    0.82    0.02    0.00
       0       0       8    0.32    2493    2494       0    0.75    0.00    0.00   98.92      48      49   67.69   29.89    0.00    0.00    0.82    0.02    0.00
       0       4       4    0.17    2546    2494       0    0.90
       1       1       6    0.24    2561    2494       0    1.04    0.00    0.00   98.72      48
       1       5       1    0.02    2478    2494       0    1.26
       2       2       3    0.12    2540    2494       0    0.58    0.00    0.00   99.30      47
       2       6       1    0.05    2643    2494       0    0.66
       3       3       1    0.03    2473    2494       0    0.04    0.00    0.00   99.93      47
       3       7       1    0.02    2458    2494       0    0.05
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       3    0.15    2288    2494       0    0.83    0.00    0.00   99.02      49      49   67.28   29.71    0.00    0.00    0.83    0.02    0.00
       0       0      12    0.54    2283    2494       0    1.59    0.01    0.00   97.86      47      49   67.28   29.71    0.00    0.00    0.83    0.02    0.00
       0       4       4    0.14    2533    2494       0    1.99
       1       1       1    0.06    1774    2494       0    0.06    0.00    0.00   99.88      49
       1       5       1    0.06    2205    2494       0    0.07
       2       2       3    0.11    2434    2494       0    1.14    0.00    0.00   98.76      47
       2       6       3    0.15    2204    2494       0    1.09
       3       3       2    0.10    2251    2494       0    0.31    0.00    0.00   99.59      48
       3       7       1    0.03    2490    2494       0    0.38
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      10    0.35    2806    2494       0   11.20    0.44    0.00   88.02      49      49   59.33   25.35    0.00    0.00    2.47    0.45    0.03
       0       0      23    0.79    2872    2494       0   10.35    1.11    0.00   87.75      48      49   59.33   25.35    0.00    0.00    2.47    0.45    0.03
       0       4       7    0.24    2710    2494       0   10.90
       1       1      18    0.64    2744    2494       0   11.01    0.02    0.00   88.33      49
       1       5       3    0.11    2769    2494       0   11.54
       2       2       4    0.15    2672    2494       0   10.93    0.08    0.00   88.84      47
       2       6       5    0.17    2703    2494       0   10.90
       3       3      17    0.60    2912    2494       0   11.71    0.54    0.00   87.16      48
       3       7       2    0.07    2672    2494       0   12.23
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       2    0.08    2508    2494       0    0.67    0.01    0.02   99.23      49      49   67.57   29.99    0.00    0.00    0.86    0.02    0.01
       0       0       7    0.29    2502    2494       0    0.52    0.01    0.06   99.11      48      49   67.57   29.99    0.00    0.00    0.86    0.02    0.01
       0       4       0    0.01    2509    2494       0    0.80
       1       1       2    0.09    2534    2494       0    0.65    0.00    0.00   99.26      49
       1       5       0    0.02    2497    2494       0    0.72
       2       2       1    0.05    2491    2494       0    0.06    0.03    0.00   99.87      46
       2       6       1    0.05    2516    2494       0    0.06
       3       3       1    0.05    2491    2494       0    1.28    0.00    0.00   98.67      49
       3       7       2    0.09    2521    2494       0    1.24
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       3    0.16    1971    2494       0    0.89    0.04    0.00   98.91      50      50   66.86   29.64    0.00    0.00    0.93    0.02    0.01
       0       0      11    0.56    1998    2494       0    0.49    0.00    0.00   98.96      48      50   66.86   29.64    0.00    0.00    0.93    0.02    0.01
       0       4       0    0.02    1758    2494       0    1.02
       1       1       4    0.14    2539    2494       0    0.36    0.00    0.00   99.50      50
       1       5       1    0.05    1973    2494       0    0.46
       2       2       3    0.19    1824    2494       0    1.10    0.15    0.00   98.56      48
       2       6       2    0.13    1676    2494       0    1.16
       3       3       1    0.07    2095    2494       0    1.29    0.01    0.00   98.63      49
       3       7       2    0.13    1697    2494       0    1.23
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       5    0.21    2527    2494       0    1.29    0.17    0.01   98.32      50      50   66.00   29.12    0.00    0.00    0.99    0.04    0.02
       0       0      11    0.43    2509    2494       0    0.55    0.02    0.01   99.00      48      50   66.00   29.12    0.00    0.00    0.99    0.04    0.02
       0       4       5    0.18    2715    2494       0    0.80
       1       1      13    0.51    2478    2494       0    1.83    0.31    0.02   97.33      50
       1       5       5    0.19    2460    2494       0    2.15
       2       2       4    0.13    2709    2494       0    0.60    0.35    0.00   98.91      48
       2       6       3    0.10    2585    2494       0    0.63
       3       3       2    0.09    2492    2494       0    1.88    0.00    0.00   98.03      49
       3       7       2    0.08    2349    2494       0    1.89
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      13    0.49    2597    2494       0    4.95    0.25    0.05   94.25      50      50   63.02   27.05    0.00    0.00    1.70    0.24    0.03
       0       0      21    0.83    2527    2494       0    4.52    0.32    0.20   94.12      49      50   63.02   27.05    0.00    0.00    1.70    0.24    0.03
       0       4      11    0.40    2659    2494       0    4.95
       1       1      29    1.11    2627    2494       0    4.52    0.62    0.00   93.75      50
       1       5       3    0.14    2538    2494       0    5.50
       2       2      21    0.73    2811    2494       0    4.12    0.03    0.00   95.13      48
       2       6       2    0.11    1873    2494       0    4.74
       3       3      13    0.51    2647    2494       0    5.45    0.03    0.00   94.01      48
       3       7       2    0.12    1819    2494       0    5.84
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       6    0.27    2360    2494       0    1.18    0.02    0.05   98.49      51      51   65.97   28.26    0.00    0.00    1.08    0.03    0.01
       0       0      25    1.08    2356    2494       0    1.29    0.08    0.15   97.40      49      51   65.97   28.26    0.00    0.00    1.08    0.03    0.01
       0       4       6    0.25    2494    2494       0    2.13
       1       1       9    0.38    2397    2494       0    1.34    0.00    0.00   98.28      51
       1       5       1    0.04    2263    2494       0    1.68
       2       2       1    0.06    2348    2494       0    0.12    0.00    0.00   99.82      48
       2       6       2    0.12    2069    2494       0    0.06
       3       3       3    0.10    2461    2494       0    1.38    0.00    0.04   98.48      49
       3       7       2    0.08    2192    2494       0    1.40
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       7    0.33    2235    2494       0    1.17    0.14    0.08   98.29      50      50   66.29   28.23    0.00    0.00    1.14    0.04    0.02
       0       0      27    1.19    2298    2494       0    1.90    0.44    0.25   96.22      50      50   66.29   28.23    0.00    0.00    1.14    0.04    0.02
       0       4      14    0.58    2339    2494       0    2.51
       1       1       6    0.33    1934    2494       0    0.55    0.03    0.07   99.02      50
       1       5       1    0.06    2148    2494       0    0.82
       2       2       3    0.15    2204    2494       0    0.52    0.08    0.00   99.25      49
       2       6       3    0.12    2093    2494       0    0.55
       3       3       2    0.09    2197    2494       0    1.25    0.00    0.00   98.66      48
       3       7       2    0.08    2148    2494       0    1.26
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       4    0.17    2103    2494       0    0.78    0.02    0.08   98.94      51      51   67.13   29.11    0.00    0.00    0.88    0.02    0.01
       0       0       8    0.42    1922    2494       0    0.63    0.06    0.00   98.88      49      51   67.13   29.11    0.00    0.00    0.88    0.02    0.01
       0       4       7    0.32    2062    2494       0    0.74
       1       1       7    0.35    2087    2494       0    0.81    0.03    0.02   98.78      51
       1       5       1    0.03    2334    2494       0    1.14
       2       2       1    0.05    2534    2494       0    0.08    0.00    0.00   99.86      48
       2       6       2    0.06    2411    2494       0    0.07
       3       3       2    0.10    2346    2494       0    1.36    0.00    0.29   98.25      49
       3       7       1    0.04    2740    2494       0    1.42
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       9    0.35    2651    2494       0   10.02    0.02    0.02   89.59      49      50   60.58   26.08    0.00    0.00    2.29    0.44    0.01
       0       0      34    1.27    2693    2494       0    9.41    0.08    0.06   89.17      49      50   60.58   26.08    0.00    0.00    2.29    0.44    0.01
       0       4       3    0.13    2413    2494       0   10.56
       1       1      19    0.73    2650    2494       0    9.08    0.01    0.02   90.16      49
       1       5       1    0.05    2462    2494       0    9.77
       2       2       9    0.31    2855    2494       0    9.73    0.00    0.00   89.97      49
       2       6       3    0.12    2486    2494       0    9.92
       3       3       2    0.10    2281    2494       0   10.84    0.00    0.00   89.05      49
       3       7       2    0.08    2404    2494       0   10.86
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       4    0.17    2541    2494       0    1.23    0.02    0.01   98.57      51      51   66.78   28.95    0.00    0.00    0.95    0.03    0.00
       0       0      17    0.66    2533    2494       0    1.38    0.05    0.06   97.85      50      51   66.78   28.95    0.00    0.00    0.95    0.03    0.00
       0       4       2    0.06    2505    2494       0    1.97
       1       1       7    0.27    2462    2494       0    0.12    0.01    0.00   99.60      51
       1       5       1    0.04    2445    2494       0    0.35
       2       2       2    0.10    2550    2494       0    0.57    0.00    0.00   99.33      48
       2       6       2    0.08    2671    2494       0    0.58
       3       3       2    0.06    2616    2494       0    2.43    0.00    0.00   97.51      50
       3       7       2    0.07    2776    2494       0    2.42
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       6    0.25    2492    2494       0    0.66    0.05    0.07   98.97      50      50   67.35   28.52    0.00    0.00    1.00    0.01    0.00
       0       0      37    1.47    2494    2494       0    1.33    0.15    0.29   96.76      50      50   67.35   28.52    0.00    0.00    1.00    0.01    0.00
       0       4       2    0.09    2495    2494       0    2.71
       1       1       4    0.17    2494    2494       0    0.07    0.01    0.00   99.75      50
       1       5       1    0.03    2490    2494       0    0.22
       2       2       2    0.08    2475    2494       0    0.20    0.06    0.00   99.66      48
       2       6       1    0.06    2525    2494       0    0.23
       3       3       1    0.04    2402    2494       0    0.26    0.00    0.00   99.70      50
       3       7       1    0.04    2467    2494       0    0.26
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       7    0.33    2011    2494       0    1.40    0.00    0.04   98.23      51      51   65.76   28.59    0.00    0.00    1.06    0.03    0.00
       0       0      17    0.90    1951    2494       0    1.05    0.01    0.14   97.90      48      51   65.76   28.59    0.00    0.00    1.06    0.03    0.00
       0       4       7    0.37    1902    2494       0    1.58
       1       1      13    0.67    1911    2494       0    1.12    0.00    0.02   98.19      51
       1       5       4    0.15    2500    2494       0    1.65
       2       2       2    0.11    2116    2494       0    0.42    0.00    0.00   99.47      48
       2       6       3    0.13    2374    2494       0    0.39
       3       3       4    0.22    1962    2494       0    2.42    0.00    0.00   97.36      49
       3       7       2    0.10    2422    2494       0    2.54
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      12    0.40    2883    2494       0    7.01    0.05    0.08   92.47      49      49   60.77   26.65    0.00    0.00    2.02    0.35    0.00
       0       0      22    0.77    2866    2494       0    5.97    0.15    0.29   92.82      48      49   60.77   26.65    0.00    0.00    2.02    0.35    0.00
       0       4       5    0.21    2547    2494       0    6.53
       1       1       8    0.32    2569    2494       0    5.29    0.01    0.01   94.36      49
       1       5       1    0.05    2591    2494       0    5.57
       2       2      28    0.93    3036    2494       0    6.36    0.02    0.00   92.69      47
       2       6       3    0.12    2746    2494       0    7.17
       3       3      21    0.70    2996    2494       0    9.28    0.03    0.00   89.99      48
       3       7       3    0.09    2801    2494       0    9.89
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       2    0.09    2562    2494       0    0.55    0.01    0.00   99.35      49      49   67.86   30.04    0.00    0.00    0.84    0.01    0.00
       0       0      10    0.40    2521    2494       0    0.87    0.02    0.02   98.70      47      49   67.86   30.04    0.00    0.00    0.84    0.01    0.00
       0       4       0    0.02    2668    2494       0    1.25
       1       1       2    0.06    2485    2494       0    0.03    0.00    0.00   99.90      49
       1       5       0    0.02    2419    2494       0    0.08
       2       2       1    0.05    2346    2494       0    0.06    0.01    0.00   99.88      47
       2       6       1    0.05    2756    2494       0    0.06
       3       3       2    0.09    2649    2494       0    1.00    0.00    0.00   98.91      48
       3       7       1    0.04    2958    2494       0    1.05
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       5    0.24    2110    2494       0    1.37    0.00    0.00   98.38      50      50   65.95   28.61    0.00    0.00    0.96    0.03    0.00
       0       0      12    0.56    2153    2494       0    0.36    0.00    0.00   99.08      46      50   65.95   28.61    0.00    0.00    0.96    0.03    0.00
       0       4       0    0.02    2090    2494       0    0.90
       1       1      13    0.63    2108    2494       0    1.00    0.00    0.00   98.37      50
       1       5       1    0.06    2248    2494       0    1.57
       2       2       4    0.23    1902    2494       0    0.13    0.00    0.00   99.64      47
       2       6       2    0.12    2087    2494       0    0.24
       3       3       5    0.25    2118    2494       0    3.31    0.00    0.00   96.43      47
       3       7       2    0.09    2294    2494       0    3.47
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -       8    0.31    2537    2494       0    0.93    0.03    0.03   98.70      49      49   66.40   28.20    0.00    0.00    1.09    0.02    0.00
       0       0      51    2.01    2517    2494       0    1.77    0.09    0.13   96.00      48      49   66.40   28.20    0.00    0.00    1.09    0.02    0.00
       0       4       1    0.04    2673    2494       0    3.74
       1       1       2    0.09    2465    2494       0    0.17    0.00    0.00   99.75      49
       1       5       1    0.03    2430    2494       0    0.23
       2       2       1    0.06    2439    2494       0    0.10    0.01    0.00   99.84      46
       2       6       2    0.09    2612    2494       0    0.07
       3       3       3    0.11    2694    2494       0    0.66    0.01    0.00   99.22      47
       3       7       2    0.08    2858    2494       0    0.70
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      12    0.49    2536    2494       0   10.67    0.14    0.05   88.65      47      48   58.80   25.38    0.00    0.00    2.46    0.43    0.02
       0       0      31    1.30    2390    2494       0   10.53    0.21    0.20   87.76      46      48   58.80   25.38    0.00    0.00    2.46    0.43    0.02
       0       4       4    0.20    1909    2494       0   11.63
       1       1      25    0.98    2516    2494       0   10.17    0.10    0.00   88.75      47
       1       5       2    0.11    2113    2494       0   11.03
       2       2      23    0.81    2910    2494       0    9.55    0.01    0.00   89.64      46
       2       6       2    0.08    2657    2494       0   10.28
       3       3      10    0.37    2696    2494       0   10.93    0.24    0.00   88.45      47
       3       7       2    0.08    2675    2494       0   11.22
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      28    1.05    2663    2494       0    5.09    0.64    0.44   92.79      48      48   56.21   23.05    0.00    0.00    2.39    0.29    0.05
       0       0      77    3.00    2563    2494       0    6.40    1.68    1.50   87.42      46      48   56.21   23.05    0.00    0.00    2.39    0.29    0.05
       0       4       8    0.30    2794    2494       0    9.10
       1       1      30    1.16    2598    2494       0    3.22    0.39    0.21   95.02      48
       1       5       2    0.09    2618    2494       0    4.30
       2       2      76    2.77    2745    2494       0    3.75    0.38    0.02   93.07      46
       2       6       4    0.14    2709    2494       0    6.38
       3       3      23    0.84    2771    2494       0    3.42    0.09    0.02   95.62      46
       3       7       2    0.09    2792    2494       0    4.18
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      62    2.17    2882    2494       0    4.26    1.46    0.98   91.14      49      49   53.54   20.70    0.00    0.00    3.62    0.89    0.15
       0       0      99    3.88    2551    2494       0    5.42    4.36    2.69   83.65      48      49   53.54   20.70    0.00    0.00    3.62    0.89    0.15
       0       4      12    0.45    2773    2494       0    8.86
       1       1     140    4.47    3138    2494       0    1.61    0.45    0.42   93.04      49
       1       5      14    0.49    2884    2494       0    5.60
       2       2      39    1.42    2732    2494       0    1.68    0.49    0.17   96.24      49
       2       6      21    0.73    2929    2494       0    2.37
       3       3     159    5.38    2945    2494       0    1.84    0.52    0.62   91.63      48
       3       7      15    0.51    2917    2494       0    6.71
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -     144    4.72    3045    2494       0    7.89    2.05    1.58   83.76      49      49   43.90   16.09    0.00    0.00    6.44    2.48    0.14
       0       0     168    5.74    2918    2494       0    8.85    4.30    2.59   78.52      47      49   43.90   16.09    0.00    0.00    6.44    2.48    0.14
       0       4     120    3.99    3001    2494       0   10.60
       1       1     117    4.07    2869    2494       0    4.56    1.06    1.36   88.96      49
       1       5      37    1.33    2812    2494       0    7.30
       2       2      84    2.88    2903    2494       0    4.66    2.03    1.57   88.87      46
       2       6      55    1.89    2887    2494       0    5.65
       3       3     496   15.62    3177    2494       0    4.07    0.81    0.79   78.71      47
       3       7      75    2.28    3297    2494       0   17.42
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      45    1.56    2903    2494       0    6.46    0.19    0.10   91.69      49      49   56.08   23.46    0.00    0.00    3.05    0.72    0.01
       0       0     146    5.08    2884    2494       0    4.81    0.27    0.34   89.50      48      49   56.08   23.46    0.00    0.00    3.05    0.72    0.01
       0       4       5    0.19    2810    2494       0    9.70
       1       1      44    1.50    2929    2494       0    4.31    0.37    0.00   93.82      49
       1       5       5    0.18    2507    2494       0    5.63
       2       2      12    0.48    2614    2494       0    5.21    0.09    0.05   94.17      46
       2       6       6    0.23    2666    2494       0    5.46
       3       3      71    2.53    2791    2494       0    8.17    0.02    0.02   89.27      46
       3       7      73    2.30    3176    2494       0    8.40
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      26    1.23    2128    2494       0    1.95    0.07    0.01   96.73      49      49   62.33   26.20    0.00    0.00    1.63    0.20    0.01
       0       0      32    1.75    1839    2494       0    1.17    0.18    0.03   96.86      47      49   62.33   26.20    0.00    0.00    1.63    0.20    0.01
       0       4       1    0.03    2215    2494       0    2.89
       1       1     125    4.66    2680    2494       0    0.59    0.00    0.01   94.74      49
       1       5       3    0.17    1837    2494       0    5.07
       2       2       9    0.60    1505    2494       0    0.68    0.04    0.00   98.68      46
       2       6       6    0.29    1970    2494       0    0.99
       3       3      28    2.09    1334    2494       0    1.18    0.06    0.01   96.66      45
       3       7       6    0.27    2367    2494       0    3.00
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      25    0.93    2719    2494       0    1.43    0.02    0.01   97.62      48      48   64.10   27.04    0.00    0.00    1.52    0.18    0.01
       0       0      15    0.60    2555    2494       0    1.04    0.02    0.00   98.33      46      48   64.10   27.04    0.00    0.00    1.52    0.18    0.01
       0       4       0    0.02    2564    2494       0    1.63
       1       1     148    5.35    2769    2494       0    0.39    0.00    0.00   94.26      48
       1       5       4    0.16    2594    2494       0    5.58
       2       2      17    0.67    2542    2494       0    1.19    0.04    0.04   98.06      46
       2       6      12    0.47    2560    2494       0    1.39
       3       3       4    0.13    3126    2494       0    0.06    0.00    0.00   99.81      47
       3       7       1    0.03    2569    2494       0    0.15
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      26    1.30    2007    2494       0    2.41    0.11    0.02   96.16      47      47   61.99   25.40    0.00    0.00    1.61    0.18    0.01
       0       0      26    1.80    1456    2494       0    2.35    0.22    0.08   95.55      46      47   61.99   25.40    0.00    0.00    1.61    0.18    0.01
       0       4       8    0.33    2309    2494       0    3.81
       1       1     143    6.51    2192    2494       0    1.60    0.22    0.00   91.67      47
       1       5       6    0.28    2099    2494       0    7.83
       2       2       5    0.24    1907    2494       0    0.57    0.01    0.00   99.18      45
       2       6       8    0.40    2092    2494       0    0.41
       3       3      11    0.75    1507    2494       0    1.01    0.01    0.00   98.23      47
       3       7       2    0.10    2267    2494       0    1.66
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      26    0.95    2732    2494       0    9.84    0.02    0.01   89.18      48      48   58.49   24.72    0.00    0.00    2.69    0.53    0.01
       0       0      39    1.38    2832    2494       0    9.50    0.03    0.04   89.05      46      48   58.49   24.72    0.00    0.00    2.69    0.53    0.01
       0       4      39    1.36    2899    2494       0    9.52
       1       1      95    3.57    2650    2494       0    8.18    0.03    0.00   88.22      48
       1       5       3    0.13    2564    2494       0   11.63
       2       2      16    0.63    2559    2494       0    9.70    0.02    0.00   89.65      47
       2       6       4    0.16    2618    2494       0   10.17
       3       3      11    0.36    2960    2494       0    9.83    0.00    0.00   89.81      47
       3       7       1    0.05    2645    2494       0   10.15
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      25    1.51    1664    2494       0    2.32    0.08    0.11   95.99      48      48   60.46   25.31    0.00    0.00    1.59    0.16    0.01
       0       0      30    1.88    1601    2494       0    2.09    0.19    0.39   95.46      45      48   60.46   25.31    0.00    0.00    1.59    0.16    0.01
       0       4       1    0.08    1879    2494       0    3.89
       1       1       7    0.47    1596    2494       0    2.04    0.02    0.00   97.48      48
       1       5      19    1.34    1414    2494       0    1.17
       2       2       5    0.38    1364    2494       0    0.51    0.09    0.04   98.97      46
       2       6       4    0.28    1280    2494       0    0.62
       3       3     131    7.46    1756    2494       0    0.47    0.01    0.02   92.05      46
       3       7       3    0.18    1646    2494       0    7.74
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      24    0.92    2594    2494       0    1.81    0.08    0.03   97.16      48      48   63.49   26.97    0.00    0.00    1.59    0.19    0.01
       0       0      21    0.86    2412    2494       0    1.33    0.11    0.05   97.66      47      48   63.49   26.97    0.00    0.00    1.59    0.19    0.01
       0       4       1    0.04    1832    2494       0    2.14
       1       1      10    0.45    2327    2494       0    1.23    0.00    0.00   98.32      48
       1       5       3    0.12    2274    2494       0    1.56
       2       2       9    0.31    2769    2494       0    0.93    0.20    0.06   98.50      45
       2       6       4    0.15    2617    2494       0    1.09
       3       3     142    5.35    2651    2494       0    0.45    0.03    0.00   94.17      46
       3       7       1    0.05    2230    2494       0    5.75
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      23    1.03    2267    2494       0    2.19    0.05    0.01   96.72      47      47   62.48   26.80    0.00    0.00    1.45    0.14    0.01
       0       0      81    3.27    2469    2494       0    2.34    0.07    0.00   94.33      46      47   62.48   26.80    0.00    0.00    1.45    0.14    0.01
       0       4       3    0.11    2284    2494       0    5.50
       1       1      45    2.04    2211    2494       0    0.94    0.00    0.00   97.02      47
       1       5       2    0.10    2179    2494       0    2.88
       2       2       5    0.21    2141    2494       0    1.65    0.07    0.01   98.05      46
       2       6      11    0.53    2054    2494       0    1.33
       3       3      40    1.93    2066    2494       0    0.49    0.06    0.04   97.48      46
       3       7       1    0.05    2086    2494       0    2.37
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      36    1.28    2802    2494       0    3.80    0.12    0.57   94.23      48      48   59.51   25.15    0.00    0.00    2.33    0.43    0.04
       0       0      32    1.30    2483    2494       0    3.08    0.32    0.22   95.09      46      48   59.51   25.15    0.00    0.00    2.33    0.43    0.04
       0       4      15    0.60    2513    2494       0    3.77
       1       1      42    1.58    2665    2494       0    2.58    0.00    0.02   95.82      48
       1       5      32    0.97    3315    2494       0    3.20
       2       2      49    1.72    2827    2494       0    2.90    0.06    0.00   95.32      46
       2       6       4    0.15    2626    2494       0    4.46
       3       3     110    3.81    2876    2494       0    3.34    0.10    2.04   90.71      46
       3       7       3    0.10    2883    2494       0    7.05
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      27    1.12    2366    2494       0    2.62    0.09    0.09   96.08      47      47   61.12   26.19    0.00    0.00    1.72    0.19    0.03
       0       0      30    1.19    2520    2494       0    2.52    0.09    0.08   96.13      46      47   61.13   26.20    0.00    0.00    1.72    0.19    0.03
       0       4      19    0.84    2250    2494       0    2.88
       1       1      79    3.20    2456    2494       0    1.35    0.00    0.07   95.38      47
       1       5       8    0.44    1731    2494       0    4.10
       2       2      37    1.62    2284    2494       0    3.24    0.00    0.21   94.94      45
       2       6       5    0.20    2398    2494       0    4.65
       3       3      34    1.43    2383    2494       0    0.43    0.27    0.00   97.86      46
       3       7       2    0.07    2404    2494       0    1.80
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      19    1.24    1507    2494       0    2.40    0.07    0.00   96.29      46      47   61.99   25.78    0.00    0.00    1.31    0.07    0.01
       0       0      11    0.73    1526    2494       0    2.68    0.12    0.00   96.47      46      47   61.99   25.77    0.00    0.00    1.31    0.07    0.01
       0       4      17    1.13    1524    2494       0    2.28
       1       1      84    5.78    1459    2494       0    1.09    0.03    0.00   93.11      46
       1       5       6    0.39    1614    2494       0    6.47
       2       2      21    1.16    1803    2494       0    1.19    0.00    0.00   97.65      44
       2       6       3    0.22    1246    2494       0    2.13
       3       3       6    0.41    1364    2494       0    1.49    0.14    0.00   97.95      46
       3       7       1    0.07    1137    2494       0    1.84
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      26    1.39    1865    2494       0    2.33    0.15    0.06   96.06      47      47   60.80   25.16    0.00    0.00    1.67    0.12    0.01
       0       0      53    2.42    2198    2494       0    1.62    0.51    0.25   95.19      45      47   60.80   25.15    0.00    0.00    1.67    0.12    0.01
       0       4       2    0.08    2389    2494       0    3.97
       1       1      39    1.73    2244    2494       0    1.52    0.02    0.00   96.73      47
       1       5       6    0.41    1503    2494       0    2.84
       2       2      91    5.65    1612    2494       0    0.62    0.03    0.00   93.69      45
       2       6       4    0.21    1778    2494       0    6.06
       3       3      11    0.55    2025    2494       0    0.77    0.05    0.00   98.63      46
       3       7       1    0.05    2078    2494       0    1.27
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      29    1.17    2498    2494       0    4.82    0.03    0.03   93.94      48      48   58.44   24.51    0.00    0.00    2.16    0.31    0.02
       0       0      34    1.40    2435    2494       0    3.84    0.02    0.07   94.66      47      48   58.44   24.51    0.00    0.00    2.16    0.31    0.02
       0       4       2    0.07    2532    2494       0    5.17
       1       1      22    0.89    2504    2494       0    5.85    0.05    0.06   93.15      47
       1       5     110    4.36    2518    2494       0    2.39
       2       2       8    0.36    2282    2494       0    5.23    0.01    0.00   94.40      47
       2       6       6    0.23    2626    2494       0    5.35
       3       3      16    0.71    2269    2494       0    5.67    0.06    0.00   93.56      48
       3       7      36    1.36    2650    2494       0    5.02
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      26    1.54    1708    2494       0    4.26    0.19    0.04   93.97      48      48   58.76   24.83    0.00    0.00    1.82    0.24    0.01
       0       0      20    1.28    1601    2494       0    2.44    0.15    0.07   96.06      45      48   58.76   24.83    0.00    0.00    1.82    0.24    0.01
       0       4       3    0.14    2144    2494       0    3.58
       1       1      25    1.03    2412    2494       0    9.14    0.44    0.00   89.39      48
       1       5     127    7.66    1657    2494       0    2.52
       2       2      15    0.77    1938    2494       0    3.40    0.10    0.07   95.66      45
       2       6       4    0.25    1429    2494       0    3.92
       3       3      11    0.72    1561    2494       0    4.42    0.09    0.00   94.77      46
       3       7       6    0.47    1165    2494       0    4.66
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      22    1.26    1762    2494       0    2.16    0.08    0.01   96.48      48      48   61.37   26.08    0.00    0.00    1.52    0.16    0.00
       0       0      16    0.98    1669    2494       0    1.42    0.15    0.03   97.43      45      48   61.36   26.08    0.00    0.00    1.52    0.16    0.00
       0       4       1    0.04    1527    2494       0    2.35
       1       1      18    1.25    1427    2494       0    0.71    0.02    0.00   98.02      48
       1       5       1    0.09    1095    2494       0    1.88
       2       2     119    6.29    1895    2494       0    1.58    0.13    0.00   91.99      45
       2       6       4    0.17    2658    2494       0    7.71
       3       3      17    1.20    1422    2494       0    0.27    0.04    0.00   98.49      45
       3       7       1    0.07    1858    2494       0    1.40
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      24    0.95    2537    2494       0    2.31    0.04    0.02   96.69      47      47   62.21   26.31    0.00    0.00    1.67    0.17    0.01
       0       0      22    0.87    2557    2494       0    3.02    0.05    0.03   96.03      45      47   62.21   26.31    0.00    0.00    1.67    0.17    0.01
       0       4       1    0.02    2552    2494       0    3.86
       1       1       6    0.24    2658    2494       0    1.29    0.00    0.00   98.46      47
       1       5       2    0.07    2871    2494       0    1.47
       2       2     137    5.37    2552    2494       0    0.63    0.04    0.00   93.95      46
       2       6       3    0.14    2438    2494       0    5.86
       3       3      19    0.81    2372    2494       0    0.80    0.05    0.03   98.31      46
       3       7       1    0.06    2489    2494       0    1.55
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      19    0.71    2636    2494       0    2.30    0.05    0.02   96.92      46      47   64.01   27.13    0.00    0.00    1.48    0.12    0.01
       0       0      25    0.94    2617    2494       0    1.50    0.17    0.07   97.32      46      47   64.01   27.13    0.00    0.00    1.48    0.12    0.01
       0       4       1    0.02    2643    2494       0    2.42
       1       1      11    0.45    2504    2494       0    2.45    0.04    0.01   97.04      46
       1       5       2    0.05    2911    2494       0    2.85
       2       2      32    1.16    2718    2494       0    2.24    0.00    0.00   96.59      44
       2       6       2    0.06    2583    2494       0    3.34
       3       3      77    2.92    2626    2494       0    0.35    0.00    0.01   96.72      46
       3       7       1    0.04    2557    2494       0    3.23
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      28    1.71    1659    2494       0    8.34    0.04    0.01   89.90      48      48   55.65   23.18    0.00    0.00    2.43    0.49    0.00
       0       0      69    3.62    1913    2494       0    6.14    0.03    0.06   90.15      45      48   55.66   23.18    0.00    0.00    2.43    0.49    0.00
       0       4      29    0.94    3115    2494       0    8.83
       1       1      17    1.26    1331    2494       0    6.64    0.03    0.00   92.06      48
       1       5       2    0.18    1284    2494       0    7.73
       2       2      61    5.33    1144    2494       0    6.68    0.06    0.00   87.93      45
       2       6       2    0.18    1288    2494       0   11.83
       3       3      44    2.05    2133    2494       0    8.46    0.04    0.00   89.45      45
       3       7       1    0.07    2082    2494       0   10.44
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      23    0.90    2591    2494       0    2.16    0.02    0.02   96.90      48      48   62.82   27.01    0.00    0.00    1.52    0.18    0.01
       0       0      21    0.86    2387    2494       0    1.18    0.02    0.00   97.93      46      48   62.82   27.01    0.00    0.00    1.52    0.18    0.01
       0       4       0    0.02    2315    2494       0    2.03
       1       1     110    4.12    2669    2494       0    2.20    0.02    0.00   93.66      48
       1       5       3    0.10    2658    2494       0    6.22
       2       2      46    1.77    2595    2494       0    1.77    0.02    0.08   96.35      44
       2       6       1    0.04    2423    2494       0    3.51
       3       3       5    0.24    2102    2494       0    0.09    0.00    0.00   99.67      44
       3       7       1    0.04    1896    2494       0    0.29
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      25    1.00    2455    2494       0    1.87    0.02    0.02   97.09      45      47   62.95   27.01    0.00    0.00    1.56    0.19    0.01
       0       0      45    1.78    2534    2494       0    1.03    0.00    0.00   97.19      45      47   62.95   27.01    0.00    0.00    1.56    0.19    0.01
       0       4       1    0.03    2515    2494       0    2.78
       1       1      20    0.94    2158    2494       0    1.78    0.00    0.01   97.27      45
       1       5       3    0.16    1928    2494       0    2.56
       2       2      91    3.49    2592    2494       0    0.81    0.05    0.07   95.58      44
       2       6       3    0.15    2298    2494       0    4.16
       3       3      33    1.43    2294    2494       0    0.24    0.01    0.00   98.32      45
       3       7       1    0.04    2484    2494       0    1.63
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      26    0.96    2697    2494       0    1.57    0.05    0.05   97.37      48      48   63.46   26.51    0.00    0.00    1.67    0.18    0.01
       0       0      89    3.43    2590    2494       0    1.38    0.17    0.20   94.83      45      48   63.46   26.51    0.00    0.00    1.67    0.18    0.01
       0       4       1    0.04    2649    2494       0    4.77
       1       1      17    0.68    2541    2494       0    0.45    0.00    0.00   98.86      48
       1       5       1    0.05    2732    2494       0    1.09
       2       2      79    2.73    2900    2494       0    0.45    0.03    0.00   96.79      43
       2       6       2    0.08    2820    2494       0    3.10
       3       3      17    0.67    2568    2494       0    0.33    0.01    0.00   98.99      45
       3       7       1    0.02    2537    2494       0    0.97
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      32    1.98    1601    2494       0    6.20    0.30    0.18   91.33      47      46   53.60   22.01    0.00    0.00    2.29    0.34    0.02
       0       0      95    4.49    2117    2494       0    5.35    0.51    0.66   88.99      45      46   53.60   22.01    0.00    0.00    2.29    0.34    0.02
       0       4       4    0.30    1223    2494       0    9.54
       1       1      37    2.54    1450    2494       0    3.96    0.58    0.04   92.89      47
       1       5       4    0.24    1445    2494       0    6.25
       2       2      50    3.08    1611    2494       0    4.04    0.07    0.02   92.78      46
       2       6       5    0.30    1690    2494       0    6.83
       3       3      58    4.73    1225    2494       0    4.57    0.04    0.00   90.67      46
       3       7       3    0.20    1325    2494       0    9.09
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      22    1.12    1999    2494       0    2.30    0.09    0.14   96.35      47      47   61.94   25.58    0.00    0.00    1.57    0.10    0.01
       0       0      59    2.76    2119    2494       0    2.33    0.31    0.49   94.10      46      47   61.94   25.58    0.00    0.00    1.57    0.10    0.01
       0       4       2    0.08    2385    2494       0    5.02
       1       1      32    1.41    2264    2494       0    1.65    0.01    0.02   96.91      47
       1       5       3    0.11    2304    2494       0    2.95
       2       2      50    1.97    2553    2494       0    0.99    0.05    0.03   96.96      44
       2       6       3    0.16    2103    2494       0    2.80
       3       3      29    2.37    1219    2494       0    0.20    0.00    0.00   97.43      45
       3       7       2    0.09    1671    2494       0    2.48
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      23    0.85    2751    2494       0    1.42    0.05    0.03   97.66      46      47   64.17   27.41    0.00    0.00    1.54    0.18    0.01
       0       0      22    0.87    2506    2494       0    0.54    0.12    0.10   98.36      45      47   64.17   27.41    0.00    0.00    1.54    0.18    0.01
       0       4       0    0.02    2558    2494       0    1.40
       1       1      82    2.82    2927    2494       0    0.97    0.05    0.00   96.16      46
       1       5       2    0.08    2696    2494       0    3.71
       2       2      26    0.97    2716    2494       0    0.76    0.02    0.00   98.25      44
       2       6       1    0.04    2425    2494       0    1.69
       3       3      51    1.94    2638    2494       0    0.19    0.01    0.00   97.86      44
       3       7       1    0.03    2437    2494       0    2.09
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      24    0.87    2708    2494       0    2.45    0.13    0.10   96.45      47      47   63.10   26.51    0.00    0.00    1.67    0.19    0.01
       0       0      45    1.72    2598    2494       0    0.95    0.37    0.34   96.63      45      47   63.10   26.51    0.00    0.00    1.67    0.19    0.01
       0       4       1    0.04    2579    2494       0    2.63
       1       1      18    0.67    2638    2494       0    2.29    0.02    0.00   97.02      47
       1       5       2    0.08    2768    2494       0    2.88
       2       2       7    0.27    2529    2494       0    2.05    0.09    0.04   97.55      44
       2       6       1    0.04    2546    2494       0    2.28
       3       3     113    4.07    2780    2494       0    1.24    0.06    0.02   94.60      44
       3       7       2    0.07    2697    2494       0    5.24
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      30    1.08    2760    2494       0   12.23    0.07    0.01   86.61      46      46   55.87   23.53    0.00    0.00    3.06    0.62    0.01
       0       0     139    5.18    2675    2494       0    9.86    0.22    0.03   84.71      46      46   55.87   23.53    0.00    0.00    3.06    0.62    0.01
       0       4       2    0.08    2703    2494       0   14.97
       1       1      17    0.60    2822    2494       0   11.50    0.00    0.00   87.89      46
       1       5       4    0.13    2757    2494       0   11.98
       2       2      17    0.67    2547    2494       0   12.47    0.05    0.00   86.80      44
       2       6      36    1.16    3153    2494       0   11.99
       3       3      21    0.74    2891    2494       0   12.19    0.02    0.00   87.05      45
       3       7       1    0.05    2673    2494       0   12.88
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      34    1.36    2502    2494       0    2.80    0.61    0.36   94.88      47      47   55.82   23.20    0.00    0.00    2.41    0.27    0.19
       0       0      72    3.00    2403    2494       0    2.70    1.84    1.17   91.30      46      47   55.82   23.20    0.00    0.00    2.41    0.27    0.19
       0       4       2    0.08    2502    2494       0    5.62
       1       1     129    4.97    2587    2494       0    0.99    0.23    0.03   93.79      47
       1       5       5    0.21    2534    2494       0    5.75
       2       2      30    1.17    2594    2494       0    1.94    0.03    0.05   96.81      44
       2       6       6    0.23    2585    2494       0    2.88
       3       3      27    1.17    2275    2494       0    0.71    0.33    0.18   97.61      46
       3       7       2    0.08    2507    2494       0    1.80
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      27    1.57    1711    2494       0    2.76    0.59    0.43   94.65      47      47   54.12   22.66    0.00    0.00    2.08    0.15    0.13
       0       0      88    4.93    1792    2494       0    2.23    1.69    1.22   89.93      45      47   54.12   22.66    0.00    0.00    2.08    0.15    0.13
       0       4       6    0.26    2208    2494       0    6.90
       1       1      36    1.81    1979    2494       0    1.36    0.05    0.22   96.55      47
       1       5       5    0.28    1603    2494       0    2.88
       2       2      37    1.83    1994    2494       0    0.77    0.07    0.09   97.23      45
       2       6       3    0.16    1715    2494       0    2.45
       3       3      39    3.05    1266    2494       0    1.34    0.53    0.18   94.89      45
       3       7       3    0.25    1113    2494       0    4.15
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      26    1.11    2303    2494       0    2.10    0.06    0.11   96.63      48      48   62.27   26.07    0.00    0.00    1.65    0.17    0.01
       0       0     105    4.56    2309    2494       0    1.25    0.14    0.38   93.68      44      48   62.27   26.07    0.00    0.00    1.65    0.17    0.01
       0       4       3    0.12    2180    2494       0    5.69
       1       1      20    0.94    2120    2494       0    1.22    0.01    0.02   97.82      48
       1       5       3    0.18    1813    2494       0    1.97
       2       2      11    0.49    2180    2494       0    1.58    0.02    0.00   97.91      45
       2       6       1    0.05    2113    2494       0    2.02
       3       3      14    0.68    2021    2494       0    2.13    0.05    0.04   97.10      44
       3       7      48    1.87    2576    2494       0    0.94
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      32    1.44    2207    2494       0    7.32    0.15    0.07   91.01      46      47   56.35   23.59    0.00    0.00    2.53    0.49    0.01
       0       0      42    2.12    1985    2494       0    5.36    0.35    0.20   91.98      46      47   56.35   23.59    0.00    0.00    2.53    0.49    0.01
       0       4       1    0.06    2266    2494       0    7.42
       1       1      60    2.17    2760    2494       0    3.87    0.18    0.02   93.75      46
       1       5       6    0.20    2743    2494       0    5.84
       2       2      36    1.90    1873    2494       0    6.54    0.06    0.02   91.47      45
       2       6       1    0.07    2131    2494       0    8.38
       3       3     107    4.96    2167    2494       0    8.14    0.00    0.05   86.85      45
       3       7       1    0.05    2052    2494       0   13.05
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      23    0.96    2413    2494       0    2.20    0.03    0.02   96.79      46      46   62.53   26.91    0.00    0.00    1.46    0.16    0.01
       0       0      65    2.47    2631    2494       0    0.67    0.03    0.01   96.83      45      46   62.52   26.91    0.00    0.00    1.46    0.16    0.01
       0       4       0    0.02    1896    2494       0    3.11
       1       1      47    1.85    2538    2494       0    1.75    0.02    0.02   96.36      46
       1       5       2    0.10    1985    2494       0    3.50
       2       2      26    1.15    2229    2494       0    1.64    0.07    0.04   97.10      44
       2       6       2    0.08    2159    2494       0    2.71
       3       3      43    1.95    2190    2494       0    1.15    0.00    0.02   96.87      45
       3       7       1    0.05    1511    2494       0    3.06
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      35    1.43    2460    2494       0    3.64    0.46    0.10   94.37      48      48   58.54   24.92    0.00    0.00    2.15    0.36    0.06
       0       0     103    3.79    2718    2494       0    2.98    0.42    0.16   92.64      46      48   58.54   24.92    0.00    0.00    2.15    0.36    0.06
       0       4       4    0.15    2643    2494       0    6.62
       1       1      51    2.48    2075    2494       0    4.20    0.71    0.24   92.36      48
       1       5      11    0.42    2547    2494       0    6.26
       2       2      47    2.19    2153    2494       0    1.68    0.38    0.01   95.74      47
       2       6       7    0.24    2737    2494       0    3.63
       3       3      58    2.13    2708    2494       0    0.83    0.31    0.01   96.72      44
       3       7       1    0.04    2206    2494       0    2.92
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -     147    4.48    3268    2494       0   10.76    0.47    0.25   84.04      51      51   37.53   15.57    0.00    0.00    7.74    3.54    0.04
       0       0     588   17.84    3296    2494       0    5.30    1.05    0.71   75.09      51      51   37.53   15.57    0.00    0.00    7.74    3.54    0.04
       0       4       7    0.25    2903    2494       0   22.89
       1       1      69    2.29    3021    2494       0    8.04    0.34    0.14   89.18      48
       1       5       2    0.06    2831    2494       0   10.28
       2       2     220    6.70    3284    2494       0    8.61    0.34    0.08   84.27      46
       2       6       4    0.14    2674    2494       0   15.17
       3       3     277    8.39    3299    2494       0    3.78    0.16    0.06   87.61      45
       3       7       6    0.21    2720    2494       0   11.96
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -     132    4.36    3017    2494       0   14.64    1.71    1.45   77.85      47      48   30.84   11.64    0.00    0.00    7.24    2.69    0.12
       0       0     468   14.55    3215    2494       0   14.03    4.50    2.51   64.41      47      48   30.84   11.64    0.00    0.00    7.24    2.69    0.12
       0       4      19    0.66    2816    2494       0   27.92
       1       1     148    4.72    3147    2494       0    6.26    0.39    0.17   88.46      47
       1       5      20    0.76    2605    2494       0   10.22
       2       2     248    8.78    2826    2494       0   17.84    1.16    2.74   69.48      45
       2       6      27    0.97    2788    2494       0   25.66
       3       3     116    4.19    2764    2494       0    5.61    0.77    0.38   89.05      46
       3       7       7    0.26    2757    2494       0    9.55
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      29    1.26    2279    2494       0    2.42    0.11    0.04   96.16      47      48   61.48   25.72    0.00    0.00    1.82    0.21    0.02
       0       0      33    1.38    2393    2494       0    1.77    0.15    0.12   96.58      46      48   61.48   25.72    0.00    0.00    1.82    0.21    0.02
       0       4       2    0.08    2055    2494       0    3.07
       1       1      40    1.62    2483    2494       0    3.07    0.01    0.00   95.31      47
       1       5      48    1.73    2758    2494       0    2.95
       2       2      54    3.11    1733    2494       0    1.39    0.20    0.04   95.26      45
       2       6       8    0.37    2213    2494       0    4.13
       3       3      41    1.56    2606    2494       0    0.86    0.09    0.00   97.49      45
       3       7       5    0.27    1963    2494       0    2.15
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      21    1.05    2029    2494       0    2.15    0.37    0.08   96.35      47      47   62.93   25.83    0.00    0.00    1.55    0.11    0.02
       0       0      41    1.69    2405    2494       0    1.90    0.50    0.31   95.60      45      47   62.93   25.83    0.00    0.00    1.55    0.11    0.02
       0       4      12    0.50    2523    2494       0    3.09
       1       1      17    0.67    2453    2494       0    2.17    0.00    0.00   97.16      47
       1       5      15    0.73    2013    2494       0    2.11
       2       2      59    3.53    1687    2494       0    1.13    0.01    0.00   95.34      45
       2       6       8    0.48    1688    2494       0    4.17
       3       3      18    0.78    2287    2494       0    0.92    0.99    0.02   97.29      45
       3       7       1    0.03    2406    2494       0    1.67
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      14    0.62    2272    2494       0    1.80    0.23    0.17   97.18      47      47   64.11   27.12    0.00    0.00    1.34    0.05    0.01
       0       0      39    1.73    2250    2494       0    1.97    0.81    0.59   94.90      45      47   64.11   27.12    0.00    0.00    1.34    0.05    0.01
       0       4       4    0.18    2390    2494       0    3.52
       1       1      43    1.85    2306    2494       0    1.83    0.09    0.10   96.13      47
       1       5       4    0.18    2306    2494       0    3.50
       2       2      11    0.52    2142    2494       0    1.46    0.00    0.00   98.01      44
       2       6       6    0.25    2297    2494       0    1.74
       3       3       5    0.23    2318    2494       0    0.09    0.00    0.00   99.68      44
       3       7       1    0.04    2266    2494       0    0.28
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      27    1.23    2160    2494       0   10.89    0.36    0.09   87.43      46      46   56.38   23.26    0.00    0.00    2.83    0.55    0.04
       0       0      87    3.61    2403    2494       0    9.71    0.58    0.12   85.97      46      46   56.37   23.26    0.00    0.00    2.83    0.55    0.04
       0       4       8    0.42    1869    2494       0   12.90
       1       1      33    1.84    1796    2494       0   10.06    0.10    0.11   87.88      46
       1       5       8    0.37    2110    2494       0   11.53
       2       2      25    1.12    2194    2494       0   10.33    0.68    0.11   87.76      44
       2       6      11    0.66    1607    2494       0   10.79
       3       3      36    1.53    2314    2494       0   10.29    0.06    0.01   88.11      44
       3       7       7    0.30    2239    2494       0   11.52
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      20    0.74    2741    2494       0    2.50    0.34    0.04   96.39      46      47   63.64   27.45    0.00    0.00    1.66    0.27    0.09
       0       0      23    0.86    2608    2494       0    2.61    0.95    0.03   95.55      45      47   63.64   27.45    0.00    0.00    1.66    0.27    0.09
       0       4       7    0.26    2757    2494       0    3.21
       1       1      18    0.67    2647    2494       0    2.04    0.16    0.14   96.99      46
       1       5       3    0.10    2781    2494       0    2.61
       2       2      98    3.48    2805    2494       0    2.70    0.11    0.00   93.70      44
       2       6       3    0.11    2657    2494       0    6.08
       3       3       7    0.27    2571    2494       0    0.28    0.14    0.00   99.31      45
       3       7       3    0.12    2769    2494       0    0.43
    Core     CPU Avg_MHz   %Busy Bzy_MHz TSC_MHz     SMI  CPU%c1  CPU%c3  CPU%c6  CPU%c7 CoreTmp  PkgTmp Pkg%pc2 Pkg%pc3 Pkg%pc6 Pkg%pc7 PkgWatt CorWatt GFXWatt 
       -       -      12    0.73    1704    2494       0    1.70    0.10    0.28   97.19      46      47   64.90   27.32    0.00    0.00    1.22    0.07    0.04
       0       0      29    1.52    1936    2494       0    1.63    0.22    0.09   96.54      45      47   64.90   27.32    0.00    0.00    1.22    0.07    0.04
       0       4       3    0.22    1506    2494       0    2.93
       1       1      24    1.42    1671    2494       0    1.84    0.02    0.02   96.70      46
       1       5       3    0.24    1215    2494       0    3.01
       2       2      15    0.87    1742    2494       0    0.84    0.02    0.02   98.24      44
       2       6      15    0.93    1565    2494       0    0.78
       3       3       8    0.46    1632    2494       0    1.13    0.15    0.98   97.29      45
       3       7       3    0.17    1626    2494       0    1.42

Offline

#25 2014-09-19 06:15:43

kang
Member
Registered: 2010-08-07
Posts: 83

Re: Haswell temperature problems with pstate

arch default is not full tickless. as previously stated pstate doesnt work in 3.16 + full tickless wink
it otherwise works pretty well: http://www.phoronix.com/scan.php?page=a … tate&num=1

simplification:

core is the cpu current state (c-states). you can expect mostly C7 on haswell when idle.
package is the chipset current state (pc-states). you can expect mostly PC7 on haswell when idle.
For the GPU, RC6 is the most energy saving state on haswell CPUs. (rc6p and rc6pp are not reachable/don't exist on haswell).

For a complete explanation see https://software.intel.com/en-us/articl … e-c-states

frequency states dont matter too much with the pstate driver thus it reports CPU as idle instead of the lowest freq (800mhz).


For tuning: you can just push enter on the "bad" and itll do it for you until next reboot (powertop --auto-tune also works). I would recommend using TLP to automatically set these values. Most of them is setting the PCI devices, usb devices, etc into power saving mode when on battery and back to performance mode when plugged in.

Basically with intel pstate driver  you want to run TLP and thermald, but not cpupower (it doesnt hurt much to run it but its not really useful either)

If with all the tuning settings of powertop set to good (or TLP setting them) you don't achieve pc7 (in either powertop or turbostat) try "tlp-stat" to find out what uses power.

that said it doesnt look too bad right now.

Offline

Board footer

Powered by FluxBB