tvm
Loading...
Searching...
No Matches
analysis.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 */
19
24#ifndef TVM_RELAX_ANALYSIS_H_
25#define TVM_RELAX_ANALYSIS_H_
26
27#include <tvm/arith/analyzer.h>
28#include <tvm/ir/module.h>
29#include <tvm/relax/expr.h>
31#include <tvm/relax/type.h>
32#include <tvm/tirx/function.h>
33#include <tvm/tirx/index_map.h>
34
35#include <functional>
36#include <set>
37#include <utility>
38
39namespace tvm {
40namespace relax {
41//-----------------------------------
42// Shape expression analysis
43//----------------------------------
56TVM_DLL bool CanProveShapeEqual(const ffi::Array<PrimExpr>& lhs, const ffi::Array<PrimExpr>& rhs,
57 const arith::Analyzer& ana);
58
70TVM_DLL bool CanProveShapeEqual(const Expr& lhs, const Expr& rhs, const arith::Analyzer& ana);
71
72//-----------------------------------
73// Foundational Type analysis
74//-----------------------------------
81
88
108 const arith::Analyzer& ana);
109
163 const Type& info, std::function<ffi::Optional<Expr>(const Var& var)> f_var_map = nullptr);
174 std::function<ffi::Optional<Expr>(const Var& var)> f_var_map,
175 const arith::Analyzer& ana);
176
186TVM_DLL Type EraseToWellDefined(const Type& info, ffi::Map<Var, Expr> var_map);
196TVM_DLL Type EraseToWellDefined(const Type& info, ffi::Map<Var, Expr> var_map,
197 const arith::Analyzer& ana);
198
212enum class BaseCheckResult {
216 kFailL0 = 0,
222 kFailL1 = 1,
241 kFailL2 = 2,
243 kPass = 3
244};
245
268 const arith::Analyzer& ana);
269
277TVM_DLL bool IsBaseOf(const Type& base, const Type& derived);
285TVM_DLL bool IsBaseOf(const Type& base, const Type& derived, const arith::Analyzer& ana);
286
308
316TVM_DLL Type TypeLCA(const Type& lhs, const Type& rhs);
324TVM_DLL Type TypeLCA(const Type& lhs, const Type& rhs, const arith::Analyzer& ana);
325
332TVM_DLL ffi::Array<tirx::Var> TIRVarsInType(const Type& ty);
333
346TVM_DLL ffi::Array<tirx::Var> DefinableTIRVarsInType(const Type& ty);
347
359TVM_DLL ffi::Array<PrimExpr> CollectNonNegativeExpressions(const Type& ty);
360
367TVM_DLL ffi::Array<tirx::Var> DefinedSymbolicVars(const Expr& expr);
368
375TVM_DLL ffi::Array<tirx::Var> FreeSymbolicVars(const Expr& expr);
376//-----------------------------------
377// General IR analysis
378//-----------------------------------
389TVM_DLL tvm::ffi::Array<Var> BoundVars(const Expr& expr);
390
401TVM_DLL tvm::ffi::Array<Var> FreeVars(const Expr& expr);
402
410TVM_DLL tvm::ffi::Array<Var> AllVars(const Expr& expr);
411
422TVM_DLL tvm::ffi::Array<GlobalVar> AllGlobalVars(const Expr& expr);
423
447TVM_DLL tvm::ffi::Array<tvm::ffi::Array<GlobalVar>> DetectRecursion(const IRModule& m);
448
455TVM_DLL ffi::Map<Var, Expr> AnalyzeVar2Value(const IRModule& m);
456
463TVM_DLL ffi::Map<Var, Expr> AnalyzeVar2Value(const Expr& expr);
464
471TVM_DLL ffi::Map<Var, Expr> AnalyzeVar2Value(const DataflowBlock& dfb);
472
479TVM_DLL ffi::Map<ffi::String, ffi::Array<Binding>> NameToBinding(const Function& fn);
480
487TVM_DLL ffi::Map<Var, ffi::Array<Var>> DataflowBlockUseDef(const DataflowBlock& dfb);
488
500std::pair<ffi::Map<Var, ffi::Array<Var>>, ffi::Array<Var>> FunctionUseDef(const Expr& expr);
501
505 /* \brief A map from variables to the bound expression.
506 *
507 * This is equivalent to the output of AnalyzeVar2Value
508 */
509 ffi::Map<Var, Expr> bound_values;
510
511 /* \brief The map from variables to downstream usages of the variable
512 *
513 * This is equivalent to the first output of FunctionUseDef.
514 */
515 ffi::Map<Var, ffi::Array<Var>> downstream_usage;
516
517 /* \brief A list of variables produced as output
518 *
519 * This is equivalent to the second output of FunctionUseDef
520 */
521 ffi::Array<Var> outputs;
522};
523
535
545TVM_DLL std::set<const VarNode*> GetUsedVars(const Expr& expr);
546
556
567
582
595TVM_DLL ffi::Optional<Expr> FindImpureCall(
596 const Expr& expr, const ffi::Optional<Expr>& own_name = ffi::Optional<Expr>(std::nullopt));
597
610 const Expr& expr, const ffi::Optional<Expr>& own_name = ffi::Optional<Expr>(std::nullopt));
611
625TVM_DLL void WellFormed(ffi::Variant<IRModule, Function> obj, bool check_ty = true);
626
637TVM_DLL bool CheckWellFormed(ffi::Variant<IRModule, Function> obj, bool check_ty = true);
638
649TVM_DLL ffi::Map<tirx::SBlock, ffi::Map<ffi::ObjectRef, tirx::IndexMap>> SuggestLayoutTransforms(
650 const Function& fn, ffi::Array<tirx::IndexMap> write_buffer_transformations);
651
652/* \brief Collect variables whose value can be computed at compile-time
653 *
654 * If a function has the `kNumInput` attribute, then the first
655 * `kNumInput` parameters are provided at run-time, while all
656 * remaining parameters may be known at compile-time. This utility
657 * collects all variable bindings that only depend, directly or
658 * indirectly, on the parameters known at compile-time.
659 *
660 * \param func The relax::Function to analyze
661 *
662 * \return The set of variables that can be computed at compile-time,
663 * in order of their occurrence within the function.
664 */
665TVM_DLL ffi::Array<Var> ComputableAtCompileTime(const Function& func);
666
667} // namespace relax
668} // namespace tvm
669
670#endif // TVM_RELAX_ANALYSIS_H_
Algebra expression simplifications.
Managed reference to CallNode.
Definition expr.h:474
Managed reference to ExprNode.
Definition base_expr.h:335
Managed reference class to IRModuleNode.
Definition module.h:255
Typed reference/view over any Expr whose ExprNode::ty is PrimType.
Definition base_expr.h:401
Managed reference to TypeNode.
Definition base_expr.h:77
Managed reference to VarNode.
Definition expr.h:372
RAII wrapper function to enter and exit a context object similar to python's with syntax.
Definition with_context.h:59
Managed reference to AnalyzerObj.
Definition analyzer.h:931
Definition block_builder.h:257
Definition expr.h:325
Managed reference to FuncTypeNode.
Definition type.h:312
Definition expr.h:471
Managed reference to PrimFuncNode.
Definition function.h:105
Defines a remapping of buffer indices.
IRModule that holds the functions and type definitions.
tvm::ffi::Array< tvm::ffi::Array< GlobalVar > > DetectRecursion(const IRModule &m)
Find all sets of recursive or mutually recursive functions in the module.
BaseCheckResult
Fine grained result of base check.
Definition analysis.h:212
@ kPass
LSet is superset of RSet.
@ kFailL2
WLSet is not superset of RSet because of mismatch in value information.
@ kFailL1
LSet is not superset of RSet by only looking at static information.
@ kFailL0
The two value sets have no intersection at all: Interset(LSet, RSet) = empty.
ffi::Array< Var > ComputableAtCompileTime(const Function &func)
ffi::Array< tirx::Var > TIRVarsInType(const Type &ty)
Get the TIR variables that appear in the input type. The returned list is deduplicated - each TIR var...
Type GetStaticType(const Type &info)
Get the corresponding static type from a given type.
ffi::Array< tirx::Var > FreeSymbolicVars(const Expr &expr)
Get the TIR variables that are used but not defined in the input function. The returned list is dedup...
bool ContainsImpureCall(const Expr &expr, const ffi::Optional< Expr > &own_name=ffi::Optional< Expr >(std::nullopt))
Check if the given expression (likely a function body) contains any impure calls.
tvm::ffi::Array< GlobalVar > AllGlobalVars(const Expr &expr)
Get all global variables from expression expr.
ffi::Map< Var, Expr > AnalyzeVar2Value(const IRModule &m)
Analyze var -> value mapping from VarBindings.
ffi::Map< tirx::SBlock, ffi::Map< ffi::ObjectRef, tirx::IndexMap > > SuggestLayoutTransforms(const Function &fn, ffi::Array< tirx::IndexMap > write_buffer_transformations)
Using the layout transforms on the outputs, suggest layout transformation on the blocks and buffers f...
Expr RemoveAllUnused(Expr expr)
Remove unused statements inside DataflowBlocks.
ffi::Array< tirx::Var > DefinedSymbolicVars(const Expr &expr)
Get the TIR variables that defined in the input function. The returned list is deduplicated - each TI...
BaseCheckResult TypeBaseCheck(const Type &base, const Type &derived)
Run a base check to see if base subsumes derived.
bool CheckWellFormed(ffi::Variant< IRModule, Function > obj, bool check_ty=true)
Return whether an IRModule or Function is well-formed.
Type EraseToWellDefined(const Type &info, std::function< ffi::Optional< Expr >(const Var &var)> f_var_map=nullptr)
Erase the info to a corresponding more coarse grained type that is still well-defined(with all the va...
ffi::Optional< Expr > FindImpureCall(const Expr &expr, const ffi::Optional< Expr > &own_name=ffi::Optional< Expr >(std::nullopt))
Check if the given expression (likely a function body) contains any impure calls.
std::set< const VarNode * > GetUsedVars(const Expr &expr)
Get the used variables in an expression.
std::pair< ffi::Map< Var, ffi::Array< Var > >, ffi::Array< Var > > FunctionUseDef(const Expr &expr)
Get the use-def chain of variables inside a function.
bool CanProveShapeEqual(const ffi::Array< PrimExpr > &lhs, const ffi::Array< PrimExpr > &rhs, const arith::Analyzer &ana)
Can prove the two symbolic shape arrays equals to each other.
PrimExpr TypeBaseCheckPrecondition(const Type &base, const Type &derived)
Return the condition for which base is a superset of derived.
ffi::Map< ffi::String, ffi::Array< Binding > > NameToBinding(const Function &fn)
Return a mapping from variable name to its Bindings.
Type TypeFromStaticType(const Type &type)
Get the corresponding type from static type.
bool IsBaseOf(const Type &base, const Type &derived)
Check the relation of two type to see if one subsumes another one.
void WellFormed(ffi::Variant< IRModule, Function > obj, bool check_ty=true)
Check if an IRModule or Function is well-formed.
OpPatternKind AnalyzeOpPatternKind(const tirx::PrimFunc &func)
Annotate Op Pattern Kind for PrimFunc, which is used in relax FuseOps.
tvm::ffi::Array< Var > BoundVars(const Expr &expr)
Get all bound variables from expression expr.
tvm::ffi::Array< Var > FreeVars(const Expr &expr)
Get free type parameters from expression expr.
tvm::ffi::Array< Var > AllVars(const Expr &expr)
Get all variables from expression expr.
OpPatternKind
Definition op_attr_types.h:35
Type TypeLCA(const Type &lhs, const Type &rhs)
Unify the two type to their least common ancestor.
ffi::Array< tirx::Var > DefinableTIRVarsInType(const Type &ty)
Get the TIR variables that appear in the input type.
Type DeriveCallRetType(const FuncType &finfo, const Call &call, const BlockBuilder &ctx)
ffi::Array< PrimExpr > CollectNonNegativeExpressions(const Type &ty)
Collect expressions whose usage requires them to be non-negative.
bool HasReshapePattern(const tirx::PrimFunc &func)
Check if the given PrimFunc is essentially doing a reshape operation. The reshape operation also incl...
ffi::Map< Var, ffi::Array< Var > > DataflowBlockUseDef(const DataflowBlock &dfb)
Get the use-def chain of variables inside a dataflow block.
VarUsageInfo CollectVarUsage(const Expr &expr)
Collect variable bindings and usage.
An object that builds and maintains block scope and StmtSref mapping for Dependence analysis.
Definition analyzer.h:40
Data structures that can appear in operator attributes.
Relax types, including the richer dependent Relax type nodes.
A utility struct returned by CollectVarUsage.
Definition analysis.h:504
ffi::Array< Var > outputs
Definition analysis.h:521
ffi::Map< Var, ffi::Array< Var > > downstream_usage
Definition analysis.h:515
ffi::Map< Var, Expr > bound_values
Definition analysis.h:509
TIR Function.