(input_1: R.Tensor((1, 3, 10, 10), dtype="float32"))
| 1162 | class expected1: |
| 1163 | @R.function |
| 1164 | def main(input_1: R.Tensor((1, 3, 10, 10), dtype="float32")) -> R.Tuple( |
| 1165 | R.Tensor((1, 3, 10, 10), dtype="float32") |
| 1166 | ): |
| 1167 | # block 0 |
| 1168 | with R.dataflow(): |
| 1169 | lv: R.Tensor((1, 3, 10, 10), dtype="float32") = R.nn.log_softmax(input_1, axis=1) |
| 1170 | gv: R.Tuple(R.Tensor((1, 3, 10, 10), dtype="float32")) = (lv,) |
| 1171 | R.output(gv) |
| 1172 | return gv |
| 1173 | |
| 1174 | example_args = (torch.randn(1, 3, 10, 10, dtype=torch.float32),) |
| 1175 | verify_model(LogSoftmax(), example_args, {}, expected1) |
nothing calls this directly
no test coverage detected