Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
c16c0c5
bump version into v0.1.0
LeiWang1999 Feb 11, 2025
94e05a1
[Enhancement] Add custom develop command for editable installs and up…
LeiWang1999 Feb 13, 2025
200bc52
[Documentation] Update README to include system dependencies installa…
LeiWang1999 Feb 13, 2025
1b302ea
[Build] Update setup.py to support library file copying for both rele…
LeiWang1999 Feb 13, 2025
927795f
[Build] Refactor library file copying logic in setup.py
LeiWang1999 Feb 13, 2025
8d406a0
Merge branch 'main' of https://github.com/tile-ai/tilelang into feat_…
LeiWang1999 Feb 13, 2025
0b3cf60
[Documentation] Remove unnecessary install section header in Installa…
LeiWang1999 Feb 13, 2025
e56befa
[Build] Add tox configuration and local distribution script for multi…
LeiWang1999 Feb 13, 2025
02d80df
[Build] Improve git submodule update function with better error handling
LeiWang1999 Feb 13, 2025
c8ab95f
Merge branch 'main' of https://github.com/tile-ai/tilelang into feat_…
LeiWang1999 Feb 13, 2025
212cb48
[Build] Update LLVM configuration path in ROCm installation script
LeiWang1999 Feb 14, 2025
b78efb0
[Build] Add .tox/ to .gitignore for tox testing environment
LeiWang1999 Feb 14, 2025
4d82c6c
[Build] Add support for TVM prebuild path configuration in CMakeLists…
LeiWang1999 Feb 14, 2025
545e7c5
[Cleanup] Remove unused TVM runtime error codes header
LeiWang1999 Feb 14, 2025
ce92489
[Cleanup] Fix TVM grid constant type reference in CUDA module
LeiWang1999 Feb 14, 2025
6b550d8
[Cleanup] Remove unused customized_code function from IR module
LeiWang1999 Feb 14, 2025
6306f3a
[Feature] Add TileLang thread synchronization and storage access anal…
LeiWang1999 Feb 14, 2025
ed6a322
[Build] Reorder DLL search path directories for more flexible library…
LeiWang1999 Feb 14, 2025
f0b60a9
[Refactor] Improve thread synchronization and library path handling
LeiWang1999 Feb 14, 2025
f7c4eb2
[Refactor] Improve thread synchronization code style and formatting
LeiWang1999 Feb 14, 2025
893d19e
[Refactor] Fix global function registration for ThreadSync
LeiWang1999 Feb 14, 2025
912b675
[Refactor] Simplify ThreadSync global function registration
LeiWang1999 Feb 14, 2025
ae79016
[Feature] Add WebGPU code generation support in TileLang
LeiWang1999 Feb 14, 2025
a8081e1
[Refactor] Improve WebGPU code generation formatting and readability
LeiWang1999 Feb 14, 2025
975d6fd
[Test] Add WebGPU matrix multiplication code generation test
LeiWang1999 Feb 14, 2025
41e2823
Merge branch 'main' of https://github.com/tile-ai/tilelang into webgpu
LeiWang1999 Feb 14, 2025
72fff29
Update README with WebGPU codegen support announcement
LeiWang1999 Feb 15, 2025
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
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ tilelang_file_glob(GLOB TILE_LANG_SRCS
src/target/utils.cc
src/target/codegen_cpp.cc
src/target/rt_mod_cpp.cc
# webgpu doesn't have system dependency
src/target/codegen_webgpu.cc
)

# Include CUDA source files if CUDA is enabled
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Tile Language (**tile-lang**) is a concise domain-specific language designed to
<img src=./images/MatmulExample.png />

## Latest News
- 02/15/2025 ✨: Added WebGPU codegen support, see [Pull Request #86](https://github.com/tile-ai/tilelang/pull/86)!
- 02/12/2025 ✨: Excited to announce the release of [v0.1.0](https://github.com/tile-ai/tilelang/releases/tag/v0.1.0)!
- 02/10/2025 🚀: Added debug tools for TileLang—`T.print` for printing variables/buffers ([docs](https://tilelang.tile-ai.cn/tutorials/debug_tools_for_tilelang.html)) and a memory layout plotter ([examples/plot_layout](./examples/plot_layout)).
- 01/20/2025 ✨: We are excited to announce that tile-lang, a dsl for high performance AI workloads, is now open source and available to the public!
Expand Down
Loading
Loading