Tagged Questions
The cpu-usage tag has no wiki summary.
36
votes
5answers
40k views
How to get the CPU Usage in C#?
I want to get the overall total CPU usage for an application in C#. I've found many ways to dig into the properties of processes, but I only want the CPU usage of the processes, and the total CPU like ...
18
votes
6answers
1k views
Some fundamental but important questions about web development?
I've developed some web-based applications till now using PHP, Python and Java. But some fundamental but very important questions are still beyond my knowledge, so I made this post to get help and ...
18
votes
2answers
25k views
MySQL high CPU usage
Recently my server CPU has been going very high.
CPU load averages 13.91 (1 min) 11.72 (5 mins) 8.01 (15 mins) and my site has only had a slight increase in traffic.
After running a top command, I ...
16
votes
2answers
1k views
Simulate steady CPU load and spikes
How could I generate steady CPU load in C#, lower than 100% for a certain time? I would also like to be able to change the load amount after a certain period of time. How do you recommend to generate ...
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
7answers
9k views
jQuery animate() and browser performance
I've got some elements that I'm moving across the page very slowly. Essentially, I'm decreasing the left margin of two images over a span of 40 seconds or so.
Visually, it's working beautifully. ...
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 ...
13
votes
8answers
8k views
12
votes
5answers
6k views
How to get the cpu usage per thread on windows (win32)
Looking for Win32 API functions, C++ or Delphi sample code that tells me the CPU usage (percent and/or total CPU time) of a thread (not the total for a process). I have the thread ID.
I know that ...
12
votes
14answers
6k views
Command line command to auto-kill a command after a certain amount of time
I'd like to automatically kill a command after a certain amount of time. I have in mind an interface like this:
% constrain 300 ./foo args
Which would run "./foo" with "args" but automatically ...
10
votes
5answers
2k views
Is there any way of throttling CPU/Memory of a process?
Problem: I have a developers machine (read: fast, lots of memory), but the user has a users machine (read: slow, not very much memory).
I can simulate a slow network using Fiddler ...
9
votes
1answer
431 views
iOS - Get CPU usage from application
Do anyone know how to do it? It's definitely possible, because there are application in app store (Activity Monitor Touch) which can show it.
9
votes
4answers
457 views
How to write a C or C++ program to act as a memory and CPU cycle filler?
I want to test a program's memory management capabilities, for example (say, program name is director)
What happens if some other processes take up too much memory, and there is too less memory for ...
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 ...
9
votes
4answers
877 views
Maximize CPU Usage
How do I maximize the CPU usage for my application? I tried setting it to "Real-time" in the Task Manager, but there was no noticeable improvement - it's stuck at 50%.
I'm working in Windows XP with ...
8
votes
3answers
541 views
Getting Linux process resource usage (cpu,disk,network)
I want to use the /proc to find the resource usage of a particular process every second. The resources include cputime, disk usage and network usage. I looked at /proc/pid/stat , but I am not sure ...
8
votes
5answers
1k views
Best way to slow down a thread? Is using Sleep() OK?
I've written a C++ library that does some seriously heavy CPU work (all of it math and calculations) and if left to its own devices, will easily consume 100% of all available CPU resources (it's also ...
7
votes
2answers
599 views
Do a mass db.delete on App Engine, without eating CPU
We've got a reasonably-sized database on Google App Engine - just over 50,000 entities - that we want to clear out stale data from. The plan was to write a deferred task to iterate over the entities ...
7
votes
1answer
181 views
Running tasks in the background with lower CPU priority
I have a feature in my CMS that allows a user to upload a zip file full of images and the server will extract them and insert each one into an image gallery. I've noticed that this grinds up the CPU ...
7
votes
4answers
8k views
CPU Usage Per Process in Python
Is it possible for me to see the amount of processor usage (% of maximum) that the current, python, app is using?
Scenario:
My host will allow me to run my app as long as it does not consume more ...
6
votes
3answers
446 views
How to calculate CPU usage of a piece of .NET code?
Our tool generates performance logs in diagnostic mode however we track the performance as in code execution time (Stopwatch + miliseconds).
Obviously it's not reliable at all, the testing system's ...
6
votes
1answer
708 views
RunWebThread taking up 33% of CPU time on iPhone App
I'm making a game for the iPhone using Cocos2D. At the beginning of the game, when there are few sprites, the game runs fine, but when there are many sprites on the screen, the game gets choppy.
...
6
votes
5answers
4k views
How to get total cpu usage in Linux (c++)
I am trying to get total cpu usage in %. First I should start by saying that "top" will simply not do, as there is a delay between cpu dumps, it requires 2 dumps and several seconds, which hangs my ...
6
votes
2answers
339 views
portable system/process information library
I need to retrieve process information in a C/C++ program. I need at least basic things like CPU% and memory usage, but additional details would be useful as well.
The problem is that I need to use ...
6
votes
8answers
3k views
How can I programmatically limit my program's CPU usage to below 70%?
Of late, I'm becoming more health oriented when constructing my program, I have observed that most of programs take 2 or 3 minutes to execute and when I check on the task scheduler, I see that they ...
6
votes
4answers
1k views
Setting java to use one cpu
I have an application that has a license for a set number of cpus and I want to be able to set the number of cpus that java runs in to 1 before the check is done. I am running Solaris and have looked ...
6
votes
6answers
1k views
How to reduce CPU usage when moving a component in a OnMouseMove event in Delphi 7?
In a Delphi 7 application, I want to move a component accordingly to the mouse.
Im doing something like that:
procedure MyComponent.MouseMove(Sender: TObject;Shift: TShiftState; X, Y: Integer);
begin
...
6
votes
9answers
7k views
How can I stop a Java while loop from eating >50% of my CPU?
Okay, I tested this on an empty program, and just having a while(true){} running gave me >50% on my CPU. I have a game I'm working on that uses a while loop as it's main loop, and it's CPU is at 100 ...
6
votes
2answers
371 views
Best way to measure execution time in automated regression tests
I have some code that I want to measure the speed of while it runs continuously in automated regression tests. The purpose of this would be to alert me to changes made to the code which have had a ...
5
votes
2answers
333 views
How to determine CPU and memory cost of a function?
Can someone suggest what would be the best practice or a suitable library to determine:
Number of CPU cycles used during execution of a Python function?
Amount of Memory used by the same Python ...
5
votes
1answer
119 views
cpu usage increasing up to 100% in infinite loop in thread
I am implementing a web based chat platform in ASP.NET Web Application, and I use technique similar to long polling. I mean I keep each web request from client for a specific time period(timeout) or ...
5
votes
4answers
226 views
Performance bottleneck - using Visual Studio
I'm looking for a way to find bottleneck methods in a solution (lots of projects).
Lets say i have a HUGE program (1000s of methods) and i want to improve performance by finding methods that are ...
5
votes
2answers
133 views
difference in CPU time for two similar lines
There is a while loop in my program, where IterZNext, IterZ are pointers to nodes in a list. The nodes in the list are of type struct with a field called "Index".
double xx = 20.0;
double yy = ...
5
votes
4answers
198 views
100% CPU usage with a regexp depending on input length
I'm trying to come up with a regexp in Python that has to match any character but avoiding three or more consecutive commas or semicolons. In other words, only up to two consecutive commas or ...
5
votes
3answers
893 views
How to get CPU usage for more than 2 cores?
I try to get in my program CPU usage divided by a cores. Now I use the PerformanceCounter
and changing the InstanceName between 0 and 1 I have the data from 2 cores.
PerformanceCounter pc0 = new ...
5
votes
1answer
2k views
Why is mscorsvw.exe maxing out my CPU?
I installed my .NET windows service and right after installing I noticed mscorsvw.exe maxing out my CPU; this happens when I do a new install of my service.
Why is mscorsvw "interfering" with my ...
5
votes
6answers
3k views
Control a perl script's CPU utilization?
I am doing a lot of file searching based on a criteria in multiple iterations from my Perl script and it seems to take up 100% of the CPU time. Is there a way to control my script CPU utilization? I ...
5
votes
5answers
585 views
Why does .NET use so much CPU, is this a problem?
(This was meant to be a general hypothetical question, me whining that .NET was a pig and begging for reasons. It was not really meant to be a question about my specific app.)
Currently I am ...
5
votes
3answers
728 views
How can I get CPU usage and/or RAM usage of a *THREAD* in C# (managed code)?
I know how to get CPU usage and memory usage for a process, but I was wondering how to get it on a per-thread level. If the best solution is to do some P-Invoking, then that's fine too.
Example of ...
4
votes
2answers
48 views
MySQL: Slow log; append CPU usage
I have the MySQL slow log feature enabled: http://dev.mysql.com/doc/refman/5.1/en/slow-query-log.html
But sometimes the query_times are high simply due to high CPU load.
How can I append the current ...
4
votes
2answers
80 views
How to detect if it is ok to activate aditional processing
Motivation is kind of hard to explain so I'll provide an example: Assume you receive high number of samples every second and your task is to classify them.
Lets also say this: You have two ...
4
votes
2answers
126 views
Ocaml: Getting CPU usage of process
What I want to do
I have a computationally intensive OCaml application and I'd like it to run in the background without disturbing normal computer usage. I'd like to present the users with two ...
4
votes
5answers
358 views
thread get 100% CPU very fast
I am implementing a very basic thread in C#:
private Thread listenThread;
public void startParser()
{
this.listenThread = new Thread(new ThreadStart(checkingData));
...
4
votes
3answers
719 views
Why does Eclipse + ADT plugin keep the CPU at 100%
The second I open up layout.xml file from a simple skeleton app in Eclipse example plugin, the cpu usage locks up to 25% IE. 1 full core. and it's been on like this for the last 30minutes I wanted to ...
4
votes
2answers
224 views
Java profiling: detect which piece of code causes high CPU load
I profiled my code with both JProfiler and YourKit. However, I haven't been able to figure out how to detect which piece of code is responsible for high CPU load.
It's trivial to detect hot spots if ...
4
votes
1answer
301 views
Is it safe to use lseek() when reading from Proc-FS files second time
Is it safe to use lseek(fd,0) and then read(fd,buf) for /proc/stat file instead of reopening it to get updated contents of this file next time?
And what does the mmap() call after opening this file ...
4
votes
1answer
610 views
Is the Linux Scheduler aware of hardware interrupts (Scheduler Jitter)
If a process is interrupted by a hardware interrupt (First Level Interrupt Handler), then does the CPU scheduler becomes aware of that (e.g. Does the Scheduler count execution time for hardware ...
4
votes
4answers
552 views
What can I do to make my C# application take advantage of multiple processor cores?
I've been doing some tests about the way a .NET C# application uses resources, like CPU or memory. I wrote some loops that calculate values for a large amount of numbers and I'm satisfied with the ...
4
votes
2answers
473 views
Limiting process memory/CPU usage on linux
Is there a way to run a process and limit its memory usage to say "X" MB and CPU usage to say "Y" Mhz in Linux?
I know we can adjust scheduling priority by using the "nice" command. However, the ...
4
votes
4answers
240 views
How can i diagnose IIS pushing the CPU to 100% usage?
I have a web server with more than a few ASP.NET sites running on it. Every so often, i notice that IIS is pushing the server's CPU to 100%. The sites share application pools, per .NET version they ...