-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BugFix] Fix a bug in Static shape build #53
Merged
Merged
Conversation
This file contains 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
…into lei/splitk
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.
This pull request includes changes to versioning and improvements to the handling of different cases in several functions across the
bitblas
Python package. The version number has been updated in theVERSION
file and in the__version__
variable inpython/bitblas/__init__.py
. Theapply_config
function inpython/bitblas/gpu/gemv.py
and theget_vectorize_factor
function inpython/bitblas/gpu/gemv_dequantize.py
have been updated to handle cases where the length ofblock_info.iters
andsch.get_loops(block_b)
is 4. Inpython/bitblas/wrapper/general.py
, thelegalize_c
function has been updated to handle cases wheredynamic_symbolic_set
is not empty.Here are the most important changes:
Versioning:
VERSION
: Updated version from0.0.1.dev9
to0.0.1.dev10
.python/bitblas/__init__.py
: Updated__version__
from0.0.1.dev9
to0.0.1.dev10
.Handling of different cases:
python/bitblas/gpu/gemv.py
: Updatedapply_config
function to handle cases where the length ofblock_info.iters
is 4.python/bitblas/gpu/gemv_dequantize.py
: Updatedget_vectorize_factor
function to handle cases where the length ofsch.get_loops(block_b)
is 4, and added an assertion forSplitK
to only support 2D thread config. [1] [2]python/bitblas/wrapper/general.py
: Updatedlegalize_c
function to handle cases wheredynamic_symbolic_set
is not empty.