tvm
bound.h
Go to the documentation of this file.
1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one
3  * or more contributor license agreements. See the NOTICE file
4  * distributed with this work for additional information
5  * regarding copyright ownership. The ASF licenses this file
6  * to you under the Apache License, Version 2.0 (the
7  * "License"); you may not use this file except in compliance
8  * with the License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing,
13  * software distributed under the License is distributed on an
14  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  * KIND, either express or implied. See the License for the
16  * specific language governing permissions and limitations
17  * under the License.
18  */
23 #ifndef TVM_ARITH_BOUND_H_
24 #define TVM_ARITH_BOUND_H_
25 
26 #include <tvm/arith/int_set.h>
27 #include <tvm/ir/expr.h>
28 #include <tvm/tir/expr.h>
29 #include <tvm/tir/stmt.h>
30 
31 #include <unordered_map>
32 
33 namespace tvm {
34 namespace arith {
35 
36 using tir::Region;
37 using tir::Stmt;
38 using tir::Var;
39 using tir::VarNode;
40 
57  const Map<Var, IntSet>& relax_map);
69  const std::unordered_map<const VarNode*, IntSet>& hint_map,
70  const std::unordered_map<const VarNode*, IntSet>& relax_map);
71 
80 Region DomainTouched(const Stmt& body, const tir::Buffer& buffer, bool consider_loads,
81  bool consider_stores);
82 
83 } // namespace arith
84 } // namespace tvm
85 #endif // TVM_ARITH_BOUND_H_
Reference to PrimExprNode.
Definition: expr.h:115
Managed reference to IntSetNode.
Definition: int_set.h:68
Map container of NodeRef->NodeRef in DSL graph. Map implements copy on write semantics,...
Definition: map.h:1271
Buffer is a symbolic n-darray structure. It is a composition of primitive symbolic types,...
Definition: buffer.h:174
Container of all statements.
Definition: stmt.h:59
Integer set.
Base expr nodes in TVM.
Region DomainTouched(const Stmt &body, const tir::Buffer &buffer, bool consider_loads, bool consider_stores)
Infer a regular domain that covers all the calls or provides within the given statement.
IntSet DeduceBound(PrimExpr v, PrimExpr cond, const Map< Var, IntSet > &hint_map, const Map< Var, IntSet > &relax_map)
Deduce the bound of the target variable in a expression, give the domain of each variables....
Array< Range > Region
Definition: var.h:183
runtime implementation for LibTorch/TorchScript.
Definition: analyzer.h:36
TIR statements.
TIR expressions.