Conversation
luhenry
added a commit
that referenced
this pull request
Sep 10, 2026
CPU/LLVM-only build (USE_CUDA=OFF, USE_LLVM=ON), the build mode upstream documents but never exercises in its own release CI (which only ever ships CUDA/Metal wheels). One patch excludes the optional torch-c-dlpack-ext dependency on riscv64, where it has no wheel and upstream itself documents it as a soft, JIT-fallback dependency.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
tilelang0.1.13Compiles a vendored TVM fork plus a Cython wrapper into a CPU/LLVM-backed tile-programming DSL. Upstream publishes no riscv64 wheel.
Mirrors upstream's own
dist.yml, adapted for the CPU/LLVM build mode it documents (docs/get_started/Installation.md) but never ships itself - upstream's own release wheels are always CUDA (Linux/Windows) or Metal (macOS).Differs from upstream
dnf install llvm-develin before-all - USE_LLVM needs a host LLVM 15+, which upstream never needs since it always builds CUDA/MetalMatrix: single
cp312build -wheel.py-apiiscp38(one abi3 wheel covers every interpreter), and apache-tvm-ffi (a hard runtime dependency) ships no riscv64 wheel below cp312Testing
python -c "import tilelang; print(tilelang.__version__)")License: OK
Patches
0001-exclude-torch-c-dlpack-ext-from-the-riscv64-depende.patch- Inappropriate. torch-c-dlpack-ext (optional, marker-gated) has no riscv64 wheel anywhere; upstream calls it a soft, JIT-fallback dependency. Reproduces on any arch lacking a wheel for it, not riscv64-only.Built on cp312; import succeeds, prints version.