[Fusion] Enhance the prologue epilogue fusion #277
Merged
yaoyaoding merged 1 commit intohidet-org:mainfrom Jun 11, 2023
Merged
Conversation
vadiklyutiy
pushed a commit
that referenced
this pull request
Jul 22, 2024
**Describe the bug** **gemma 2-b** is failing to compile due to missing **torch.any** operator support in hidet **To Reproduce** Run [this](https://drive.google.com/file/d/11ovSzoiHGG2f_qWucwoRxhRjCRRuCH72/view?usp=drive_link) script with **gemma-2b** model. --------- Co-authored-by: Zhumakhan <nazirzhumakhan@gmail,.com>
vadiklyutiy
pushed a commit
that referenced
this pull request
Jul 23, 2024
**Describe the bug** **gemma 2-b** is failing to compile due to missing **torch.any** operator support in hidet **To Reproduce** Run [this](https://drive.google.com/file/d/11ovSzoiHGG2f_qWucwoRxhRjCRRuCH72/view?usp=drive_link) script with **gemma-2b** model. --------- Co-authored-by: Zhumakhan <nazirzhumakhan@gmail,.com>
vadiklyutiy
pushed a commit
that referenced
this pull request
Dec 26, 2024
**Describe the bug** **gemma 2-b** is failing to compile due to missing **torch.any** operator support in hidet **To Reproduce** Run [this](https://drive.google.com/file/d/11ovSzoiHGG2f_qWucwoRxhRjCRRuCH72/view?usp=drive_link) script with **gemma-2b** model. --------- Co-authored-by: Zhumakhan <nazirzhumakhan@gmail,.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Previously, to enable automatic prologue epilogue fusion, we require the template written in a single kernel function (e.g., cuda kernel or cpu kernel), and the prologue/epilogue tensors must be directly used in the kernel function. This PR allows the user to define launch function and use arbitrary implementation (e.g., call multiple kernel functions, use workspace, ...) while still support fusion. This enhancement is necessary to support parallel-k optimization in the operator-level.