(x: R.Tensor(["n", "m"], "float32"))
| 721 | |
| 722 | @R.function |
| 723 | def main(x: R.Tensor(["n", "m"], "float32")) -> R.Tensor(["n", "m"], dtype="float32"): |
| 724 | cls = Before |
| 725 | with R.dataflow(): |
| 726 | gv = cls.fused_add_exp_squeeze(x, R.const(1, "float32")) |
| 727 | R.output(gv) |
| 728 | return gv |
| 729 | |
| 730 | def fused_add_exp_squeeze(x, p0): |
| 731 | return topi.squeeze(topi.exp(topi.add(x, p0))) |
nothing calls this directly
no test coverage detected