From 730f622cf15d05abceb2b1ee3e2506967ee2f9db Mon Sep 17 00:00:00 2001 From: Max Base Date: Wed, 16 Aug 2023 20:40:19 +0100 Subject: [PATCH] Remove duplicate load word inside .cc file --- src/tir/schedule/primitive/layout_transformation.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tir/schedule/primitive/layout_transformation.cc b/src/tir/schedule/primitive/layout_transformation.cc index d9a9f3cfed32..9fddfb171bc1 100644 --- a/src/tir/schedule/primitive/layout_transformation.cc +++ b/src/tir/schedule/primitive/layout_transformation.cc @@ -1040,7 +1040,7 @@ class TransformationPaddingExpressionError : public ScheduleError { String FastErrorString() const final { std::ostringstream ss; - ss << "ScheduleError: Pad value may not contain load load from " << illegal_load_->buffer->name; + ss << "ScheduleError: Pad value may not contain load from " << illegal_load_->buffer->name; return ss.str(); }