aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/kernels/requantize.cc
Commit message (Collapse)AuthorAge
* Use metagemm in requantize.cc.Gravatar A. Unique TensorFlower2016-10-28
| | | | Change: 137559198
* Change quantize_graph to use two steps - RequantizationRange and Requantize -Gravatar A. Unique TensorFlower2016-10-21
| | | | | | | | | in place of QuantizeDownAndShrinkRange. This will alow replacing RequantizationRange with constants. Also remove restriction on requested_output_max that was not present in QuantizeDownAndShrinkRange. Change: 136906788
* Add Requantize op. This is a step in splitting QuantizeDownAndShrinkRange intoGravatar A. Unique TensorFlower2016-10-20
separate ops for finding the min/max and doing the requantization step. Change: 136727927