Processors
Intel® Processors, Tools, and Utilities
14514 Discussions

is there a way to check hyperthreading ??

Noisyboy
Beginner
1,606 Views

i have an i5-8250U.... and it is lacking the speed that u would expect from an i5 processor especially an 8th gen on

0 Kudos
1 Solution
LeonWaksman
Super User
707 Views

You can also verify hyperthreading in Task Manager Performance tab. See the attached image.

Leon

 

View solution in original post

2 Replies
LeonWaksman
Super User
707 Views
  1. Right click on Windows icon in left down corner and enter Windows PowerShell (Admin)

Use the following command to enter the interactive wmic interface:

...> wmic

 

2. The following command will gather the number of cores and the number of logical processors:

wmic:root\cli> CPU Get NumberOfCores,NumberOfLogicalProcessors /Format:List

 

 

Result: If the number of logical processors is greater than physical processors (cores), then hyperthreading is enabled.

 

Example1:

C:\Users\Spock>wmic

wmic:root\cli>CPU Get NumberOfCores,NumberOfLogicalProcessors /Format:List

 

NumberOfCores=4

NumberOfLogicalProcessors=8

 

 

wmic:root\cli>exit

 

 

Leon

 

 

 

 

0 Kudos
LeonWaksman
Super User
708 Views

You can also verify hyperthreading in Task Manager Performance tab. See the attached image.

Leon

 

Reply