This repository was archived by the owner on Feb 24, 2026. It is now read-only.
[Dev][TL] Following updates of Tile Language Backend#226
Merged
LeiWang1999 merged 9 commits intomicrosoft:mainfrom Oct 23, 2024
LeiWang1999:tl_kernel_implementation
Merged
[Dev][TL] Following updates of Tile Language Backend#226LeiWang1999 merged 9 commits intomicrosoft:mainfrom LeiWang1999:tl_kernel_implementation
LeiWang1999 merged 9 commits intomicrosoft:mainfrom
LeiWang1999:tl_kernel_implementation
Conversation
…ernel_implementation
Contributor
Author
|
TODO Items:
|
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
This pull request includes several updates to the
bitblaslibrary, focusing on thematmuloperations and their testing. The most important changes involve making parameters optional in theapply_configfunction, adding a new scheduler for fine-grained dequantization, and enhancing test coverage for the new scheduler.Enhancements to
apply_configfunction:bitblas/ops/general_matmul/tilelang/dense/matmul_tensorcore.py: Updatedapply_configto accept optional parameters and added assertions to ensure required parameters are provided.Addition of Fine-Grained Dequantization Scheduler:
bitblas/ops/general_matmul/tilelang/dequantize/__init__.py: IntroducedMatmulDequantizeFineGrainedSchedulerto the module.testing/python/operators/test_general_matmul_tilelang_kernel.py: Updated imports to includeMatmulDequantizeFineGrainedSchedulerand added a new test functiontest_matmul_fine_grained_dequant_with_default. [1] [2]Test Coverage Enhancements:
testing/python/operators/test_general_matmul_tilelang_kernel.py: Removed commented-out code and added a new functionassert_matmul_fine_grained_dequant_with_default_correctnessto test the correctness of the fine-grained dequantization. [1] [2]testing/python/tilelang/test_tilelang_dequantize_gemm.py: Re-enabled the main testing function call.