Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e38fba5
finish KDA algorithm in tilelang
Jan 12, 2026
f7adecc
fix pre-commit.ci
Jan 12, 2026
801ae9b
fix pre-commit.ci
Jan 12, 2026
5d39797
fix pre-commit local
Jan 13, 2026
71f0fc9
[Style] Fix some code styles
tzj-fxz Jan 13, 2026
68bfdc1
[Refactor] Remove redundant swizzle for they can be automatically done
tzj-fxz Jan 13, 2026
f73f1a5
[Refactor] remove chunk_bwd_intra.py and rename chunk_bwd_intra_op.py…
Jan 14, 2026
1e7ffaf
update ruff
tzj-fxz Jan 14, 2026
99db818
update pre-commit
tzj-fxz Jan 14, 2026
d7729d4
[Enhancement] Improve unroll loop functionality for dynamic extent an…
LeiWang1999 Jan 12, 2026
f91149c
[Bugfix] Fix missing annotations for default CallNode Visitor (#1659)
LeiWang1999 Jan 12, 2026
cddfeab
[Clean] Remove unnecessary debug print (#1661)
LeiWang1999 Jan 13, 2026
89f754a
[Bugfix] Fix variable scoping issue in InjectSoftwarePipeline for tra…
LeiWang1999 Jan 13, 2026
5c52421
[Refactor] Improve CallNode handling to include annotations in variou…
LeiWang1999 Jan 13, 2026
ce399ca
[EagerJIT] Add Support for Parameter Only Kernel Compilation (#1664)
kurisu6912 Jan 13, 2026
8781b84
[AutoDD] Add Tilelang AutoDD to Reduce Buggy Program (#1639)
KEKE046 Jan 13, 2026
24a87f8
rebase origin
tzj-fxz Jan 14, 2026
7eec3b8
Merge branch 'main' into example-kda-algorithm
tzj-fxz Jan 14, 2026
3144969
[Feature] Support `cp.reduce.async.bulk.tensor` (#1667)
Rachmanino Jan 14, 2026
619fd5f
rename basename according to CI
tzj-fxz Jan 14, 2026
402862f
Update submodule TVM and remove deprecated KDA example files
LeiWang1999 Jan 26, 2026
6328e43
lint fix
LeiWang1999 Jan 26, 2026
f87d431
Merge branch 'main' of https://github.com/tile-ai/tilelang into examp…
LeiWang1999 Jan 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ repos:
- id: clang-format
types_or: [c++, c]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.10 # sync with requirements-lint.txt
rev: v0.14.11 # sync with requirements-lint.txt
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix]
- id: ruff-format
args: [--exit-non-zero-on-format]
args: [--exit-non-zero-on-format, --diff]
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1 # sync with requirements-lint.txt
hooks:
Expand Down
Loading
Loading