Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vinx13 committed Jul 17, 2024
1 parent 5d684b8 commit 25204fa
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions python/tvm/relax/transform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,6 @@
# under the License.
"""Relax transformations. """

# Import to register the legalization functions.
from . import legalize_ops, tuning_api
from .attach_external_modules import AttachExternModules
from .fast_math import FastMathTransform
from .ipc_allreduce_rewrite import IPCAllReduceRewrite
from .lazy_transform_params import LazyTransformParams
from .lower_gpu_ipc_alloc_storage import LowerGPUIPCAllocStorage
from .optimize_layout_transform import OptimizeLayoutTransform
from .remove_redundant_reshape import RemoveRedundantReshape
from .transform import (
AdjustMatmulOrder,
AllocateWorkspace,
Expand Down Expand Up @@ -92,3 +83,14 @@
dataflowblock_pass,
function_pass,
)

from .attach_external_modules import AttachExternModules
from .fast_math import FastMathTransform
from .ipc_allreduce_rewrite import IPCAllReduceRewrite
from .lazy_transform_params import LazyTransformParams
from .lower_gpu_ipc_alloc_storage import LowerGPUIPCAllocStorage
from .optimize_layout_transform import OptimizeLayoutTransform
from .remove_redundant_reshape import RemoveRedundantReshape

# Import to register the legalization functions.
from . import legalize_ops, tuning_api

0 comments on commit 25204fa

Please sign in to comment.