Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MemHammer] Rewrite Rules #554

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions include/tvm/arith/int_set.h
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,14 @@ Map<Var, IntSet> ConvertDomMap(const std::unordered_map<const VarNode*, IntSet>&
* \return An integer set that can cover all the possible values of e.
*/
IntSet EvalSet(PrimExpr e, const Map<IterVar, IntSet>& dom_map);
/*!
* \brief Same as EvalSet, but takes Map<Var, IntSet>
*
* \param e The expression to be evaluated.
* \param dom_map The domain of each variable.
* \return An integer set that can cover all the possible values of e.
*/
IntSet EvalSet(PrimExpr e, const Map<Var, IntSet>& dom_map);
/*!
* \brief Same as EvalSet, but takes unordered_map
*
Expand All @@ -172,6 +180,15 @@ IntSet EvalSet(PrimExpr e, const Map<IterVar, IntSet>& dom_map);
* \return An integer set that can cover all the possible values of e.
*/
IntSet EvalSet(PrimExpr e, const std::unordered_map<const tir::VarNode*, IntSet>& dom_map);
/*!
* \brief Same as EvalSet, but takes Array<PrimExpr>
*
* \param exprs The expressions to be evaluated.
* \param dom_map The domain of each variable.
* \return An array of integer sets that can cover all the possible values.
*/
Array<IntSet> EvalSet(const Array<PrimExpr>& exprs, const Map<Var, IntSet>& dom_map);

/*!
* \brief Find an symbolic integer set that contains is union over
* all the possible conditional values in dom_map.
Expand Down
12 changes: 12 additions & 0 deletions src/arith/int_set.cc
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,18 @@ IntSet EvalSet(PrimExpr e, const std::unordered_map<const VarNode*, IntSet>& dom
return EvalSet(e, ConvertDomMap(dom_map));
}

Array<IntSet> EvalSet(const Array<PrimExpr>& exprs, const Map<Var, IntSet>& dom_map) {
Array<IntSet> result;
result.reserve(exprs.size());
Analyzer ana;
IntervalSetEvaluator m(&ana, dom_map);
for (const PrimExpr& e : exprs) {
result.push_back(m.Eval(e));
}
return result;
}


IntSet EvalSet(Range r, const Map<Var, IntSet>& dom_map) {
Analyzer ana;
IntervalSetEvaluator m(&ana, dom_map);
Expand Down
227 changes: 227 additions & 0 deletions src/tir/transforms/memhammer_coalesce.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,227 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include "../../runtime/thread_storage_scope.h"
#include "memhammer_rewrite_rule.h"
namespace tvm {
namespace tir {
/*!
* \brief Fuse consecutive loops
* \param stmt the outer-most loop
* \return the fused loop
*/
Stmt FuseNestLoops(const Stmt& stmt) {
std::vector<const ForNode*> loops;
Stmt body = stmt;
while (const ForNode* loop = body.as<ForNode>()) {
loops.push_back(loop);
body = loop->body;
}
std::string suffix;
int n = loops.size();
for (int i = 1; i < n; i++) {
suffix += "_" + loops[i]->loop_var->name_hint;
}
suffix += "_fused";
Var fused_var = loops[0]->loop_var.copy_with_suffix(suffix);
Map<Var, PrimExpr> subst_map;
PrimExpr tot = fused_var;
for (int i = n - 1; i >= 0; i--) {
subst_map.Set(loops[i]->loop_var, floormod(tot, loops[i]->extent));
tot = floordiv(tot, loops[i]->extent);
}
auto f_substitute = [&](const Var& v) -> Optional<PrimExpr> {
return subst_map.Get(v).value_or(v);
};
PrimExpr fused_extent = 1;
for (int i = 0; i < n; i++) {
fused_extent *= loops[i]->extent;
}
Stmt new_stmt = Substitute(body, f_substitute);
new_stmt = For(fused_var, 0, fused_extent, ForKind::kSerial, new_stmt);
return new_stmt;
}

/*!
* \brief a combination of split, bind, vectorize,
* a helper function to perform coalesced load/store
* \param stmt the stmt to do transformation
* \param constraints The constraints, including thread extents, vector bytes, and data bits.
* \return The stmt after transformation
*/
Stmt SplitBindVectorize(const Stmt& stmt, const ConstraintSet& constraints) {
Stmt body = stmt;
const ForNode* loop = body.as<ForNode>();
PrimExpr vector_bytes = constraints.vector_bytes;
PrimExpr threadIdx_x = constraints.thread_extent.Get("threadIdx.x").value_or(Integer(1));
PrimExpr threadIdx_y = constraints.thread_extent.Get("threadIdx.y").value_or(Integer(1));
PrimExpr threadIdx_z = constraints.thread_extent.Get("threadIdx.z").value_or(Integer(1));
PrimExpr tot_threads = threadIdx_x * threadIdx_y * threadIdx_z;
PrimExpr data_bits = constraints.data_bits;
PrimExpr vector_len = max(1, vector_bytes * 8 / data_bits);
if (!loop || !is_zero(indexmod(loop->extent, (vector_len * tot_threads)))) {
LOG(FATAL) << "the number of elements must be a multiple of thread num";
}
jinhongyii marked this conversation as resolved.
Show resolved Hide resolved
PrimExpr outer_loop_extent = indexdiv(loop->extent, tot_threads * vector_len);
Array<PrimExpr> factors{outer_loop_extent};
std::vector<std::string> thread_axis;
// generate thread binding loops
if (!is_one(threadIdx_z)) {
factors.push_back(threadIdx_z);
thread_axis.push_back("threadIdx.z");
}
if (!is_one(threadIdx_y)) {
factors.push_back(threadIdx_y);
thread_axis.push_back("threadIdx.y");
}
if (!is_one(threadIdx_x)) {
factors.push_back(threadIdx_x);
thread_axis.push_back("threadIdx.x");
}
// generate vectorized loop
factors.push_back(vector_len);
int n = factors.size();
std::vector<Var> new_loop_vars;
new_loop_vars.reserve(n);
for (int i = 0; i < n; i++) {
new_loop_vars.push_back(loop->loop_var.copy_with_suffix("_" + std::to_string(i)));
}

PrimExpr substitute_value = 0;
for (int i = 0; i < n; i++) {
substitute_value *= factors[i];
substitute_value += new_loop_vars[i];
}
body = Substitute(loop->body, [&](const Var& v) -> Optional<PrimExpr> {
if (v.same_as(loop->loop_var)) {
return substitute_value;
} else {
return NullOpt;
}
});
jinhongyii marked this conversation as resolved.
Show resolved Hide resolved

For new_loop = For(new_loop_vars.back(), 0, vector_len, ForKind::kVectorized, body);

for (int i = n - 2; i >= 1; i--) {
new_loop =
For(new_loop_vars[i], 0, factors[i], ForKind::kThreadBinding, std::move(new_loop),
IterVar(Range(nullptr), Var(thread_axis[i - 1]), kThreadIndex, thread_axis[i - 1]));
}

new_loop = For(new_loop_vars[0], 0, outer_loop_extent, ForKind::kSerial, new_loop);
return std::move(new_loop);
}

Stmt CoalescedAccess::Rewrite(const Stmt& stmt, const ConstraintSet& constraints,
OutputSet* output) const {
Stmt after_fuse = FuseNestLoops(stmt);
Stmt after_split = SplitBindVectorize(after_fuse, constraints);
return after_split;
}

/*!
* \brief Get the index mapping of a specific stmt.
* The stmt is like:
* for i0:
* ...
* for in:
* A[f(i0, ..., in])] = B[i0, ..., in],
* where f is the index mapping we want to get.
* \param constraints The constraints, including the write region that is required to calculate
* the index mapping
* \return The mapping in the form of j0, ..., jm, where j0, ... jm = f(i0, ..., in)
*/
Array<PrimExpr> GetMapping(const Stmt& stmt, const ConstraintSet& constraints) {
Stmt body = stmt;
while (const ForNode* loop = body.as<ForNode>()) {
body = loop->body;
}
const BufferStoreNode* buf_store = TVM_TYPE_AS(buf_store, body, BufferStoreNode);
BufferRegion write_region = constraints.write_region;
const Array<PrimExpr>& write_index = buf_store->indices;
ICHECK(write_region->region.size() == write_index.size() &&
write_region->buffer.same_as(buf_store->buffer));
Array<PrimExpr> result;
arith::Analyzer analyzer;
for (int i = 0; i < static_cast<int>(write_region->region.size()); i++) {
PrimExpr pattern = analyzer.Simplify(write_index[i] - write_region->region[i]->min);
if (!is_zero(pattern)) {
result.push_back(pattern);
}
jinhongyii marked this conversation as resolved.
Show resolved Hide resolved
}
return result;
}

Stmt InverseMapping::Rewrite(const Stmt& stmt, const ConstraintSet& constraints,
OutputSet* output) const {
Stmt body = stmt;
Map<Var, Range> var_range;
Array<PrimExpr> loop_vars;
// Step 1. Get index mapping
Array<PrimExpr> mapping_pattern = GetMapping(stmt, constraints);
while (const ForNode* loop = body.as<ForNode>()) {
var_range.Set(loop->loop_var, Range::FromMinExtent(loop->min, loop->extent));
loop_vars.push_back(loop->loop_var);
jinhongyii marked this conversation as resolved.
Show resolved Hide resolved
body = loop->body;
}
// Step 2. Get Inverse mapping
arith::Analyzer analyzer;
Array<arith::IterSumExpr> iter_map =
arith::DetectIterMap(mapping_pattern, var_range, Bool(true), true, &analyzer);
CHECK_EQ(iter_map.size(), loop_vars.size());
Map<Var, PrimExpr> inverse_mapping = arith::InverseAffineIterMap(iter_map, loop_vars);
// Step 3. Generate new body
BufferRegion read_region = constraints.read_region;
BufferRegion write_region = constraints.write_region;
Array<PrimExpr> write_index;
Array<PrimExpr> read_index;
Array<Var> new_loop_vars;
Map<Var, PrimExpr> substitute_map;
// Step 3.1 construct target buffer indices
for (int i = 0, j = 0; i < static_cast<int>(write_region->region.size()); i++) {
if (is_one(write_region->region[i]->extent)) {
write_index.push_back(write_region->region[i]->min);
} else {
Var var = runtime::Downcast<Var>(loop_vars[j]).copy_with_suffix("_inverse");
new_loop_vars.push_back(var);
substitute_map.Set(runtime::Downcast<Var>(loop_vars[j++]), var);
write_index.push_back(write_region->region[i]->min + var);
}
}
// Step 3.2 construct source buffer indices
for (int i = 0, j = 0; i < static_cast<int>(read_region->region.size()); i++) {
if (is_one(read_region->region[i]->extent)) {
read_index.push_back(read_region->region[i]->min);
} else {
read_index.push_back(
read_region->region[i]->min +
Substitute(inverse_mapping[Downcast<Var>(loop_vars[j++])], substitute_map));
}
}
BufferLoad new_buf_load = BufferLoad(read_region->buffer, read_index);
BufferStore new_buf_store = BufferStore(write_region->buffer, new_buf_load, write_index);
Stmt ret = new_buf_store;
// Step 3.3 construct loop body
for (int i = static_cast<int>(new_loop_vars.size()) - 1; i >= 0; i--) {
PrimExpr extent = write_region->region[i]->extent;
ret = For(new_loop_vars[i], 0, extent, ForKind::kSerial, std::move(ret));
}
return ret;
}
} // namespace tir
} // namespace tvm
Loading