Tagged Questions
The central processing unit, or "processor". The thing that'll eventually *execute* all that code you're writing.
107
votes
3answers
3k views
Once upon a time, when > was faster than < … Wait, what?
I am reading a wonderful OpenGL tutorial. It's unbelievably great, trust me. The topic I am currently at is Z-buffer. Aside from explaining what's it all about, the author mentions that we can perform ...
52
votes
8answers
3k views
Which is faster: x<<1 or x<<10?
I don't want to optimize anything, I swear, I just want to ask this question out of curiosity.
I know that on most hardware there's an assembly command of bit-shift (e.g. shl, shr), which is a single ...
49
votes
8answers
4k views
What does “multicore” assembly language look like?
Once upon a time, to write x86 assembler, for example, you would have instructions stating "load the EDX register with the value 5", "increment the EDX" register, etc.
With modern CPUs that have 4 ...
39
votes
7answers
44k views
How to monitor the computer's cpu, memory, and disk usage in Java?
I would like to monitor the following system information in Java:
current cpu usage** (percent)
available memory* (free/total)
available disk space (free/total)
*note that I mean overall memory ...
34
votes
4answers
13k views
How to determine CPU and memory consumption from inside a process?
I once had the task of determining the following performance parameters from inside a running application:
Total virtual memory available
Virtual memory currently used
Virtual memory currently used ...
23
votes
7answers
21k views
How to get current CPU and RAM usage in Python?
What's your preferred way of getting current system status (current CPU, RAM, free disk space, etc.) in Python? Bonus points for *nix and Windows platforms.
There seems to be a few possible ways of ...
22
votes
5answers
13k views
Can a C# program measure its own CPU usage somehow?
I am working on a background program that will be running for a long time, and I have a external logging program (SmartInspect) that I want to feed with some values periodically, to monitor it in ...
20
votes
1answer
592 views
Python code to generate heat [closed]
I'm interested in finding a little bit of python code to turn a laptop into a space heater programmatically. Mostly, I'd like to generate as much heat as possible without damaging the system. I'd ...
19
votes
18answers
2k views
The best 500 word (or less) description of how a CPU works?
What is the best description of the CPU that can fit in 500 words? Submit and vote up actual attempts. Imagine you're explaining it ...
to some non-cs grad students over
dinner
to the smartest, ...
16
votes
7answers
6k views
Detecting the number of processors
How do you detect the number of physical processors/cores in .net?
15
votes
6answers
2k views
How is CPU usage calculated?
I hope this is the right place to ask this question, as I think it is related to algorithms and performance.
On my desktop, I have a little widget that tells me my current CPU usage. It also shows ...
15
votes
2answers
6k views
How to fast get Hardware-ID in C#?
I need in my license Program use hardware id ,I tried use WMI,but it still slow .
I need Cpu,HDD,Motherboard info.
15
votes
8answers
2k views
What are the advantages of a 64-bit processor?
Obviously, a 64-bit processor has a 64-bit address space, so you have more than 4 GB of RAM at your disposal. Does compiling the same program as 64-bit and running on a 64-bit CPU have any other ...
14
votes
4answers
396 views
Estimating process energy usage on PCs (x86)
I'm trying to come up with a heuristic to estimate how much energy (say, in Joules) a process or a thread has consumed between two time points. This is on a PC (Linux/x86), not mobile, so the ...
14
votes
19answers
1k views
Will multi threading provide any performance boost?
I am new to programming in general so please keep that in mind when you answer my question.
I have a program that takes a large 3D array (1 billion elements) and sums up elements along the various ...
14
votes
4answers
4k views
Detecting CPU architecture compile-time
What is the most reliable way to find out CPU architecture when compiling C or C++ code? As far as I can tell, different compilers have their own set of non-standard preprocessor definitions (_M_X86 ...
13
votes
2answers
151 views
How to occupy 80% CPU consistently?
I'm looking for a way to occupy exactly 80% (or any other number) of a single CPU in a consistent manner.
I need this for some unit test that tests a component that triggers under specific CPU ...
13
votes
13answers
2k views
What is faster (x < 0) or (x == -1)?
Variable x is int with possible values: -1, 0, 1, 2, 3.
Which expression will be faster (in CPU ticks):
1. (x < 0)
2. (x == -1)
Language: C/C++, but I suppose all other languages will have the ...
12
votes
1answer
641 views
What does “rep; nop;” mean in x86 assembly?
What does rep; nop mean?
Is it the same as pause instruction?
Is it the same as rep nop (without the semi-colon)?
What's the difference to the simple nop instruction?
Does it behave differently on ...
12
votes
6answers
7k views
Optimal number of threads per core
Let's say I have a 4-core CPU, and I want to run some process in the minimum amount of time. The process is ideally parallelizable, so I can run chunks of it on an infinite number of threads and each ...
12
votes
7answers
7k views
Linux Process States
In Linux, what happens to the state of a process when it needs to read blocks from a disk? Is it blocked? If so, how is another process chosen to execute?
12
votes
4answers
2k views
How are interrupts handled by dual processor machines?
I have an idea of how interrupts are handled by a dual core CPU. I was wondering about how interrupt handling is implemented on a board with more than one physical processor.
Is any of the ...
11
votes
4answers
238 views
Finding out the CPU clock frequency (per core, per processor)
Programs like CPUz are very good at giving in depth information about the system (bus speed, memory timings, etc.)
However, is there a programmatic way of calculating the per core (and per processor, ...
11
votes
7answers
732 views
Threading vs single thread
Is it always guaranteed that a multi-threaded application would run faster than a single threaded application?
I have two threads that populates data from a data source but different entities (eg: ...
11
votes
4answers
727 views
Why don't stacks grow upwards (for security)?
This is related to the question 'Why do stacks typically grow downwards?', but more from a security point of view. I'm generally referring to x86.
It strikes me as odd that the stack would grow ...
11
votes
5answers
4k views
CPU cache flush
I am interested in forcing a CPU cache flush in Windows (for benchmarking reasons, I want to emulate starting with no data in cpu cache), preferably a basic C implementation or win32 call. Is there a ...
11
votes
5answers
562 views
Would there be any point in designing a CPU that could handle IL directly?
If I understand this correctly:
Current CPU developing companies like AMD and Intel have their own API codes (the assembly language) as what they see as the 2G language on top of the Machine code (1G ...
11
votes
6answers
549 views
Limiting CPU speed for profiling
I'm trying to optimize several bottlenecks on an application which is supposed to run on a really wide range of CPUs and architectures (some of them very close to embeded devices).
The results of my ...
10
votes
9answers
16k views
how to write super fast file streaming code in C#?
I have to split huge file into many smaller files. each of the destination file is defined by offset and length as number of bytes. I'm using the following code:
private void copy(string srcFile, ...
10
votes
11answers
406 views
Does the advent of MultiCore architectures affect me as a software developer?
As a software developer dealing mostly with high-level programming languages I'm not sure what I can do to appropriately pay attention to the upcoming omni-presence of multicore computers. I write ...
10
votes
8answers
1k views
Feasability of GPU as a CPU?
What do you think the future of GPU as a CPU initiatives like CUDA are? Do you think they are going to become mainstream and be the next adopted fad in the industry? Apple is building a new framework ...
10
votes
6answers
1k views
CPU throttling in C++
I was just wandering if there is an elegant way to set the maximum CPU load for a particular thread doing intensive calculations. Right now I have located the most time consuming loop in the thread ...
9
votes
1answer
110 views
Why did switching to from an infinite loop to TimerTask cause this drop in CPU usage?
I wrote a daemon which was structured like this:
while( true ) {
// do some stuff
Thread.sleep( 1000 );
}
I noticed it was using a very large amount of CPU - up to 100%. I have had a similar ...
9
votes
5answers
144 views
How to optimize for dual, quad and higher multi-processors?
Folks, I've been programming high speed software over 20 years and know virtually every trick in the book from micro-bench making cooperative, profiling, user-mode multitasking, tail recursion, you ...
9
votes
5answers
331 views
Is setInterval CPU intensive?
I read somewhere that setInterval is CPU intensive. I created a script that uses setInterval and monitored the CPU usage but didn't notice a change. I want to know if there is something I missed.
...
9
votes
3answers
286 views
Is there a way to check whether the processor cache has been flushed recently?
On i386 linux. Preferably in c/(c/posix std libs)/proc if possible. If not is there any piece of assembly or third party library that can do this?
Edit: I'm trying to develop test whether a kernel ...
9
votes
7answers
272 views
Does a CPU assigns a value atomically to memory?
A quick question I've been wondering about for some time; Does the CPU assign values atomically, or, is it bit by bit (say for example a 32bit integer).
If it's bit by bit, could another thread ...
9
votes
5answers
4k views
How to programmatically get the CPU cache page size in C++?
I'd like my program to read the cache line size of the CPU it's running on in C++.
I know that this can't be done portably, so I will need a solution for Linux and another for Windows (Solutions for ...
8
votes
1answer
183 views
How has CPU architecture evolution affected virtual function call performance?
Years ago I was learning about x86 assembler, CPU pipelining, cache misses, branch prediction, and all that jazz.
It was a tale of two halves. I read about all the wonderful advantages of the lengthy ...
8
votes
6answers
236 views
How to do hardware independent parallel programming?
These days there are two main hardware environments for parallel programming, one is multi-threading CPU's and the other is the graphics cards which can do parallel operations on arrays of data.
The ...
8
votes
2answers
213 views
efficient 2d mean filter implementation that minimises redundant memory loads?
Suppose a general sliding algorithm that executes some function on a kernel, like a mean-filter (average-filter) or the sum of absolute differences algorithm in image processing. As the kernel slides ...
8
votes
4answers
2k views
Why does this Java code not utilize all CPU cores?
The attached simple Java code should load all available cpu core when starting it with the right parameters. So for instance, you start it with
java VMTest 8 int 0
and it will start 8 threads ...
8
votes
10answers
792 views
Diagnosing runaway CPU in a .Net production application
Does anyone know of a tool that can help me figure out why we are seeing runaway CPU in a managed app?
What I am not looking for:
Process explorer, it has this awesome feature that lets you see ...
8
votes
10answers
6k views
Throttling CPU/Memory usage of a Thread in Java?
I'm writing an application that will have multiple threads running, and want to throttle the CPU/memory usage of those threads.
There is a similar question for C++, but I want to try and avoid using ...
8
votes
14answers
798 views
What are a few time-consuming operations in C?
I'm looking to write a quick benchmark program that can be compiled and run on various machines. Rather than using commercially/open-sourceally available options, I'd rather have my own to play around ...
8
votes
4answers
406 views
Why do Off-the-shelf applications work on both Intel and AMD processors?
One thing I lack understanding on is how can code compiled for an Intel CPU work on an AMD CPU.
My base understanding is that if you compile C code, for example, the compiler turns the source code ...
8
votes
3answers
676 views
low level programming: How does the OS start a new thread/process?
Whenever the bootloader loads the operating system there is presumably only ONE program flow active, right? This would mean, one processor holds the instruction pointer and executes the commands it ...
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 ...
8
votes
4answers
528 views
Windows CPU notification for misbehaving ColdFusion application
I have a web application, written in ColdFusion, which periodically starts using 100% of the server's CPU and crashes the ColdFusion service.
Since I have been unable to reproduce the problem myself, ...
8
votes
5answers
2k views
How do you disable the CPU window in Delphi 7
When stepping a program in Delphi 7, the CPU window sometimes pops up and then steps through that instructions. I find this an annoyance as I wish to only step Pascal Code.
Does anyone know how to ...