Tagged Questions

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
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 ...
0
votes
1answer
301 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
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 ...