[Dev] Support Tile Lang INT8xINT8 TensorCore Macro #231
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 various changes across multiple files, primarily focusing on code refactoring, bug fixes, and updates to submodule references. The most important changes include updating the submodule branch reference, adding new decorator functions, refactoring class methods, and fixing layout functions.
Submodule updates:
.gitmodules
: Changed the branch for thetvm
submodule fromtilelang
toupstream
.3rdparty/tvm
: Updated the submodule commit reference.Code refactoring and improvements:
bitblas/ops/base_scheduler.py
: Added a new decorator functionsimplify_prim_func
to simplify the output of functions.bitblas/tl/macro_generator.py
: Refactored theTensorCoreIntrinEmitter
class to improve readability and maintainability by restructuring method definitions and adding new methodsldmatrix_a
,ldmatrix_b
,mma
, andstmatrix
. [1] [2] [3] [4] [5]Bug fixes:
bitblas/tl/mma_layout.py
: Corrected the function names for layout transformations fromldmatrix_32x16_to_shared_16x32_layout_*
toldmatrix_16x32_to_shared_16x32_layout_*
.bitblas/tl/utils.py
: Updated layout transformation function references and fixed theget_ldmatrix_offset
function to handle different data types correctly. [1] [2]Linting script update:
format.sh
: Modified the lint function to useruff check
instead ofruff
.