-
Notifications
You must be signed in to change notification settings - Fork 3.8k
[IR][Pass][Instrument] Pass instrument framework #7952
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
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
946bfc5
[IR][Pass][Instrument] Pass instrument framework
zackcquic 0ad48d4
[IR][Pass][Instrument] Fix python test_pass_manager.py
zackcquic dc33594
Fix comment
zackcquic 62ffb72
Fix lint
zackcquic d358e99
Fix test_pass_annotation
zackcquic ffcfef0
Fix test_pass_annotation.py
zackcquic 0cce273
Fix lint
zackcquic 9ed716c
Fix test_pass_annotation.py
zackcquic 9f34b7c
Fix test_pass_annotation.py
zackcquic 3e407c0
Fix review comments
zackcquic 5b578b1
Fix tutorial use_pass_infra.py
zackcquic e48a13d
Fix review comments
zackcquic 0083821
Merge branch 'apache:main' into dev
zackcquic 09c062a
Fix review comments
zackcquic 6dcd559
Fix typo
zackcquic 5a16a7c
Fix review comments
zackcquic 0f09405
Fix review comments
zackcquic 2162911
Fix unittest error: test_cow_pass
zackcquic b2de46c
Fix unittest error
zackcquic 06ee84d
Add more test cases for exceptions
zackcquic 58c456d
Fix nit
zackcquic 0dd603f
Doc override_instruments()
zackcquic 7c504d8
Fix review comments
zackcquic 3cbdcb0
Fix lint
zackcquic 291c03c
Fix EnterContext exception behavior
zackcquic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,157 @@ | ||
| /* | ||
| * 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. | ||
| */ | ||
|
|
||
| /*! | ||
| * \file tvm/ir/instrument.h | ||
| * | ||
| * This file introduces a pass instrument infrastructure, inspired by LLVM and MLIR. | ||
| * It inserts instrumentation points around passes. | ||
| */ | ||
| #ifndef TVM_IR_INSTRUMENT_H_ | ||
| #define TVM_IR_INSTRUMENT_H_ | ||
|
|
||
| #include <tvm/node/reflection.h> | ||
| #include <tvm/runtime/container.h> | ||
|
|
||
| #include <utility> | ||
| #include <vector> | ||
|
|
||
| namespace tvm { | ||
|
|
||
| class IRModule; | ||
|
|
||
| // Forward class for PassInstrumentNode methods | ||
| namespace transform { | ||
| class PassInfo; | ||
| } // namespace transform | ||
|
|
||
| namespace instrument { | ||
|
|
||
| /*! | ||
| * \brief PassInstrumentNode forms an instrument implementation. | ||
| * It provides API for users to register callbacks at different instrumentation points. | ||
| * | ||
| * Within a PassContext, call sequence of a PassInstrument implementation is like: | ||
| * | ||
| * with PassContext(instruments=[pi]): # pi = a PassInstrument implementation | ||
| * pi.EnterPassContext() | ||
| * | ||
| * if pi.ShouldRun(Pass1): | ||
| * pi.RunBeforePass() | ||
| * Pass1() | ||
| * pi.RunAfterPass() | ||
| * | ||
| * if pi.ShouldRun(Pass2): | ||
| * pi.RunBeforePass() | ||
| * Pass2() | ||
| * pi.RunAfterPass() | ||
| * | ||
| * pi.ExitPassContext() | ||
| * | ||
| * `EnterPassContext` and `ExitPassContext` are only called once when entering/exiting a | ||
| * PassContext. `ShouldRun`, `RunBeforePass` and `RunAfterPass` are called multiple times depending | ||
| * on how many passes. | ||
| * | ||
| * If there are multiple pass instrumentations provided, the instrument points are the same. | ||
| * PassInstrument implementations' callbacks are called in order: | ||
| * | ||
| * with PassContext(instruments=[pi1, pi2]): # pi1, pi2 = two distinct PassInstrument impls | ||
| * pi.EnterPassContext() for pi in instruments | ||
| * | ||
| * should_run = all([pi.ShoudRun(Pass1) for pi in instruments)]) | ||
| * if (should_run) | ||
| * pi.RunBeforePass() for pi in instruments | ||
| * Pass1() | ||
| * pi.RunAfterPass() for pi in instruments | ||
| * | ||
| * should_run = all([pi.ShouldRun(Pass2) for pi in instruments)]) | ||
| * if (should_run) | ||
| * pi.RunBeforePass() for pi in instruments | ||
| * Pass2() | ||
| * pi.RunAfterPass() for pi in instruments | ||
| * | ||
| * pi.ExitPassContext() for pi in instruments | ||
| * | ||
| * Note: | ||
| * 1. Assume there is no dependency between PassInstrument implementations in `instruments` . | ||
| * 2. `EnterPassContext` and `ExitPassContext` have `with` behavior (see PassContext and its FFI): | ||
| * If there is any exception raised in `ShouldRun()`, `RunBeforePass()`, `RunAfterPass()` and | ||
| * `Pass()`, `ExitPassContext()` is still called. | ||
| * 3. In mutiple PassInstrument instances scenario, callbacks are called in order: | ||
| * If one throws exceptions, remainings will not be called. | ||
| * | ||
| * \sa PassInstrument | ||
| * \sa src/ir/transform.cc | ||
| */ | ||
| class PassInstrumentNode : public Object { | ||
| public: | ||
| /*! \brief Name of this pass instrument object. */ | ||
| String name; | ||
|
|
||
| virtual ~PassInstrumentNode() {} | ||
|
|
||
| /*! \brief Instrument when entering PassContext. Called once within a PassContext. */ | ||
| virtual void EnterPassContext() const = 0; | ||
|
|
||
| /*! \brief Instrument when exiting PassContext. Called once within a PassContext. */ | ||
| virtual void ExitPassContext() const = 0; | ||
|
|
||
| /*! | ||
| * \brief Determine whether to run the pass or not. Called multiple times depend on number of | ||
| * passes. | ||
| * \param mod The module that an optimization pass runs on. | ||
| * \param info The pass information. | ||
| * | ||
| * \return true to run the pass; false to skip the pass. | ||
| */ | ||
| virtual bool ShouldRun(const IRModule& mod, const transform::PassInfo& info) const = 0; | ||
|
|
||
| /*! | ||
| * \brief Instrument before pass run. Called multiple times depend on number of passes. | ||
| * \param mod The module that an optimization pass runs on. | ||
| * \param info The pass information. | ||
| */ | ||
| virtual void RunBeforePass(const IRModule& mod, const transform::PassInfo& info) const = 0; | ||
|
|
||
| /*! | ||
| * \brief Instrument after pass run. Called multiple time depend on number of passes. | ||
| * \param mod The module that an optimization pass runs on. | ||
| * \param info The pass information. | ||
| */ | ||
| virtual void RunAfterPass(const IRModule& mod, const transform::PassInfo& info) const = 0; | ||
|
|
||
| void VisitAttrs(AttrVisitor* v) { v->Visit("name", &name); } | ||
|
|
||
| static constexpr const char* _type_key = "instrument.PassInstrument"; | ||
| TVM_DECLARE_BASE_OBJECT_INFO(PassInstrumentNode, Object); | ||
| }; | ||
|
|
||
| /*! | ||
| * \brief Managed reference class for PassInstrumentNode | ||
| * \sa PassInstrumentNode | ||
| */ | ||
| class PassInstrument : public ObjectRef { | ||
| public: | ||
| TVM_DEFINE_OBJECT_REF_METHODS(PassInstrument, ObjectRef, PassInstrumentNode); | ||
| }; | ||
|
|
||
| } // namespace instrument | ||
| } // namespace tvm | ||
|
|
||
| #endif // TVM_IR_INSTRUMENT_H_ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -31,4 +31,5 @@ | |
| from .container import Array, Map | ||
|
|
||
| from . import transform | ||
| from . import instrument | ||
| from . import diagnostics | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.