Skip to content

Commit 651dd97

Browse files
authored
Merge branch 'main' into jdierksen/report-missing-junit
2 parents 30789df + f00ce36 commit 651dd97

60 files changed

Lines changed: 11100 additions & 1151 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/CODEOWNERS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,7 @@ flashinfer/gdn_kernels/ @kahyunnam @yzh119 @bkryu @yongwww
4545
flashinfer/gdn_prefill.py @kahyunnam @yzh119 @bkryu @yongwww
4646
flashinfer/jit/gdn.py @kahyunnam @yzh119 @bkryu @yongwww
4747
tests/gdn/ @kahyunnam @yzh119 @bkryu @yongwww
48+
49+
# ── Autotuner ──
50+
‎flashinfer/autotuner.py @qiching
51+
‎tests/autotuner/test_autotuner_core.py @qiching

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Validate tag format
3434
if: github.event_name == 'workflow_dispatch'
3535
run: |
36-
if [[ ! "${{ inputs.tag }}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+([a-z0-9]+)?$ ]]; then
36+
if [[ ! "${{ inputs.tag }}" =~ ^v[0-9]+\.[0-9]+\.[0-9]+(\.?[a-z][a-z0-9]*)?$ ]]; then
3737
echo "Error: Tag '${{ inputs.tag }}' does not match the expected format (e.g., v1.2.3 or v1.2.3.post1 or v1.2.3rc1)"
3838
exit 1
3939
fi

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,3 +196,6 @@ cython_debug/
196196
# and can be added to the global gitignore or merged into this file. For a more nuclear
197197
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
198198
.idea/
199+
200+
# Cursor
201+
.cursor/

0 commit comments

Comments
 (0)