Traces and lowers the function using the provided arguments.
(self, *args, **kwargs)
| 55 | return compiled(*args, **kwargs) |
| 56 | |
| 57 | def lower(self, *args, **kwargs) -> _CheckifyLoweredFnWrapper: |
| 58 | """Traces and lowers the function using the provided arguments.""" |
| 59 | lowered = self._checkified_jit_handle.lower(*args, **kwargs) |
| 60 | return _CheckifyLoweredFnWrapper(lowered) |
| 61 | |
| 62 | |
| 63 | class CheckifyJitFn(Protocol): |