(shape)
| 81 | |
| 82 | |
| 83 | def test_shape(shape): |
| 84 | data = list(range(nelements(shape))) |
| 85 | m = create_buffer('f', data, shape) |
| 86 | a = migraphx.argument(m) |
| 87 | check_shapes(a, m) |
| 88 | assert_eq(a.tolist(), data) |
| 89 | |
| 90 | |
| 91 | def test_input(): |
no test coverage detected