Skip to content

Commit

Permalink
Delete dead function
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasvasilache committed Mar 11, 2022
1 parent 2e8fdb8 commit dcc90b2
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions python/examples/core/transforms.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@
import typing as tp


def _get_size_list_as_str(name: str, sizes: tp.List[int]) -> str:
"""Compute the textual tile size flag for the given `transform`."""
if not sizes or len(sizes) == 0:
return ''
return f'{name}={",".join([str(ts) for ts in sizes])}'


def make_pattern_name(fun_name: str, op_name: str):
return "match_" + op_name.replace('.', '_') + "_in_" + fun_name

Expand Down

0 comments on commit dcc90b2

Please sign in to comment.