Mobile and Desktop Processors
Intel® Core™ processors, Intel Atom® processors, tools, and utilities
Announcements
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.
16873 Discussions

is there a way to check hyperthreading ??

Noisyboy
Beginner
3,345 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
2,446 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
2,446 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
2,447 Views

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

Leon

 

Reply