You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What's the worst slowdown we can possibly get with Static Python?
In Typed Racket, things can get as bad as you want. 10x, 100x, 1000x, no problem. If you keep putting wrappers on higher-order values, it'll keep getting slower.
In Reticulated Python, the worst case I remember is about 10x. I don't think you can do much worse. There's no way to build up a sequence of checks that outweigh the actual code.
I bet Static Python gets 3x in the worst case. Let's see!
The text was updated successfully, but these errors were encountered:
What's the worst slowdown we can possibly get with Static Python?
In Typed Racket, things can get as bad as you want. 10x, 100x, 1000x, no problem. If you keep putting wrappers on higher-order values, it'll keep getting slower.
In Reticulated Python, the worst case I remember is about 10x. I don't think you can do much worse. There's no way to build up a sequence of checks that outweigh the actual code.
I bet Static Python gets 3x in the worst case. Let's see!
The text was updated successfully, but these errors were encountered: