From f4f4825565d956eb896d7c5f8f44efd2899f4848 Mon Sep 17 00:00:00 2001 From: Ben Lewis Date: Wed, 29 Jul 2026 18:00:35 +0300 Subject: [PATCH 1/2] Fix: support TileLang 0.1.9 --- pyproject.toml | 4 ++-- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index c27c9d508..73cc7e873 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,8 +17,8 @@ classifiers = [ ] dependencies = [ "torch", - "tilelang==0.1.8", - "apache-tvm-ffi<=0.1.12", + "tilelang==0.1.9", + "apache-tvm-ffi<0.1.10", "quack-kernels>=0.3.4", "triton>=3.5.0", "ninja", diff --git a/setup.py b/setup.py index 29fc07977..03b5a63b1 100755 --- a/setup.py +++ b/setup.py @@ -399,8 +399,8 @@ def run(self): "einops", "triton>=3.5.0", "transformers", - "tilelang==0.1.8", - "apache-tvm-ffi<=0.1.12", + "tilelang==0.1.9", + "apache-tvm-ffi<0.1.10", "quack-kernels>=0.3.4", # "causal_conv1d>=1.4.0", ], From 2cec7c53bd1d04c5a5e196df6bcc8600b2222520 Mon Sep 17 00:00:00 2001 From: Ben Lewis Date: Mon, 3 Aug 2026 15:20:49 +0300 Subject: [PATCH 2/2] Fix: bound TileLang compatibility range --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 73cc7e873..034c94070 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,7 @@ classifiers = [ ] dependencies = [ "torch", - "tilelang==0.1.9", + "tilelang>=0.1.9,<0.1.10", "apache-tvm-ffi<0.1.10", "quack-kernels>=0.3.4", "triton>=3.5.0", diff --git a/setup.py b/setup.py index 03b5a63b1..bcd7b5e94 100755 --- a/setup.py +++ b/setup.py @@ -399,7 +399,7 @@ def run(self): "einops", "triton>=3.5.0", "transformers", - "tilelang==0.1.9", + "tilelang>=0.1.9,<0.1.10", "apache-tvm-ffi<0.1.10", "quack-kernels>=0.3.4", # "causal_conv1d>=1.4.0",