ci: fix virtual environment setup#86
Merged
Merged
Conversation
Merging triton-lang#85 revealed a problem with how the Python virtual environment is set up in our primary `ci.yml` file. This change reorders some steps and ensures that the primary `python` executable used is the one from our `.venv` directory. Hopefully this resolves the missing `pytest` dependency [error] on `main`. [error]: https://github.com/triton-lang/triton-ext/actions/runs/26238904449/job/77219652269#step:12:36
Collaborator
Author
|
I'm going to go ahead and merge this since no one is around to review; it's a non-functional change in any case. |
imperatormk
added a commit
to imperatormk/triton-ext
that referenced
this pull request
May 22, 2026
Out-of-tree Apple Metal backend for Triton-ext: TTGIR -> LLVM IR -> AIR -> .metallib. The metal-ir lowering pipeline (passes + serializer + C bridge) lives under lib/MetalIR/ alongside the TritonGPU->LLVM conversion, built into libMetalIRBridge.dylib which the Python driver loads via ctypes. Rebased onto main (incl. triton-lang#84/triton-lang#85/triton-lang#86).
imperatormk
added a commit
to imperatormk/triton-ext
that referenced
this pull request
May 22, 2026
Out-of-tree Apple Metal backend for Triton-ext: TTGIR -> LLVM IR -> AIR -> .metallib. The metal-ir lowering pipeline (passes + serializer + C bridge) lives under lib/MetalIR/ alongside the TritonGPU->LLVM conversion, built into libMetalIRBridge.dylib which the Python driver loads via ctypes. Rebased onto main (incl. triton-lang#84/triton-lang#85/triton-lang#86).
imperatormk
added a commit
to imperatormk/triton-ext
that referenced
this pull request
May 22, 2026
Out-of-tree Apple Metal backend for Triton-ext: TTGIR -> LLVM IR -> AIR -> .metallib. The metal-ir lowering pipeline (passes + serializer + C bridge) lives under lib/MetalIR/ alongside the TritonGPU->LLVM conversion, built into libMetalIRBridge.dylib which the Python driver loads via ctypes. Rebased onto main (incl. triton-lang#84/triton-lang#85/triton-lang#86).
imperatormk
added a commit
to imperatormk/triton-ext
that referenced
this pull request
May 22, 2026
Out-of-tree Apple Metal backend for Triton-ext: TTGIR -> LLVM IR -> AIR -> .metallib. The metal-ir lowering pipeline (passes + serializer + C bridge) lives under lib/MetalIR/ alongside the TritonGPU->LLVM conversion, built into libMetalIRBridge.dylib which the Python driver loads via ctypes. Rebased onto main (incl. triton-lang#84/triton-lang#85/triton-lang#86).
imperatormk
added a commit
to imperatormk/triton-ext
that referenced
this pull request
May 22, 2026
Out-of-tree Apple Metal backend for Triton-ext: TTGIR -> LLVM IR -> AIR -> .metallib. The metal-ir lowering pipeline (passes + serializer + C bridge) lives under lib/MetalIR/ alongside the TritonGPU->LLVM conversion, built into libMetalIRBridge.dylib which the Python driver loads via ctypes. Rebased onto main (incl. triton-lang#84/triton-lang#85/triton-lang#86).
imperatormk
added a commit
to imperatormk/triton-ext
that referenced
this pull request
May 22, 2026
Out-of-tree Apple Metal backend for Triton-ext: TTGIR -> LLVM IR -> AIR -> .metallib. The metal-ir lowering pipeline (passes + serializer + C bridge) lives under lib/MetalIR/ alongside the TritonGPU->LLVM conversion, built into libMetalIRBridge.dylib which the Python driver loads via ctypes. Rebased onto main (incl. triton-lang#84/triton-lang#85/triton-lang#86).
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.
Merging #85 revealed a problem with how the Python virtual environment is set up in our primary
ci.ymlfile. This change reorders some steps and ensures that the primarypythonexecutable used is the one from our.venvdirectory. Hopefully this resolves the missingpytestdependency error onmain.