cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

bjang
Journeyman III

Performance Metrics in Shader Analyzer (GSA)

I am very curious how shader analyzer(GSA) computes the ratio(ALU:TEX), bottleneck, Min, Max, and Avg cycles.

I don't understand why ration(ALU:TEX) is 29.32 when ALU count is 11 and TEX count is 2. And why GSA say it is ALU bound.

Is there any place I can get more information on each column in GSA other than tool tips being showed when I move the mouse on it?

Thanks,

0 Likes
1 Reply
bpurnomo
Staff

The ALU:TEX ratio is the expected ALU and TEX instruction ratio (it takes into account flow controls and loops).   Thus, it can be different than taking the ratio of the number of  ALU and TEX instructions in the shader.    If the ALU:TEX ratio is greater than 1, then TEX instructions are not the bottleneck (it could be ALU or other type of instructions).

 

0 Likes