fix(cuda-graph): specify stream for precompute_sgmv_args in sgmv_cutlass #15
This file contains 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
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
pull-requests: write | |
name: release-please | |
jobs: | |
release-please: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: google-github-actions/release-please-action@v4 | |
id: release | |
outputs: | |
release_created: ${{ steps.release.outputs.release_created }} | |
tag_name: ${{ steps.release.outputs.tag_name }} | |
wheel: | |
needs: release-please | |
if: ${{ needs.release-please.outputs.release_created }} | |
uses: ./.github/workflows/release_wheel.yml | |
with: | |
tag_name: ${{ needs.release-please.outputs.tag_name }} | |
secrets: inherit |