Skip to content
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

[Fix] Fix Bitblas Relax relevant pass and test #74

Merged
merged 22 commits into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
ff01162
chore: Update support matrix in README
LeiWang1999 Jul 1, 2024
59be4dd
Merge branch 'main' of https://github.com/Microsoft/BitBLAS into main
LeiWang1999 Jul 3, 2024
5b9c49e
Move bitblas package to root
LeiWang1999 Jul 3, 2024
955b379
Remove unused code files
LeiWang1999 Jul 3, 2024
1637ad8
Create soft link for tvm
LeiWang1999 Jul 3, 2024
130a1b3
Create soft link for tvm
LeiWang1999 Jul 3, 2024
55fa807
Update softlink paths for tvm in setup.py
LeiWang1999 Jul 3, 2024
c8bb9e9
Merge branch 'main' into main
LeiWang1999 Jul 3, 2024
080d1b6
Refactor import statements to use relative paths
LeiWang1999 Jul 3, 2024
b55a902
fix test linear
LeiWang1999 Jul 3, 2024
59cca4b
Merge branch 'main' of https://github.com/LeiWang1999/MSBitBLAS into …
LeiWang1999 Jul 3, 2024
6f0431d
Move bitblas package to root
LeiWang1999 Jul 3, 2024
61356c6
Move bitblas package to root
LeiWang1999 Jul 4, 2024
92ce9d9
refactor splitk test
LeiWang1999 Jul 4, 2024
f4615d2
Fix assert statement in ladder_permutate_impl.py
LeiWang1999 Jul 4, 2024
f4911c8
Refactor test_ladder_permutate_ops.py for improved readability and ma…
LeiWang1999 Jul 4, 2024
e84e8a4
Refactor test_ladder_permutate_ops.py for improved readability and ma…
LeiWang1999 Jul 4, 2024
03b1973
improve and evaluate the test scripts.
LeiWang1999 Jul 4, 2024
2f8b5cc
resolve security issue.
LeiWang1999 Jul 4, 2024
90f14ec
Merge branch 'main' of https://github.com/Microsoft/BitBLAS into main
LeiWang1999 Jul 4, 2024
240c5b8
Merge branch 'main' of https://github.com/Microsoft/BitBLAS into main
LeiWang1999 Jul 5, 2024
2059e1f
fix relax relevant issue
LeiWang1999 Jul 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bitblas/relax/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

from .transform import AnnotateDecodeInformation, WeightOnlyLayoutPropagation # noqa: F401
from .op import tir_interleave_weight # noqa: F401
3 changes: 3 additions & 0 deletions bitblas/relax/op/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
from .interleave_weight import tir_interleave_weight
Loading