Is there any way to measure a specific process CPU usage by cores?
I know top is good for measuring the whole system's CPU usage by cores and taskset can provide information about which CPU core is allowed for the process to run on.
But how do I measure a specific process' CPU usage by CPU cores?
I want to be able to program multiple threads with gnu octave so it will utilize multiple processors.
I installed GNU Octave on Fedora 17 Linux and did the following:
yum install octave
Which installed on my computer the latest version …
I am sending network packets from one thread and receiving replies on a 2nd thread that runs on a different CPU core. My process measures the time between send & receive of each packet (similar to ping). I am using …