Skip to content

Commit

Permalink
re-silence mypy import errors
Browse files Browse the repository at this point in the history
  • Loading branch information
tenpercent committed Jun 18, 2024
1 parent bbbf24b commit d296f90
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions torch/_inductor/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1051,12 +1051,12 @@ def _rocm_native_device_arch_name(device):
@functools.lru_cache(None)
def try_import_ck_lib():
try:
import ck4inductor # type: ignore[import-untyped]
from ck4inductor.universal_gemm.gen_instances import ( # type: ignore[import-untyped]
import ck4inductor # type: ignore[import]
from ck4inductor.universal_gemm.gen_instances import ( # type: ignore[import]
gen_ops_library,
gen_ops_preselected,
)
from ck4inductor.universal_gemm.op import ( # type: ignore[import-untyped]
from ck4inductor.universal_gemm.op import ( # type: ignore[import]
CKGemmOperation,
)

Expand Down

0 comments on commit d296f90

Please sign in to comment.