This is an automated email from the ASF dual-hosted git repository.

masahi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 52de91e366 [Fix] Fix typo in error message (#14890)
52de91e366 is described below

commit 52de91e366d61f72e6e30f09057904fbc288503d
Author: Isaac Whitfield <[email protected]>
AuthorDate: Fri May 19 19:37:47 2023 -0700

    [Fix] Fix typo in error message (#14890)
---
 src/tir/ir/data_layout.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/tir/ir/data_layout.cc b/src/tir/ir/data_layout.cc
index 3bcb6e8d53..119322455b 100644
--- a/src/tir/ir/data_layout.cc
+++ b/src/tir/ir/data_layout.cc
@@ -328,7 +328,7 @@ inline Array<PrimExpr> TransformShape(const 
Array<PrimExpr>& src_shape,
                                       const Array<PrimExpr>& transform_rule) {
   arith::Analyzer ana;
   ICHECK_EQ(src_shape.size(), src_axis.size())
-      << "Input shape size " << src_shape.size() << " mismatch with the 
exepected shape size "
+      << "Input shape size " << src_shape.size() << " mismatch with the 
expected shape size "
       << src_axis.size();
   // bind variables for original axes
   // for major-axis, bind the corresponding size

Reply via email to