Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/FBGEMM.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/fbgemm/QuantUtils.h')
-rw-r--r--include/fbgemm/QuantUtils.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/fbgemm/QuantUtils.h b/include/fbgemm/QuantUtils.h
index f658f73..43855d8 100644
--- a/include/fbgemm/QuantUtils.h
+++ b/include/fbgemm/QuantUtils.h
@@ -68,8 +68,7 @@ FBGEMM_API T Quantize(
template <typename T>
FBGEMM_API T Quantize(float src, const TensorQuantizationParams& qparams) {
- return Quantize<T>(
- src, qparams.zero_point, qparams.scale, qparams.precision);
+ return Quantize<T>(src, qparams.zero_point, qparams.scale, qparams.precision);
}
template <typename T>