-
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
[Dev] Refactor testing scripts and fix security issues #72
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
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 contains changes primarily aimed at modifying the import statements of the
tvm
module in various files and adjusting the path settings for thetvm
module in thebitblas/__init__.py
file. Additionally, there are changes to thebitblas/ops/general_matmul.py
andbitblas/module/__init__.py
files to modify the function logic.Changes to the import statements:
tvm
module has been changed fromimport tvm
tofrom bitblas import tvm
. This change has been made in the following files:bitblas/base/roller/arch/cpu.py
[1]bitblas/base/roller/arch/cuda.py
[2]bitblas/base/roller/node.py
[3]bitblas/base/roller/policy/default.py
[4]bitblas/base/roller/policy/tensorcore.py
[5]bitblas/base/transform.py
[6]bitblas/base/utils.py
[7]bitblas/cache/operator.py
[8]bitblas/gpu/intrin/lop3.py
[9]bitblas/gpu/rmsnorm.py
[10]bitblas/ops/general_matmul.py
[11]bitblas/ops/impl/batch_matmul_dequantize_impl.py
[12]bitblas/ops/impl/batch_matmul_impl.py
[13]bitblas/ops/impl/convolution2d_impl.py
[14]bitblas/ops/impl/matmul_dequantize_impl.py
[15]bitblas/ops/impl/matmul_dequantize_splitk_impl.py
[16]bitblas/ops/impl/matmul_impl.py
[17].Changes to the path settings:
bitblas/__init__.py
file, the path settings for thetvm
module have been adjusted. The path is now appended with/python
before being added to thePYTHONPATH
environment variable and the Python system path.Changes to function logic:
bitblas/ops/general_matmul.py
, the logic for the__legalize_propagate
function has been adjusted to handle cases wherepropagate_b
is not transformed.bitblas/module/__init__.py
, theforward
function has been modified to adjust the order of operations and the arguments passed to thelib.call
method.ref security issue: #71 #70