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
Constructing an AOT proc wrapper can be slow because it needs to parse the package for relevant metadata. Until recently, this was also true for function and block AOT wrappers, but I recently landed a change that allows those wrappers to only use protos that describe the interface for relevant metadata. The proc jit relies more on this metadata, e.g. for managing the queues, so I didn't do the same thing for the AOT proc wrapper.
Current best alternative workaround (limit 100 words)
Accept that constructing a AOT proc wrapper is slow. Reuse a singleton proc wrapper (getting new continuations from a common wrapper instead of constructing a new wrapper each time).
Your view of the "best case XLS enhancement" (limit 100 words)
The proc jit will be the same as the function+block jits in that it doesn't have enduring hooks into Package metadata.
The text was updated successfully, but these errors were encountered:
What's hard to do? (limit 100 words)
Constructing an AOT proc wrapper can be slow because it needs to parse the package for relevant metadata. Until recently, this was also true for function and block AOT wrappers, but I recently landed a change that allows those wrappers to only use protos that describe the interface for relevant metadata. The proc jit relies more on this metadata, e.g. for managing the queues, so I didn't do the same thing for the AOT proc wrapper.
Current best alternative workaround (limit 100 words)
Accept that constructing a AOT proc wrapper is slow. Reuse a singleton proc wrapper (getting new continuations from a common wrapper instead of constructing a new wrapper each time).
Your view of the "best case XLS enhancement" (limit 100 words)
The proc jit will be the same as the function+block jits in that it doesn't have enduring hooks into
Package
metadata.The text was updated successfully, but these errors were encountered: