Message boards : Number crunching : Work Unit Stated CPU usage 0.981C + 1NV
Author | Message |
---|---|
Now I am happy with the 1NV = 1 x Nvidia GPU | |
ID: 53410 | Rating: 0 | rate: / Reply Quote | |
don't worry, this is normal for GPUGRID tasks, regardless which CPU you have. | |
ID: 53411 | Rating: 0 | rate: / Reply Quote | |
Now I am happy with the 1NV = 1 x Nvidia GPU The 0.981 C is what default amount of CPU thread a work unit should use. It doesn't always use that much or that little. It's more of a guideline. It will use as much CPU resource as it needs to process the work unit. The rest of your question gets into a sticky debate. If you are running 8 CPU task on a 8 thread CPU and running a single GPU task with a 0.981 C requirement, then you are running 9 tasks! How can that be??? Because, are are not running all 9 task simultaneously. You may think you are but there are momentary brief pauses where there is a shifting of work units across those 8 threads. They only way to prevent that is to set up an affinity lock for each work unit to each thread (something we don't do here) that way a single thread is dedicated specific work unit. In this case, the GPU work unit is going to be stealing processing time on a thread from other work units as it has a higher priority than the CPU work units. You just can't see this infinitesimal pauses as it shifts between tasks. Essentially you are starving the GPU of a thread it needs to process the work unit so it steals it where it can. Which brings up another question. There aren't any CPU task currently at GPUGrid so I'm guessing you are processing data from another project? Some of us restrict the number of work units from a project on a machine to make sure there is a 1-2 free cores to support the GPU and the OS. How we do this is another debate ____________ | |
ID: 53413 | Rating: 0 | rate: / Reply Quote | |
This is far more technical than I was looking for but thanks for the details, it shows me how much I still need to learn :) | |
ID: 53417 | Rating: 0 | rate: / Reply Quote | |
Message boards : Number crunching : Work Unit Stated CPU usage 0.981C + 1NV