(x: R.Tensor((2, 8), "float32"))
| 89 | |
| 90 | @R.function |
| 91 | def main(x: R.Tensor((2, 8), "float32")) -> R.Tensor((2, 8), "float32"): |
| 92 | with R.dataflow(): |
| 93 | z = relax.op.nn.softmax(x) |
| 94 | R.output(z) |
| 95 | return z |
| 96 | |
| 97 | |
| 98 | # Check if the example NPU runtime is available |
no test coverage detected