Empty shape roundtrips correctly.
(self)
| 381 | """Roundtrip tests for ffi.Shape containers.""" |
| 382 | |
| 383 | def test_empty(self) -> None: |
| 384 | """Empty shape roundtrips correctly.""" |
| 385 | shape = tvm_ffi.Shape(()) |
| 386 | _assert_roundtrip_eq(shape) |
| 387 | |
| 388 | def test_1d(self) -> None: |
| 389 | """1D shape roundtrips correctly.""" |
nothing calls this directly
no test coverage detected