Skip to content

Commit

Permalink
hot fix (apache#6434)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiics authored and kevinthesun committed Sep 17, 2020
1 parent c22df4c commit 83039af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/auto_scheduler/compute_dag.cc
Expand Up @@ -35,6 +35,7 @@
#include <tvm/tir/stmt_functor.h>

#include <algorithm>
#include <cstdint>
#include <queue>
#include <unordered_map>
#include <unordered_set>
Expand Down Expand Up @@ -734,7 +735,7 @@ std::string GetOrigLayout(std::set<std::string>* 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]) {
Expand Down

0 comments on commit 83039af

Please sign in to comment.