Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion python/tvm/contrib/cc.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def create_shared(output, objects, options=None, cc=None, cwd=None, ccache_env=N
The compiler command.

cwd : Optional[str]
The urrent working directory.
The current working directory.

ccache_env : Optional[Dict[str, str]]
The environment variable for ccache. Set `None` to disable ccache by default.
Expand Down
13 changes: 3 additions & 10 deletions python/tvm/relax/frontend/nn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,9 @@
"""A PyTorch-like API to build IRModules."""
# pylint: disable=redefined-builtin
from . import op, spec
from .core import (
Effect,
ExternModule,
Module,
ModuleList,
Parameter,
SourceModule,
Tensor,
)
from .core import Effect, Module, ModuleList, Parameter, Tensor
from .exporter import add_extern
from .extern import ExternModule, ObjectModule, SourceModule
from .modules import (
GELU,
Conv1D,
Expand All @@ -35,7 +29,6 @@
KVCache,
LayerNorm,
Linear,
MultiLinear,
ReLU,
RMSNorm,
SiLU,
Expand Down
Loading