Click here to Skip to main content
15,867,704 members
Articles / Programming Languages / C#

How to determine the processor count from a Silverlight web page

Rate me:
Please Sign up or sign in to vote.
4.73/5 (12 votes)
28 Apr 2009CPOL4 min read 38.1K   18   6
How can you tell if a computer has more than one CPU without using any special permissions.

Image 1

Parallel programming requires an easy way to tell if a user has multiple CPUs

Now that most new computers have multiple processors, we are seeing a rapid rise in the usage of parallel programming. Many libraries already supply efficient code for computers with multiple core processors, but how can you tell if the computer you are running on indeed has more than one CPU?

Why is the need to identify multiple CPUs becoming a pressing issue now?

Most programs today are multithreaded. More and more libraries are written for effective multithreaded code, with the assumption that this code will be run on computers with multiple cores. The need to know whether the computer is multi-core is a must, but in certain cases, like web applications for instance, you can’t “ask” the Operating System how many cores it is using outright.

How is this solved “normally”?

When running in the .NET environment, you can easily get the exact number of processors by using the following:

C#
System.Environment.ProcessorCount;

The bad news is that this property isn’t available for situations where you don’t have permission to ask the Operating System about the number of processors the system is running. This is exactly the situation you are in when you are developing web pages and RIAs based on MS Silverlight or Adobe Flash.

How can multiple CPUs be identified in a Silverlight application, or similar RIA situation?

I wrote the following code for determining whether a machine is a multi-core using only the basic operations available in any language and on any platform. The code runs two threads in parallel, and checks if they can really run at the same time.

SpinWait - The magic key

Roughly defined, a thread’s ‘Quanta’ is the minimum time that the Operating System will dedicate to the thread without making a context switch. It’s usually somewhere between 10 and 15 milliseconds. The code I wrote keeps the processors busy for the amount of instructions given, like creating an empty loop with an increased index; however, unlike ‘Sleep’, this code prevents context switching from the thread, unless it spins in excess of the thread’s quanta.

Here is the code I use:

C#
// will indicate that the computer has more than one processor
bool moreThanOne = false;
// will close the other thread eventually
bool toContinue = true;
ManualResetEvent m = new ManualResetEvent(false);
// open the secondary thread
Thread t = new Thread(new ThreadStart(delegate
{
    // make sure it has time to start
    m.Set();
    // set the flag while not signaled to stop
    while (toContinue)
        moreThanOne = true;
}));
t.IsBackground = false;
t.Start();
// waiting for the thread to start
m.WaitOne();
// forcing context switch
Thread.Sleep(0);
// begining of the threads quanta
moreThanOne = false;
// spin for a short time. Enough for the other thread to set the flag
// but still shorter than the quanta
Thread.SpinWait(100000);
// stop the secondary thread
toContinue = false;
// return the result
return moreThanOne;

Note: The method described here isn't deterministic as the OS could demand a context switch due to a system interrupt, or for some other reasons, in which case, the code might report that the computer has more than one core, despite the fact that there is only one core.

The code opens a thread dedicated to repeatedly setting a boolean flag, with the idea of having this thread run on a secondary core, if one exists. In order to ensure that the thread has started and is ready to loop, a ‘wait’ handle is used. The main thread waits for the secondary thread to start, and then calls ‘Thread.Sleep(0)’ to force the context switch. This ensures the next instruction will execute at the beginning of the thread’s quanta. In order to allow the other thread to set the flag on the other core while we are still spinning, we ‘SpinWait’ 100000 instructions. Since the ‘SpinWait’ is shorter than the thread’s quanta, it won’t force a context switch. Now, we can examine our outcome: If the flag has been set during the elapsed time, we know it must have been set by another processor that processed the thread while the other process was busy spinning.

Implementation and usage

I developed the code presented above while I was researching the performance of our http://www.headup.com application. I had discovered we were wasting a lot of time on mandatory locks that, although required, didn’t justify the accrued overhead.

Spinlock – good value, low cost

After some research, I decided to use the ‘SpinLock’ implementation, which utilizes the computer’s two cores to make an efficient lock, in order to boost our application’s performance at, what turned out to be, a very low effort. SpinLock’s secret is that instead of using a system call, the way ‘lock’ does, it uses ‘SpinWait()’ to let the other core release the lock. Of course, if the computer hasn’t got another core, this is useless. So, in order to know whether I could use ‘SpinLock’ effectively, I first needed to validate that the machine I was running had more than one processor. Hence the code above…

Examples and notes

  1. There are several "SpinLock" implementations, I found this one to be particularly nice: http://www.bluebytesoftware.com/blog/PermaLink,guid,fd6ed0d7-2849-4ca1-9619-74cd5713c3c0.aspx
  2. Test my processor detector live for yourself at http://yogil.com/yogi/processors.html. You can see how many processors your computer is running manually by clicking ‘Properties’ on ‘My Computer’ (Windows machines).

Ideas for the future

  • Because of the risk of false positives, it would probably be advisable to run the method several times and use the most frequent outcome. This will certainly improve results.
  • By using multiple threads, it should be possible to discover the exact amount of processors, and not merely whether the machine has one or more.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer headup
Israel Israel
I was coding since I was a little kid. Then I joined the army and continued developing for the IDF.
Now I am working at headup (www.headup.com).

Comments and Discussions

 
GeneralMy vote of 2 Pin
tec-goblin11-Mar-09 4:07
tec-goblin11-Mar-09 4:07 
GeneralYou got my 5 Pin
Dewey13-Feb-09 19:26
Dewey13-Feb-09 19:26 
GeneralAnother idea Pin
Qwertie11-Feb-09 18:47
Qwertie11-Feb-09 18:47 
GeneralGreat work Pin
stano11-Feb-09 16:16
stano11-Feb-09 16:16 
GeneralGreat work Pin
Daniel Vaughan9-Feb-09 10:08
Daniel Vaughan9-Feb-09 10:08 
GeneralRe: Great work Pin
Eylon Yogev.11-Feb-09 11:12
Eylon Yogev.11-Feb-09 11:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.