Tagged Questions
The utilization tag has no wiki summary.
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, ...
5
votes
5answers
520 views
Too Little CPU Utilization in Java
Hey stackoverflow community!
I'm having an issue where a highly involved algorithmic program is using TOO LITTLE cpu utilization: somewhere between 3 and 4%. It is taking very long to return ...
2
votes
1answer
150 views
Web application Load Tests: What counters to look at?
During a stress/load test of a ASP.NET app hosted in IIS, what should I be monitoring on the app server?
For example, the built in utility performance monitor in windows has a huge list of counters ...
2
votes
3answers
4k views
How to get thread CPU utilization metrics in Redhat Linux
I need to get CPU utilization metrics for all the threads in a process.
Operating system = Redhat linux
programming language = C++ using POSIX
requirements = need to take samples every few seconds ...
2
votes
4answers
889 views
Proper disposal of SharePoint objects?
I hope there's a SharePoint expert here on SO who can help with this.
Here's the problem. My SharePoint logs contain this line, several times:
An SPRequest object was not disposed before the end of ...
1
vote
1answer
74 views
Calculate process utilization in hyper-threading machine
I am trying to calculate a process utilization on my machine with Intel hyper-threading.
I have one problem when trying to do the calculation:
I am counting the loops my process is doing when ...
1
vote
1answer
53 views
Utilization Tool, MS-Project alternative, Resource Controlling Tool
i'm looking for a alternative Program to control my resources, collabrators and projects.
I dislike MS-Project, maybe alternative MS-Project specialisized on Ressource Controlling.
Does anyone have ...
1
vote
1answer
129 views
Make Graphics Card process like an additional CPU to my program
So is it possible to make the graphics card act like an additional CPU in my program, calculating other things beside graphical content?
1
vote
1answer
50 views
Finding ideal utilization of rentable items in ruby
# Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec
rentable_items = [
%w(x x x - - - x x x - - -), # item1
%w(- - - - - - - - - - - -), # item2
%w(x x x x x x x - - - - -), # item3
...
1
vote
2answers
163 views
How to compare application memory usage on Linux and Windows?
I'm trying to compare memory utilization of an application running under Linux and Windows
on the same PC. Is there a "quick and dirty" way to normalize readings from Windows task manager and Linux ...
1
vote
2answers
262 views
How to estimate FPGA utilization for designing a work a like core?
I was considering some older generation FPGA's to interface with a legacy system. So I want a good way of estimating how much space is necessary to replace an ASIC given its transistor count.
Does ...
1
vote
1answer
510 views
How to get CPU Utilization metrics in Windows Xp?
I need to get CPU utilization metrics of all the process.
Operating system = Windows Xp
programming language = Java
requirements = need to take samples every few seconds indefinitely, not just ...
1
vote
2answers
911 views
CPU Utiliztion per process in Win32 API
I am doing a project on a centralized LAN management system. I need to know how many CPU cycles is each process of a remote PC consuming(as in a Task Manager )so that the network admin can close few ...
0
votes
3answers
82 views
In need of a Linux memory-utilization tool
I'm working on a thesis right now where I have to measure the usage and power consumption of VM's.
To do so, I create a VM, then log into it and start a lookbusy process which utilizes the allocated ...
0
votes
1answer
297 views
Multi-core CPU utilization by Java application
I have a program that sorts big files by splitting them into chunks, sort chunks and merge them into final sorted file. Application runs one thread for loading/saving data from/to file - only one ...
0
votes
1answer
87 views
Generating specific cpu, disk and network utilization workloads on Linux
I am looking for a Linux tool to generate workloads with pre-defined cpu, disk and network utilization. For example, I need to keep my cpu utilization on 55% and the disk utilization on 30% for a ...
0
votes
3answers
276 views
CPU usage in AS3
I have a large project with lots of classes. It takes 40% CPU when it is running. What is the best way to find out what operations and functions are responsible for the load? I am using Flash Builder ...
0
votes
1answer
26 views
Virtual Enviroment for server utilization
I have a django app and I would like to have an experience on scaling-up my project.
http://www.djangobook.com/en/beta/chapter21/
In this document scaling issues of django applications are ...
0
votes
0answers
122 views
How to get status of congestionprovider option in Windows Vista & Windows 7?
Congestion provider is new service in Windows Vista (i assume Windows 7 contains it too) for squeezing more from your network bandwidth available. It applies only for applications using tcp protocol. ...
0
votes
2answers
78 views
How to measure utilization of a device with Selenium?
Does anybody knows whether it is possible to measure utilization of a server CPU with Selenium RC? I need to know service demand on the devise.
Thanks in advance.
0
votes
3answers
373 views
How will applications be scheduled on hyper-threading enabled multi-core machines?
I'm trying to gain a better understanding of how hyper-threading enabled multi-core processors work. Let's say I have an app which can be compiled with MPI or OpenMP or MPI+OpenMP. I wonder how it ...
0
votes
4answers
84 views
How to utilize my computation resources
I wrote a program to solve a complicated problem. This program is just a c# console application and doesn't do console.write until the computation part is finished, so output won't affect the ...
0
votes
1answer
79 views
Processor Utilization by threads spawned by a program
I have a java program which spawns multiple threads say, 10-20 threads. This program is scheduled to be run on a machine that has 32 processors.
I am keen to know if all the processors' power would ...
0
votes
4answers
375 views
CPU Utilization of Service DLL?
I need to find out the CPU utilization of a service DLL. I have looked in existing samples and we can find CPU utilization for processes.
I think DLL will be loaded by services.exe. So is it possible ...
-1
votes
3answers
119 views
Processor Utilization
Out of curiosity ... is it possible to have more than 100% utilization of the CPU in a multi-threaded environment?