Tagged Questions
The processor tag has no wiki summary.
25
votes
6answers
22k views
How to determine whether a given Linux is 32 bit or 64 bit?
When I type uname -a, it gives the following output.
Linux mars 2.6.9-67.0.15.ELsmp #1 SMP Tue Apr 22 13:50:33 EDT 2008 i686 i686 i386 GNU/Linux
How can I know from this that the given OS is 32 or ...
16
votes
15answers
3k views
Processor, OS : 32bit, 64 bit
I am new to programming and come from a non-CS background (no formal degree). I mostly program winforms using C#.
I am confused about 32 bit and 64 bit.... I mean, have heard about 32 bit OS, 32 bit ...
13
votes
10answers
731 views
Why are 8 and 256 such important numbers in computer sciences?
I don't know very well about RAM and HDD architecture, or how electronics deals with chunks of memory, but this always triggered my curiosity:
Why did we choose to stop at 8 bits for the smallest ...
12
votes
6answers
722 views
Where did code morphing go?
Linus Torvalds used to work for a processor company called Transmeta. The processor they made was a RISC based object in the core. If I remember correctly, the idea was that the core ran an arbitrary ...
11
votes
5answers
636 views
Floating point versus fixed point: what are the pros/cons?
Floating point type represents a number by storing its significant digits and its exponent separately on separate binary words so it fits in 16, 32, 64 or 128 bits.
Fixed point type stores numbers ...
10
votes
15answers
7k views
Using SSE instructions
I have a loop written in C++ which is executed for each element of a big integer array. Inside the loop, I mask some bits of the integer and then find the min and max values. I heard that if I use ...
9
votes
1answer
10k views
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 ...
8
votes
2answers
315 views
Swapping Variables (C++, processor level)
click here to access the chatroom for this question.
I would like to swap two variables. and i would like to do it through the pipeline using a Read After Write hazard to my advantage.
Pipeline:
...
8
votes
11answers
2k views
Polling or Interrupt based method
When should one use polling method and when should one use interrupt based method ?
Are there scenarios in which both can be used ?
8
votes
3answers
812 views
What happened to clockless computer chips?
Several years ago, the 'next big thing' was clockless computers. The idea behind it was that without a clock, the processors would run significantly faster.
That was then, this is now and I can't ...
7
votes
3answers
2k views
Get number of CPUs in Linux using C
Is there an API to get the number of CPUs available in Linux?
I mean, without using /proc/cpuinfo or any other sys-node file...
I've found this implementation using sched.h:
int GetCPUCount()
{
...
7
votes
2answers
696 views
The prefetch instruction
It appears the general logic for prefetch usage is that prefetch can be added, provided the code is busy in processing until the prefetch instruction completes its operation. But, it seems that if too ...
7
votes
2answers
5k views
how to set CPU affinity of a particular pthread?
I'd like to specify the cpu-affinity of a particular pthread. All the references I've found so far deal with setting the cpu-affinity of a process (pid_t) not a thread (pthread_t). I tried some ...
7
votes
9answers
2k views
How can I discover whether my CPU is 32 or 64 bits?
How do I find out if my processor is 32 bit or 64 bit (in your language of choice)? I want to know this for both Intel and AMD processors.
7
votes
7answers
17k views
What's the difference between a single precision and double precision floating point operation?
Just wondering what the difference between a signle precision floating point operation and double precision floating operation is.
I'm especially interested in practical terms in relation to video ...
7
votes
1answer
674 views
What's a good source to learn about QEMU?
What book or website would you recommend to learn about QEMU? I'd like to see some usage examples as well as how to use the APIs.
6
votes
7answers
9k views
How to set processor affinity on an executable in Windows XP?
I have a quad core system with third party application that once in a while spins several processes (always the same executable but several instances of it) and takes 100% of CPU time. I also have a ...
5
votes
4answers
142 views
What are traps?
There are many different types of traps listed in processor datasheets, e.g. BusFault, MemManage Fault, Usage Fault and Address Error.
What is their purpose? How can they be utilized in fault ...
5
votes
2answers
346 views
ARM modes and why are there so many?
I'm currently reading/learning about ARM architecture ...
and I was wondering why there are so many modes
(FIQ, User, System, Supervisor, IRQ, ...).
My question is why do we need so many modes? ...
5
votes
4answers
314 views
How do cache lines work?
I understand that the processor brings data into the cache via cache lines, which - for instance, on my atom processor - bring in about 64 bytes at a time, whatever the size of the actual data being ...
5
votes
2answers
230 views
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.
5
votes
4answers
394 views
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 ...
5
votes
5answers
2k views
what is difference between Superscaling and pipelining?
Well looks too simple a question to be asked but i asked after going through few ppts on both.
Both methods increase instruction throughput. And Superscaling almost always makes use of pipelining as ...
4
votes
4answers
260 views
imul or shift instruction?
Which one is faster -
val = val*10;
or
val = (val<<3) + (val<<2);
How much clock cycle does imul take when compared to shift instruction?
-Kartlee
4
votes
3answers
334 views
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#?
4
votes
7answers
181 views
4
votes
2answers
81 views
Way to synchronize two cores in simulation
I have to build a dual-core processor simulator in C (it's actually a multilevel memory simulation, cache L1/L2, block substitution, etc). Thing is, I'm having a hard time figuring a way to ...
4
votes
6answers
1k views
Java thread running on which processor?
Is there a way to find out which processor (either on a single system or mutliple systems) your thread is running on, using Java native threads? If not, is there any library which could help?
4
votes
4answers
335 views
What are some tricks that a processor does to optimize code?
I am looking for things like reordering of code that could even break the code in the case of a multiple processor.
3
votes
3answers
373 views
C: Threading semaphore_wait vs while loop
Is there any difference between the following pieces of code in terms of processor usage.
void *ManageSequencer(void *argument){
SomeClass *someClass = (SomeClass *)argument;
while ...
3
votes
6answers
329 views
How to program to have all processors on your machine used?
I am running a single-threaded python program that performs massive data processing on my windows box. My machine has 8 processors. When I monitor the CPU usage in performance tab under Windows Task ...
3
votes
4answers
569 views
Hardware Performance counter on Intel Core Duo
I have read that there are AMD processors out there that allow you to measure the number of
cache hits and misses. I am wondering if also such a feature is available on Intel Core Duo machines or if ...
3
votes
1answer
360 views
Why ThreadPool has 250 worker threads per processor by default?
Taken from Microsoft documentation:
By default, the thread pool has 250 worker threads per available processor. You can
change this setting using the ThreadPool.SetMaxThreads method.
It's also ...
3
votes
2answers
817 views
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 ...
3
votes
6answers
189 views
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 ...
3
votes
3answers
3k views
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 ...
3
votes
2answers
624 views
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 ...
3
votes
6answers
2k views
How do we determine if a processor is 8-bit; 16-bit or 32-bit
Is it determined by size of the address buss; if yes then was 8086 a 20-bit processor? If no what is criteria for assigning a bit number like 8-bit, 16-bit, 32-bit to processor?
3
votes
10answers
875 views
How can I create an executable to run on a certain processor architecture (instead of certain OS)?
So I take my C++ program in Visual studio, compile, and it'll spit out a nice little EXE file. But EXEs will only run on windows, and I hear a lot about how C/C++ compiles into assembly language, ...
3
votes
7answers
5k views
How can I programmatically determine my processor type?
How can I determine programmatically whether my machine is an x86, x64 or an IA64?
3
votes
2answers
168 views
Processor : How to get cache information about intel xeon
I'm looking for a way to have a precise architecture information about Xeon E5420. This processor have 4 cores and 2x6Mo cache, so 2 cores shares a 6Mo cache.
I'm working on machines that have 2 ...
3
votes
4answers
1k views
Are C++ int operations atomic on the mips architecture
I wonder if I could read or write shared int value without locking on mips cpu (especially Amazon or Danube). What I mean is if such a read or write are atomic (other thread can't interrupt them). To ...
3
votes
1answer
149 views
Transition between processors
I'm writing mostly embedded code at work. We have a big long-term project that's been developed, and has several generations, and now the processor for which it was written is being discontinued and ...
3
votes
3answers
509 views
Configurable processor implemented on FPGA board
For a university mid-term project I have to design a configurable processor, to write the code in VHDL and then synthesize it on a Spartan 3E FPGA board from Digilent. I'm a beginner so could you ...
2
votes
1answer
248 views
How can i stress my phone's CPU programatically?
So i overclocked my phone to 1.664ghz and I know there are apps that test your phone's CPU performance and stressers but I would like to make my own someway. What is the best way to really make your ...
2
votes
1answer
75 views
How to pass dependencies for JSR-269 processor to maven-compiler-plugin
I have a JSR-269 annotation processor that I am attempting to invoke from within a Maven build using the maven-compiler-plugin. The processor has a dependency on the SLF4J library, but I cannot figure ...
2
votes
2answers
61 views
Python EasyList Processor/Parser
Are there any processors/parsers for EasyList that are written in python?
http://easylist.adblockplus.org/en/
2
votes
3answers
191 views
how to make unix command use multiple CPUs
How can I make a unix command (say a one-liner using cut and awk on a HUGE file) use all 16 cores instead of just 1? This isn't a program where I can use -j and specify the number of CPUs to use...
2
votes
3answers
2k views
C++ get Processor ID
This thread is ok.
How to get Processor and Motherboard Id?
I wanted to get processor ID using C++ code not using WMI or any third party lib.
OR anything on a computer that turns out to be unique. ...
2
votes
2answers
48 views
Is there a way of restricting an API's processor resource in c#?
The app I am working on calls upon an external API to process certain requests the user may make. This is of course done in a seprate thread to try and prevent the UI from freezing or slowing down. ...