()
| 196 | |
| 197 | |
| 198 | def test_shape_struct_info_2(): |
| 199 | obj = relax.ShapeStructInfo([1, tirx.Var("a", "int64"), 3]) |
| 200 | _assert_print( |
| 201 | obj, |
| 202 | """ |
| 203 | a = T.int64() |
| 204 | R.Shape([1, a, 3])""", |
| 205 | ) |
| 206 | |
| 207 | |
| 208 | def test_tensor_struct_info(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…