[triton-ext][FrontEnd] Custom DSL Plugin Ops#9626
Merged
Merged
Conversation
2393917 to
9a3c63a
Compare
d25f0aa to
c88e9e7
Compare
72eeee3 to
5e89e28
Compare
5e89e28 to
c88e9e7
Compare
22a6041 to
1cb7236
Compare
ThomasRaoux
reviewed
Mar 11, 2026
bd4fa61 to
5b32cc7
Compare
Author: @CRobeck Co-Author: @plotfi This single change squashes everything from: https://github.com/CRobeck/triton/tree/custom_dialect_ops-backup
(cherry picked from commit 7ec6a57)
bf71fe0 to
49acef8
Compare
ThomasRaoux
reviewed
Mar 18, 2026
Collaborator
ThomasRaoux
left a comment
There was a problem hiding this comment.
looks good, few questions/comments
Removed unused functions get_key and get_hash from custom_ops.py.
c8eb8b2 to
286bce8
Compare
286bce8 to
1864dc6
Compare
Contributor
Author
|
@ThomasRaoux review comments should be addressed. Thanks! |
ThomasRaoux
approved these changes
Mar 19, 2026
raymondtay
pushed a commit
to raymondtay/triton
that referenced
this pull request
Mar 22, 2026
Adds Top level Python DSL Custom Op extensions. This PR fills out the remaining functionality to define a fully out of tree Custom Op and lowering. Co-authored w/ @plotfi --------- Co-authored-by: Puyan Lotfi <puyan@puyan.org> Co-authored-by: Puyan Lotfi <34139736+plotfi@users.noreply.github.com>
jvican
pushed a commit
to jvican/triton
that referenced
this pull request
Mar 27, 2026
Adds Top level Python DSL Custom Op extensions. This PR fills out the remaining functionality to define a fully out of tree Custom Op and lowering. Co-authored w/ @plotfi --------- Co-authored-by: Puyan Lotfi <puyan@puyan.org> Co-authored-by: Puyan Lotfi <34139736+plotfi@users.noreply.github.com>
plotfi
added a commit
to plotfi/triton
that referenced
this pull request
Apr 8, 2026
Adds Top level Python DSL Custom Op extensions. This PR fills out the remaining functionality to define a fully out of tree Custom Op and lowering. Co-authored w/ @plotfi --------- Co-authored-by: Puyan Lotfi <puyan@puyan.org> Co-authored-by: Puyan Lotfi <34139736+plotfi@users.noreply.github.com> (cherry picked from commit 152d5f0)
plotfi
added a commit
to plotfi/triton
that referenced
this pull request
Apr 8, 2026
Adds Top level Python DSL Custom Op extensions. This PR fills out the remaining functionality to define a fully out of tree Custom Op and lowering. Co-authored w/ @plotfi --------- Co-authored-by: Puyan Lotfi <puyan@puyan.org> Co-authored-by: Puyan Lotfi <34139736+plotfi@users.noreply.github.com> (cherry picked from commit 152d5f0) (cherry picked from commit e82ae38)
Merged
atalman
pushed a commit
that referenced
this pull request
Apr 10, 2026
[triton-ext] Update plugin extension changes for release 3.7.x cherry-picking the following plugin extension changes since January: - **[triton-ext] Fix garbage string in reported errors (#9687)** - **[triton-ext] add string arguments to addPass API (#9691)** - **[triton-ext][FrontEnd] Custom DSL Plugin Ops (#9626)** - **[triton-ext] Drop LLVM_BUILD_SHARED_LIBS, enable libtriton visibility through TRITON_EXT_ENABLED (#9783)** - **[triton-ext] Pass a single `PluginInfo *` pointer (#9748)** - **[triton-ext] plugin extension's version check (#9937)** --------- Co-authored-by: Andrew Brown <andrew@kernelize.ai> Co-authored-by: Corbin Robeck <robeck@meta.com>
plognjen
pushed a commit
to plognjen/triton
that referenced
this pull request
Apr 14, 2026
Adds Top level Python DSL Custom Op extensions. This PR fills out the remaining functionality to define a fully out of tree Custom Op and lowering. Co-authored w/ @plotfi --------- Co-authored-by: Puyan Lotfi <puyan@puyan.org> Co-authored-by: Puyan Lotfi <34139736+plotfi@users.noreply.github.com>
peterbell10
pushed a commit
that referenced
this pull request
Apr 24, 2026
#9626 added a way to construct custom ops by depending on `python/src/ir.h`, a header not present in the installation artifacts (#9534) used for building plugins in [triton-ext](https://github.com/triton-lang/triton-ext). If we don't want to move this header to a directory already packaged up by CMake (#9826), we could additionally package up the headers in the `python` directory instead: this change does exactly that. In doing so, it also exposed another problem in how we package up these installation artifacts. We currently only package up files ending in `*.h`, so `Dump.hpp` and `GetEnv.hpp` were not included. To fix this, this change renames these files to `Dump.h` and `GetEnv.h` which seems more in line with the rest of the project.
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.
Adds Top level Python DSL Custom Op extensions. This PR fills out the remaining functionality to define a fully out of tree Custom Op and lowering.
Co-authored w/ @plotfi