This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

GPU utilization using MALI G51

Hello Team,


We need to understand that how to get value of %GPU utilization for individual processes running on target because there are lot of parameter include such as GPU active, Non-Fragment queue active etc, By which factor we can achieve the overall GPU performance for our application

Please find the below attached image as you can see the highlight portion of MALI GPU Utilization :



Is there any calculation we need to do to achieve the overall GPU performance?

And also the GPU utilization is in mega-cycle how can we achieve it in percentage?

Parents
  • Hi Rohit,

    could you please provide the information regarding frequency

    Maximum frequency depends on the device - different vendors can use different silicon implementations, and choose to use different design constraints. I'd suggest talking to the chipset manufacturer.

    Empirically you can run a heavy load and look at the GPU performance over 1 second. If you see a sustained region where GPU Active cycles stays level that is a good region to measure.

    GPU % =(  clock speed got from streamline / clock speed of MALI G51)x 100%

    Assuming the GPU has a 1GHz sustainable top frequency, the following Streamline expression gives you a percentage relative to max load:

    ($MaliGPUCyclesGPUActive/(1000000000*$ZOOM)) * 100

    HTH, 
    Pete

Reply
  • Hi Rohit,

    could you please provide the information regarding frequency

    Maximum frequency depends on the device - different vendors can use different silicon implementations, and choose to use different design constraints. I'd suggest talking to the chipset manufacturer.

    Empirically you can run a heavy load and look at the GPU performance over 1 second. If you see a sustained region where GPU Active cycles stays level that is a good region to measure.

    GPU % =(  clock speed got from streamline / clock speed of MALI G51)x 100%

    Assuming the GPU has a 1GHz sustainable top frequency, the following Streamline expression gives you a percentage relative to max load:

    ($MaliGPUCyclesGPUActive/(1000000000*$ZOOM)) * 100

    HTH, 
    Pete

Children