Test op call statement
()
| 948 | |
| 949 | |
| 950 | def test_op_call(): |
| 951 | """Test op call statement""" |
| 952 | op_call = create_test_statements()["op_call"] |
| 953 | basic_check( |
| 954 | op_call, |
| 955 | "\n".join( |
| 956 | [ |
| 957 | "Block", |
| 958 | "\tTilePrimitiveCall", |
| 959 | "\t\tBufferRegion", |
| 960 | "\t\t\tIntImm", |
| 961 | "\t\t\tIntImm", |
| 962 | "\t\tBufferRegion", |
| 963 | "\t\t\tIntImm", |
| 964 | "\t\t\tIntImm", |
| 965 | "\t\tExpr::FloatImm", |
| 966 | ] |
| 967 | ), |
| 968 | "\n".join( |
| 969 | [ |
| 970 | "IntImm", |
| 971 | "IntImm", |
| 972 | "BufferRegion", |
| 973 | "IntImm", |
| 974 | "IntImm", |
| 975 | "BufferRegion", |
| 976 | "Expr::FloatImm", |
| 977 | "TilePrimitiveCall", |
| 978 | "Block", |
| 979 | ] |
| 980 | ), |
| 981 | ) |
| 982 | |
| 983 | |
| 984 | def test_stmt_expr_mutator(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…