From 424eaa1e2692f0b1fc23a1139aca766547ba75ff Mon Sep 17 00:00:00 2001 From: Matthew Date: Tue, 25 May 2021 14:53:31 -0600 Subject: [PATCH] fix typos --- src/relay/transforms/quantize_fake_quantization.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/relay/transforms/quantize_fake_quantization.cc b/src/relay/transforms/quantize_fake_quantization.cc index 1c6bbb119bffd..e4024f7610b55 100644 --- a/src/relay/transforms/quantize_fake_quantization.cc +++ b/src/relay/transforms/quantize_fake_quantization.cc @@ -18,8 +18,9 @@ */ /*! - * \file src/relay/transforms/simplify_expr.cc - * \brief A pass for simplifying the Relay expression. + * \file src/relay/transforms/quantize_fake_quantization.cc + * \brief A pass for taking fake quantized graphs and converting them + * to actual integer operations. */ #include @@ -52,7 +53,7 @@ * quantize for subtraphs bounded by dequantize operations. This pass extracts the affine * types of the inputs for later processing * - * The third pass is an ExprMutator the recursively rewrites the subgraphs using packed funcs + * The third pass is an ExprMutator that recursively rewrites the subgraphs using packed funcs * registered with the FTVMQuantizeFakeQuantization attribute. These packed funcs rewrite * the ops based on the affine types of their inputs and then return the affine types of the * new rewriten ops to pass that information down the stack during rewrite.