Skip to content

Commit

Permalink
Remove # type: ignore label
Browse files Browse the repository at this point in the history
  • Loading branch information
RattataKing committed Aug 1, 2024
1 parent 3850026 commit 128549f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tuning/tune.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
import math
import pickle
import re
import z3 # type: ignore
import z3
from dataclasses import asdict, dataclass
from enum import Enum
from os import mkdir, path, makedirs
from typing import Callable
from textwrap import indent

import iree.compiler as ireec # type: ignore
from iree.compiler import ir # type: ignore
from iree.compiler.dialects import _linalg_ops_gen, _util_ops_gen # type: ignore
import iree.compiler as ireec
from iree.compiler import ir
from iree.compiler.dialects import _linalg_ops_gen, _util_ops_gen

"""
Usage: ./tune.py 121.mlir -o "tuning/candidates" -l 1024 --lhs-dims=mk --rhs-dims=nk --tile-dims=mnk
Expand Down

0 comments on commit 128549f

Please sign in to comment.