Skip to content

Commit

Permalink
Refactor import statements for improved readability and maintainability
Browse files Browse the repository at this point in the history
  • Loading branch information
LeiWang1999 committed Jul 5, 2024
1 parent 3aea7bc commit 5391d12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bitblas/relax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +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
from .transform import AnnotateDecodeInformation, WeightOnlyLayoutPropagation # noqa: F401
from .op import tir_interleave_weight # noqa: F401
2 changes: 1 addition & 1 deletion bitblas/relax/op/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
from .interleave_weight import tir_interleave_weight
from .interleave_weight import tir_interleave_weight # noqa: F401

0 comments on commit 5391d12

Please sign in to comment.