()
| 429 | |
| 430 | |
| 431 | def test_call(): |
| 432 | call_node = relax.op.add(x, y) |
| 433 | basic_check( |
| 434 | call_node, |
| 435 | "\n".join(["Call", "\tOp", "\tVar", "\tVar"]), |
| 436 | "\n".join(["Op", "Var", "Var", "ShapeExpr", "Call"]), |
| 437 | ) |
| 438 | |
| 439 | |
| 440 | def test_if(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…