Skip to content

Commit

Permalink
Rebased to main (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajakovljevicTT authored Dec 2, 2024
1 parent c3bb21c commit d770c94
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/TTIR/test_basic_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,12 @@ def module_transpose(a):
verify_module(module_transpose, input_shapes)


def test_scalar_type():
@pytest.mark.parametrize("input_shapes", [[(3, 3)]])
def test_scalar_type(input_shapes):
def module_scalar_type(a):
return a.shape[0]

verify_module(module_scalar_type, [(3, 3)])
verify_module(module_scalar_type, input_shapes)


dim0_cases = []
Expand Down

0 comments on commit d770c94

Please sign in to comment.