(x: R.Tensor((128, 128), "float32"))
| 47 | def test_simple_func(): |
| 48 | @R.function |
| 49 | def foo(x: R.Tensor((128, 128), "float32")) -> R.Tensor((128, 128), "float32"): |
| 50 | R.func_attr({"Primitive": True}) |
| 51 | gv0 = R.call_dps_packed("extern_func", x, R.Tensor((128, 128), dtype="float32")) |
| 52 | gv1 = R.call_dps_packed("extern_dps_func", gv0, R.Tensor((128, 128), dtype="float32")) |
| 53 | return gv1 |
| 54 | |
| 55 | x = relax.Var("x", R.Tensor((128, 128), "float32")) |
| 56 | bb = relax.BlockBuilder() |
nothing calls this directly
no test coverage detected