when i right click on my computer ,in properties it shows Intel(R) Pentium(R) M processor 2.26GHz and also 279MHZ .so there are two speeds listed . but when i see using directx it shows only Intel(R) Pentium(R) M processor 2.26GHz when i see using msinfo32 it shows 798MHZ . in device manager it shows Intel(R) Pentium(R) M processor 2.26GHz .so how these speeds are displayed .

In CPU-Z it is showing: Name:Intel Pentinum M 780 Specification:Intel(R) Pentium(R) M processor 2.26GHz core Speed:798 MHZ

and another important thing is that when i view the system information on right clicking my computer it shows Intel(R) Pentium(R) M processor 2.26GHz,how this speed getting displayed ,is this the speed provided by manufacturer .and how the another speed 279MHZ is displaying.

Does windows displays the incorrect speed .because it is displaying the speeds does not match .

link|improve this question

54% accept rate
Please can you add tags etc. and clarify your question to indicate what programming language etc. you wish this information for? – xan Jul 13 '11 at 12:27
1  
not specific to any programming language , just to clarify with the processor speed – Vinay Jul 13 '11 at 12:30
feedback

closed as off topic by Lazarus, skaffman, Ernest Friedman-Hill, Eugene Mayevski 'EldoS Corp, C. A. McCann Jul 13 '11 at 13:58

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

1 Answer

There are various ways to retrieve the processor speed. Lately most processors use variable speeds to safe lots of energy while running. This is especially true on laptops in low power mode.

Sometimes multipe core speeds get added together so it shows extremely high speeds.

Easily copied from another question:

using System.Management;

public uint CPUSpeed()
{
  ManagementObject Mo = new ManagementObject("Win32_Processor.DeviceID='CPU0'");
  uint sp = (uint)(Mo["CurrentClockSpeed"]);
  Mo.Dispose();
  return sp;
}
link|improve this answer
1  
Suggestion: using(ManagementObject Mo = new ManagementObject("Win32_Processor.DeviceID='CPU0'")){ //do stuff } removes need for the Mo.Dispose() (which is easily forgotten). – xan Jul 13 '11 at 12:27
ok,i got that i want to know that when i view the speed by right clicking on my computer.Intel(R) Pentium(R) M processor 2.26GHz.how windows is displaying this speed ,where does it come .is this the one provided by the processor manufacturer,is that the complete line is string. – Vinay Jul 13 '11 at 12:28
1  
i got the answer,i installed intel processor identification utility .it says that expected speed is 2.26hz and reported is 0.79ghz .and the first the "Intel pentinum processor 2.26GHZ" is specification of processor provided by the manufacturer. – Vinay Jul 13 '11 at 13:35
So, I think "Intel Pentinum M 780 Specification:Intel(R) Pentium(R) M processor 2.26GHz" is string . – Vinay Jul 15 '11 at 6:22
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.