Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
2k views

Count Processors using C++ under Windows

Using unmanaged C++ on a Windows platform, is there a simple way to detect the number of processor cores my host machine has?
3
votes
3answers
780 views

Can i configure a ARM processor for Ascending Stack growth direction?

There has been one question here which talked about stack growth direction. To which Micahel Burr had replied saying in ARM processors stack growth direction can be configured - i.e. either ...
2
votes
2answers
305 views

How does x86 handle store conditional instructions?

I am trying to find out what an x86 processor does when it encounters a store conditional instruction. For instance does it stall the front end of the pipeline and wait for the ROB buffer to become ...
1
vote
0answers
69 views

high performance virtual CPU - brainstorming + feedback?

i'm thinking to code a virtual CPU for the Linux kernel that basically decides when it is a good idea to execute a thread or a process in another machine. any feedback or ideas are highly welcome. ...
1
vote
2answers
82 views

Android Threading with single core

Just wondering if threading with one processor improves things for me. I am building an application that performs data intensive calculations (fft on pcm data) while a UI is running and needs to run ...
1
vote
3answers
95 views

How different are assembly language for different kinds of processers?

How different are assembly language for each type of processor? If someone learns x86 intel assembly, will he have to start completely from the beginning if he would use assembly with another ...
1
vote
1answer
173 views

Virtual Processors and Logical Partitions

I basically wanted to know what exactly a virtual processor is. At IBM's site they define it as: "A virtual processor is a representation of a physical processor core to the operating system of a ...
1
vote
4answers
178 views

lower level assembly language? (how are processor instructions implemented?)

So the lowest level we can "program" is individual instructions on a processor, but those instructions had to be programmed somehow in the first place. How does a processor know what to do when an ...
0
votes
1answer
17 views

executing two program in differet processors in parallel

I used this c/c++ code to schedule 2 processors to run 2 different programs in parallel. please how do I confirm that the 2 processors are running the 2 programs in parallel? #include ...
0
votes
1answer
79 views

MPI Number of processors?

Following is my code in MPI, which I run it over a core i7 CPU (quad core), but the problem is it shows me that it's running under 1 processor CPU, which has to be 4. int main(int argc, char *argv[]) ...
0
votes
0answers
42 views

What are the characteristics of a good C++ development machine? [closed]

I'm using Windows and doing development in C++ primarily for Windows, but also some Android and web work. The Windows are are games and the graphics tend to be very demanding. I'm finding that my ...
0
votes
1answer
87 views

What I need to read/analize in order to understand how QEMU emulates supported network devices?

Hi :) I would like to analize how QEMU emulates the supported network devices reading the source code. Also I would like to share with me your opinions about what background is needed to understand ...
0
votes
3answers
330 views

What is the difference between a 32-bit and 64-bit processor?

I have been trying to read up on 32-bit and 64-bit processors (http://en.wikipedia.org/wiki/32-bit_processing). My understanding is that a 32-bit processor (like x86) has registers 32-bits wide. I'm ...
0
votes
1answer
66 views

Is this the right way to get the grand total of processors with WMI on a multi-cpu system?

I don't have access to a multi-socketed computer, so I am unsure if the following will get the grand total of processors and logical processors. I assume ManagementObjectSearcher will return an ...
0
votes
3answers
541 views

uniprocessor or multiprocessor

On unix, how could we know whether the system is multiprocessor or uniprocessor?