processor

floating and integers....?

why do we need integers and floating in processor?thank you ...

Processor Utilization

Out of curiosity ... is it possible to have more than 100% utilization of the CPU in a multi-threaded environment? ...

Multiple Processors and PerformanceCounter C#

I'm trying to figure out how to gather the current usage percentage of each individual processor on my computer. If I use "System.Environment.ProcessorCount;" I can get the number of processors on my computer and it currently returns "2". I either don't know what I'm looking for or there isn't very much info about this on the internet....

Determine word size of my processor

How do I determine the word size of my CPU? If I understand correct an int should be one word right? I'm not sure if I am correct. So should just printing sizeof(int) would be enough to determine the word size of my processor? ...

How do I find the processor on which my thread is running in C#?

How do I find the processor on which my thread is running in C#? ...

What does "Embedded" mean?

I notice that Core i3-330M is specified as "Embedded" while the Core i5-430 is not. What technically does "Embedded" mean? Here is where I see the speicfication: i3-330M: http://ark.intel.com/Product.aspx?id=47663 i5-430M: http://ark.intel.com/Product.aspx?id=43537 ...

How to get Processor and Motherboard Id?

I used the code from http://www.rgagnon.com/javadetails/java-0580.html to get Motherboard Id, but the result is "null". How can that be? Also I modified the code a bit to look like this to get ProcessorId: "Set objWMIService = GetObject(\"winmgmts:\\\\.\\root\\cimv2\")\n"+ "Set colItems = objWMIService.ExecQuery _ \n"+ ...

how to find out the page size of a processor using C program and malloc?

is it possible to find out the page size of a processor using C program and malloc? and not by using sysconf() call? ...

How to get CPU usage statistics on Android?

I want to get the overall CPU usage on Android, similar to what Windows' Task Manager does. I can parse the output of the top program included in Android, but if there is a API call that does the same thing, it would be better. Any pointers? ...

Programming for Multi core Processors

As far as I know, the multi-core architecture in a processor does not effect the program. The actual instruction execution is handled in a lower layer. my question is, Given that you have a multicore environment, Can I use any programming practices to utilize the available resources more effectively? How should I change my code to gai...

Modifying PROCTHROTTLEMAX with powercfg has no effect in 2008 R2

I am trying to make the CPU transition to a lower P-state. I used pwrtest to determine the tests, and now I want to set the processor frequency to 50%. I executed the following command: powercfg -setacvalueindex SCHEME_BALANCED SUB_PROCESSOR PROCTHROTTLEMAX 50 When i query the scheme, the value is set to the desired value. However, t...

How to fetch processor CPU flags in C# .net ?

How to fetch processor CPU flags in C# .net ? I am particularly looking for VMX bit/flag. ...

32 vs 64 bit...or, what exactly does 'processing information' mean

I am having trouble understanding the difference between a 32 bit processor and 64 bit processor. I know that a 32 bit processor can access 32 bits at a time while a 64 bit processor can access 64 bits at a time. But what exactly does it mean to access a certain number of bits at one time? ...

Js (+Mootools) - Why my script use over 60% of processor?

On this site - LINK - i need to use 3 banner scrollers (2x vertical + 1x horizontal). I've tried to do it in flash, but then everyone web browsers shut down, or suspended. Now i want to do it in JS (i use mootools). All data come from MySQL. Here's the complete code (even if you don't know mootools, You should understand it) global $wpd...

Processor architecture

While HDDs evolve and offer more and more space on less room, why are we "sticking with" 32-bit or 64-bit? Why can't there be a e.g.: 128-bit processor? (This is not my homework; I'm just a student interested beyond the things they teach us in informatics) ...

Why doesn't my processor have built-in BigInt support?

As far as I understood it, BigInts are usually implemented in most programming languages as arrays containing digits, where, eg.: when adding two of them, each digit is added one after another like we know it from school, e.g.: 246 816 * * ---- 1062 Where * marks that there was an overflow. I learned it this way at school and all B...

How can I get the processor NAME of my machine using C#(.NET 3.5)?

I need to find the Name and speed of the processor on my machine. I'm building an open source help desk suite and finding this really entertaining! Thanks for the help guys! ...

Calculators and C#

Does those calculators have some type of a processor like a computer? Is it possible to program to them? And finally, is it somehow possible to run the .NET Micro Framework on it? Thank you. ...

How can I make a numerical value for a taskbar icon in C#?

I'm trying to find a way to display the current processor time of an application to the user via the taskbar when my application is minimized. For reference, I want something like what is implemented in Coretemp, where if you minimize the application, you can still see the temperature of the computer processor cores in the taskbar. Does ...

The Cleanest Reset for an ARM Processor

Lately, I've been cleaning up some some C code that runs on an ARM7 controller. In some situations (upgrade, fatal error, etc...) the program will perform a reset. Presently it just jumps to 0 and assumes that the start-up code will reinitialize everything correctly. It got me to thinking about what would be the best procedure a la "Leav...