GPU's Exection Units stalling and other performance issues

Started by
9 comments, last by ATEFred 11 years, 4 months ago
Hi,

I took a trace from the project I'm working on and I saw that the GPU VERY under used, basically GPU's EUs are Active 50% of the time (21% VertexShader, 29% PxielShader), and it's stalled 38.2% of the time, and Idle 11.5%.

I'm taking a look into it, but I'm not sure what kind of things to look for... I asume that the GPU can be stalling because of texture loads, I also found that there are more than 70 render targets used in each frame, so I asume that there must be some overhead in that (though not sure exactly what the penalty is for, creating targets is costly?.. switching to it?)....

What other kind of things could be stalling the GPU?... and if the application is running so slow why it says that the 11.5% of the time the GPU is idle?...

I'd appreciate some light on this smile.png

Thanks!
"lots of shoulddas, coulddas, woulddas in the air, thinking about things they shouldda couldda wouldda donne, however all those shoulddas coulddas woulddas ran away when they saw the little did to come"
Advertisement
the most common reason for gpu stalling is readbacks to the CPU side. So if you are waiting for the result of a non latent occlusion query, or are trying to readback any data from gpu that frame in your app code, the cpu will stall until the gpu reaches that command and the data is copied back. This results in the gpu being starved for work until the cpu side moves forwards and starts resubmitting gpu work.
Also if your frame takes longer on CPU and GPU of course, you will be stalling the gpu as well.
hmmm

famous issue is lock.. Ms so many told us don't lock video memory

but In real life you may use too much CPU..

I think you use CPU too much how about check CPU side? if you use too much CPU , CPU can't send data fast enough to GPU...

but always tuning performance is too hard to work ..

good luck and give me more information about this

Beauty is only skin deep , ugly goes to bones

World's only 3D engine tunner and 3D engine guru.

and real genius inventor :) but very kind warm heart .. and having serious depression for suffering in Korea

www.polygonart.co.kr ( currently out dated and only Korean will change to English and new stuff when I get better condition :) sorry for that)

Hi ATEFred, GeniousPooh...

weird enough, Intel's GPA Monitor is showing me that CPU load is about 30%... while GPU Busy % is around 93%, but with Exectution Units active only 50%...

so, if its not being stalled by the CPU, then something must be doing in the GPU that is stalling all EU's half of the time! :S

but I don't know how to look for that bottleneck.
"lots of shoulddas, coulddas, woulddas in the air, thinking about things they shouldda couldda wouldda donne, however all those shoulddas coulddas woulddas ran away when they saw the little did to come"
I'm not familiar with GPA however there are often counters/ways of finding out what parts of the GPU active and why they are stalled at any given execution.

For example; While the GPU might be 'busy' fetching data for the shaders to use the ALU units are 'stalled' simply because the GPU can't find enough thread groups to throw at the EU to keep them active to cover the latency (be that due to lack of work load on that call or too many register resources in use meaning it can't launch extra threads) thus the EUs stall until the data is ready.

In theory a draw call level break down might give you that kind of detail... but as I said I'm not familar with GPA...
On mobile/handheld graphics cards dependent texture reads can be an issue - that is where the UVs are modified in the pixel shader before they're used. It prevents the hardware from doing the texture lookup before the pixel shader is executed.

I have no idea if this is an issue on modern desktop graphic cards.

I have no idea if this is an issue on modern desktop graphic cards.


Modern desktop GPU's no longer make a distinction between dependent and non-dependent texture fetches
Thanks Phantom,


So... are you using NVidia's Nsight?.... where would do you find these counters you're talking about on the one you are using?
"lots of shoulddas, coulddas, woulddas in the air, thinking about things they shouldda couldda wouldda donne, however all those shoulddas coulddas woulddas ran away when they saw the little did to come"
Afraid not; the only times I've had to go down to this level I've used PIX for the X360 and GPAD on the PS3 :)

This topic is closed to new replies.

Advertisement