[Fix] Adjust default chunked prefill size and cuda graph max bs according to GPU memory capacity #668
Workflow file for this run
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
name: Cancel PR Workflows on Merge | |
on: | |
pull_request_target: | |
types: | |
- closed | |
permissions: | |
actions: write | |
jobs: | |
cancel: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.12.1 | |
with: | |
workflow_id: all | |
access_token: ${{ secrets.GITHUB_TOKEN }} | |
ignore_sha: true | |
pr_number: ${{ github.event.pull_request.number }} |