anotherwindowsuser
Well-Known Member
- Joined
- Jun 3, 2020
- Messages
- 345
- Thread Author
-
- #1
I don't understand why it hovers 75% average. This is doing video processing. Can I make it 100%? Thanks in advance.
Last edited by a moderator:
Solution
Not all subtasks of a job can be performed in parallel, some parts have to wait for the results of other parts. Look at your programs, you write them sequential, w.o.w filling just one processor, other processors may perform system housekeeping functions but these will probably not a produce 100% load. Modern compilers try to optimize programs, not all can be done.
bochane
Excellent Member
- Joined
- Oct 18, 2012
- Messages
- 1,400
Not all subtasks of a job can be performed in parallel, some parts have to wait for the results of other parts. Look at your programs, you write them sequential, w.o.w filling just one processor, other processors may perform system housekeeping functions but these will probably not a produce 100% load. Modern compilers try to optimize programs, not all can be done.