diff options
| author | Kazuaki Ishizaki <kiszk@users.noreply.github.com> | 2019-10-20 00:11:03 -0700 |
|---|---|---|
| committer | A. Unique TensorFlower <gardener@tensorflow.org> | 2019-10-20 00:11:34 -0700 |
| commit | 8bfedb3ca599ccf3c507e721f4bf5e6a3b026f8c (patch) | |
| tree | da6308901341daa89423c3c956a74a881378d71b /mlir/lib/Quantizer/Support | |
| parent | 8317bd85e5cccc8048cd1be1b3b17c19c953764d (diff) | |
| download | bcm5719-llvm-8bfedb3ca599ccf3c507e721f4bf5e6a3b026f8c.tar.gz bcm5719-llvm-8bfedb3ca599ccf3c507e721f4bf5e6a3b026f8c.zip | |
Fix minor spelling tweaks (NFC)
Closes tensorflow/mlir#177
PiperOrigin-RevId: 275692653
Diffstat (limited to 'mlir/lib/Quantizer/Support')
| -rw-r--r-- | mlir/lib/Quantizer/Support/UniformSolvers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/lib/Quantizer/Support/UniformSolvers.cpp b/mlir/lib/Quantizer/Support/UniformSolvers.cpp index db5eaa0a05c..341df5bf888 100644 --- a/mlir/lib/Quantizer/Support/UniformSolvers.cpp +++ b/mlir/lib/Quantizer/Support/UniformSolvers.cpp @@ -59,7 +59,7 @@ bool UniformParamsFromMinMaxSolver::compute() { double minOvershoot = boundingMin - adjMinMax.first; // If undershooting on the min or max end, return that because it is // to be unconditionally avoided. Otherwise return the end with the - // greateast magnitude of overshoot. + // greatest magnitude of overshoot. if (maxOvershoot < 0) return maxOvershoot; if (minOvershoot < 0) |

