-
I feel this must have been asked/answered a few times but I can't find anything, sorry if duplicate. How can I compile a jitted-function without also evaluating it at the same time? At the moment, to measure compile time, I end up executing twice and looking at the difference between first and second execution, but this seems inefficient compared to being able to isolate the compilation step directly. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Try:
|
Beta Was this translation helpful? Give feedback.
Try:
.lower()
is new and not yet documented, but it does exactly what you want.