- #1
zak100
- 462
- 11
Mod note: Initially posted in a non-HW forum section, so missing the template
Summary:: Hi,
I am trying to find CPU utilization
What is the CPU utilization if there are 5 processes running at the same time, and on average the CPU spends 30% of its time waiting on I/O completion?
The formula is :
What is P in this formula?: 1-P ^n
I found a solution which finds the CPU utilization for each process separately.
Can we do it in the following way:
1- (0.3)^5
= 0.9975
Is the above answer correct?
Somebody please guide me. Zulfi.
Summary:: Hi,
I am trying to find CPU utilization
What is the CPU utilization if there are 5 processes running at the same time, and on average the CPU spends 30% of its time waiting on I/O completion?
The formula is :
The formula for CPU utilization is 1−pn, in which n is number of process running in memory and p is the average percentage of time processes are waiting for I/O.
What is P in this formula?: 1-P ^n
I found a solution which finds the CPU utilization for each process separately.
Can we do it in the following way:
1- (0.3)^5
= 0.9975
Is the above answer correct?
Somebody please guide me. Zulfi.
Last edited by a moderator: