Questions tagged [utilization]
106 questions
2
votes
2 answers
Linux bash scripting: Sum one column using awk for overall cpu utilization and display all fields
problem below:
Script: I execute ps command with pid,user... and I am trying to use awk to sum overall cpu utilization of different processes.
Command:
> $ps -eo pid,user,state,comm,%cpu,command --sort=-%cpu | egrep -v '(0.0)|(%CPU)' | head -n10 |…

Rober Martel
- 23
- 4
2
votes
3 answers
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 will be scheduled on a CentOS 5.3 box with four…

Jerry
- 21
- 3
2
votes
0 answers
Calculating CPU utilization with SystemTap
I'd like to obtain CPU utilization (%us, %sy, %id, %wa) using SystemTap. I wrote a script that uses timer.profile probe and counts processor ticks:
#! /usr/bin/env stap
probe timer.profile {
# probe perf.sw.cpu_clock {
if (!user_mode()) {
if…

adgud
- 21
- 4
2
votes
0 answers
Hyperthread behavior for omp applications windows 7 vs. centos
I am trying to reconcile difference observed in the way that an omp code runs on two different systems with hyperthreading. System 1 is an Intel Xeon X5680 (12 physical processors/24 logical processors) with Centos 5.4. System 2 is is an Intel Xeon…

user3521057
- 21
- 3
2
votes
4 answers
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 this thread. To avoid wasting system resources,…

Robert S.
- 25,266
- 14
- 84
- 116
1
vote
1 answer
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 running alone on the physical core
and counting it when…

user1120875
- 21
- 1
- 3
1
vote
2 answers
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 for one snapshot in time.
Knighthawk
1
vote
2 answers
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 processes,in case the CPU utilization of a system…
Knighthawk
1
vote
0 answers
How to understand the SmUtil returned by nvmlDeviceGetProcessUtilization?
I'm writing a program that monitors how processes use the GPU and I found an API provided by nvml, nvmlDeviceGetProcessUtilization.
Acordding the comment of this API, It reads recent utilization of GPU SM (3D/Compute), framebuffer, video encoder,…

nezhababa
- 11
- 1
1
vote
1 answer
CPU utilization usage check in EC2 for the past time usage
In AWS My CPU Utilization goes from 2% to 90% for 10 minutes how to get the usage details for the past usage time in AWS EC2 instance?

Danekrish
- 13
- 2
1
vote
1 answer
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 such an Magic-Tool? (:
Open-Source / Freeware…

a.schwab
- 251
- 1
- 4
- 15
1
vote
2 answers
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 4.5 AS3 Project. Built-in profiler doesn't help…

Atm
- 183
- 1
- 10
1
vote
1 answer
Measure the utilization of nvidia gpu
I am searching for methods to record the utilization at the GPU level. I have two definitions of utilization, optimistically I want to be able to compute both:
The number of running/utilized cuda cores by the GPU at a time instance.
Peak Efficiency…

Walid Hanafy
- 1,429
- 2
- 14
- 26
1
vote
0 answers
I there a way to calculate memory utilization of python program?
I am working on new encryption algorithm. And as you know there are some parameters to check if any algorithm is efficient or not. I have done performance check "Execution Time" on the algorithm and the result is amazing. So, I hopefully ask you to…

Adnan Bitar
- 19
- 2
1
vote
1 answer
Tensorflow low GPU utilization
I am running windows 10, core i7-8700 cpu, gtx geforce 1660 ti GPU.
When training models, gpu utilization is very low (5-10% at max, sometimes lower).
Even is network is five layers. CPU utilization on the other hand is 30% and above.

HNN
- 39
- 7