Improved workload tuning
#7
Quote:1) Selecting a GPU load percentage seems fairly trivial.
At startup, after retrieving the GPU capabilites (# of shaders), simply scale and use that number.
All this assumes is that # of shaders is an input to some function in the application.

no, you can not scale at runtime when you are developing for performance.

Quote:2) Optimizing "workload parameters" is worthy goal only if they have a significant effect on efficiency.
For this to work, it would be best if they can be formulated into a linear equation with independent parameters, a convex solution (no local maximums), with Hashes/s as the output.
After reaching something of a steady state, "tweak" each parameter (up and down) to maximize Hashes/s.
A separate thread can handle this, but it assumes that the parameters can be adjusted after startup.

no, it can not, see my original post. its about the 90% thing.

Quote:3) Scaling back a GPU so it doesn't exceed a maximum temperature is a simple feedback and control system, similar to the heater thermostat on your wall.
This would require a monitoring thread (in Java I'd implement it as a repeating timer that fires an event every 0.5s or so).
If the maximum temperature is approached, scale back the number of available shaders.
As before, it assumes that the application architecture uses something like a job queue, where the number of workers (i.e. shaders) can be changed at run time.
And it assumes that the temperature reading from the GPU is accurate.

this is implemented by the driver. it automatically clocks down if some threshold is reached.


Messages In This Thread
Improved workload tuning - by me.scotty - 11-30-2011, 09:06 PM
RE: Improved workload tuning - by radix - 12-01-2011, 10:42 AM
RE: Improved workload tuning - by me.scotty - 12-01-2011, 06:02 PM
RE: Improved workload tuning - by KT819GM - 12-01-2011, 06:46 PM
RE: Improved workload tuning - by atom - 12-02-2011, 01:46 PM
RE: Improved workload tuning - by me.scotty - 12-07-2011, 01:33 AM
RE: Improved workload tuning - by atom - 12-07-2011, 12:16 PM
RE: Improved workload tuning - by ntk - 12-11-2011, 11:22 AM
RE: Improved workload tuning - by ntk - 12-11-2011, 12:50 PM
RE: Improved workload tuning - by me.scotty - 12-11-2011, 08:00 PM