Files
mesa/src
Matt Turner 94b68109fb i965/fs: Optimize sqrt+inv into rsq.
Transform

   sqrt a, b
   rcp  c, a

into

   sqrt a, b
   rsq  c, b

The improvement here is that we've broken a dependency between these
instructions. Leads to 330 fewer INV instructions and 330 more RSQ.

Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
2014-09-30 17:09:34 -07:00
..
2014-10-01 00:29:31 +02:00
2014-04-14 00:06:53 -07:00
2014-09-27 15:20:49 +01:00
2014-09-30 17:09:34 -07:00