-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ExecutionService.execute is running in uncached (e.g. slow) mode #5782
Comments
Jaroslav Tulach reports a new STANDUP for yesterday (2023-03-01): Progress: - investigating request time out: #5745 (comment)
Next Day: Cache invalidations & request timeout |
Jaroslav Tulach reports a new STANDUP for today (2023-03-02): Progress: - CI fighting
Next Day: Vacation on Friday. |
Enter partial evaluation mode via `CallTarget.call` before invoking `InteropLibrary`. Fixes #5782.
Jaroslav Tulach reports a new STANDUP for yesterday (2023-03-03): Progress: - got integrated: #5783
Next Day: Performance & stability |
While investigating DetachVisualisationHandler request timeout I collected collapse.zip profiling data. Looks like 1.5s is spend when
org.enso.interpreter.service.ExecutionService.execute()
calls uncachedcom.oracle.truffle.api.interop.InteropLibraryGen$UncachedDispatch.execute()
:The code has to be modified to call into Truffle at full speed - e.g. use cached nodes.
The text was updated successfully, but these errors were encountered: