Skip to content
Open
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
16 changes: 3 additions & 13 deletions iron/operators/gelu/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,11 @@


def get_params():
def _marks(ext, ts):
marks = []
if ext:
marks.append(pytest.mark.extensive)
# TODO: temporary - disable tile_size=8192 for GeLU, issue #113
if ts == 8192:
marks.append(
pytest.mark.skip(
reason="temporary: tile_size=8192 disabled for GeLU, see issue #113"
)
)
return marks
def _marks(ext):
return [pytest.mark.extensive] if ext else []

return [
pytest.param(il, nac, nc, ts, marks=_marks(ext, ts))
pytest.param(il, nac, nc, ts, marks=_marks(ext))
for il, nac, nc, ts, ext in make_channeled_unary_params(
[1024, 2048, 4096, 8192], 8192, [1, 2]
)
Expand Down