(x: R.Tensor((3,), "float32"))
| 454 | class CallPyFuncTest: |
| 455 | @R.function |
| 456 | def simple_call(x: R.Tensor((3,), "float32")): |
| 457 | result = R.call_py_func(R.str("torch_relu"), (x,), out_sinfo=R.Tensor((3,), "float32")) |
| 458 | return result |
| 459 | |
| 460 | @R.function |
| 461 | def multiple_calls(x: R.Tensor((2,), "float32")): |
nothing calls this directly
no test coverage detected