Click here to Skip to main content
15,887,683 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: I Can Not Manage This Task Pin
dandy726-Feb-24 10:23
dandy726-Feb-24 10:23 
GeneralRe: I Can Not Manage This Task Pin
BernardIE53176-Feb-24 10:35
BernardIE53176-Feb-24 10:35 
GeneralRe: I Can Not Manage This Task Pin
dandy726-Feb-24 10:58
dandy726-Feb-24 10:58 
GeneralRe: I Can Not Manage This Task Pin
BernardIE53176-Feb-24 11:11
BernardIE53176-Feb-24 11:11 
GeneralRe: I Can Not Manage This Task Pin
dandy727-Feb-24 10:48
dandy727-Feb-24 10:48 
GeneralRe: I Can Not Manage This Task Pin
stheller29-Feb-24 9:59
stheller29-Feb-24 9:59 
GeneralRe: I Can Not Manage This Task Pin
dandy729-Feb-24 11:33
dandy729-Feb-24 11:33 
GeneralRe: I Can Not Manage This Task Pin
Gary Stachelski 20216-Feb-24 13:16
Gary Stachelski 20216-Feb-24 13:16 
Many operations on the motherboard do not require direct CPU utilization. Reading/Writing to disk files (HD drives have rotational delays, SSDs have bandwidth limitations depending on read or write, Pulling data from the Internet, moving data to and from your video card.) Many use hardware DMA (Direct Memory Access) to move the data and the CPU has to go idle while the transfers are taking place. Another area that can cause CPU to idle is if you exceed your physical memory and start using virtual memory. The the operating system gets involved in swapping data to and from disk and memory to give you the illusion of more main memory. Some opcode level instructions don't like it when the data they are referencing is beyond a certain physical distance. This can cause stalls in the pre-execution decoding that the CPU does and cause flushes of opcodes that have been decoded and stacked in the execution pipeline. Same goes with generated code that has an abundance of branches. Branch prediction can falter and cause CPU stalls as it has to reload the pipeline with opcodes from the target location.
Depends on what your computer is processing.
Are you experiencing slow response (stuttering pointer movement, keyboard lag)?
That's all I can think of "off the top of my head" I am sure there are more reasons for low CPU utilization.
JokeRe: I Can Not Manage This Task Pin
jschell6-Feb-24 5:11
jschell6-Feb-24 5:11 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch6-Feb-24 6:25
mvahoney the codewitch6-Feb-24 6:25 
GeneralRe: I Can Not Manage This Task Pin
jochance7-Feb-24 18:42
jochance7-Feb-24 18:42 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch7-Feb-24 20:50
mvahoney the codewitch7-Feb-24 20:50 
GeneralRe: I Can Not Manage This Task Pin
jochance8-Feb-24 4:49
jochance8-Feb-24 4:49 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch8-Feb-24 5:14
mvahoney the codewitch8-Feb-24 5:14 
GeneralRe: I Can Not Manage This Task Pin
jochance9-Feb-24 6:12
jochance9-Feb-24 6:12 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch9-Feb-24 6:52
mvahoney the codewitch9-Feb-24 6:52 
GeneralRe: I Can Not Manage This Task Pin
jochance9-Feb-24 8:38
jochance9-Feb-24 8:38 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch9-Feb-24 9:04
mvahoney the codewitch9-Feb-24 9:04 
GeneralRe: I Can Not Manage This Task Pin
jochance9-Feb-24 9:10
jochance9-Feb-24 9:10 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch9-Feb-24 10:04
mvahoney the codewitch9-Feb-24 10:04 
GeneralRe: I Can Not Manage This Task Pin
jochance9-Feb-24 10:25
jochance9-Feb-24 10:25 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch9-Feb-24 10:39
mvahoney the codewitch9-Feb-24 10:39 
GeneralRe: I Can Not Manage This Task Pin
jochance9-Feb-24 12:03
jochance9-Feb-24 12:03 
GeneralRe: I Can Not Manage This Task Pin
obermd5-Feb-24 16:00
obermd5-Feb-24 16:00 
GeneralRe: I Can Not Manage This Task Pin
honey the codewitch5-Feb-24 16:04
mvahoney the codewitch5-Feb-24 16:04 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.