From fdef79d317d455eb5c9e9e86feb97416eb594690 Mon Sep 17 00:00:00 2001 From: Zhi <5145158+zhiics@users.noreply.github.com> Date: Wed, 9 Sep 2020 19:05:21 -0700 Subject: [PATCH] hot fix (#6434) --- src/auto_scheduler/compute_dag.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/auto_scheduler/compute_dag.cc b/src/auto_scheduler/compute_dag.cc index b9e9af8..7ebed21 100755 --- a/src/auto_scheduler/compute_dag.cc +++ b/src/auto_scheduler/compute_dag.cc @@ -35,6 +35,7 @@ #include #include +#include #include #include #include @@ -734,7 +735,7 @@ std::string GetOrigLayout(std::set* placeholder_axis_names, const t } std::ostringstream os; - uint i = 0; + uint32_t i = 0; const auto& placeholder_op = placeholder->op; CHECK_GT(extractor.read_access.count(placeholder_op), 0); for (const auto& ev : extractor.read_access[placeholder_op]) { -- 2.7.4