From 5391d1267daa7dca76d9f0f941829bb2e8bf1100 Mon Sep 17 00:00:00 2001 From: LeiWang1999 Date: Fri, 5 Jul 2024 08:31:20 +0000 Subject: [PATCH] Refactor import statements for improved readability and maintainability --- bitblas/relax/__init__.py | 4 ++-- bitblas/relax/op/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitblas/relax/__init__.py b/bitblas/relax/__init__.py index f6c18231..a7230fd9 100644 --- a/bitblas/relax/__init__.py +++ b/bitblas/relax/__init__.py @@ -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 diff --git a/bitblas/relax/op/__init__.py b/bitblas/relax/op/__init__.py index 26ff8f6e..8a1b62ee 100644 --- a/bitblas/relax/op/__init__.py +++ b/bitblas/relax/op/__init__.py @@ -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