Tagged Questions
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
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 ...
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
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
910 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
274 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
3answers
372 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
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 ...