-
-
Notifications
You must be signed in to change notification settings - Fork 15
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
Understand why let
wrapping the compile workload can lead to worse latency
#17
Comments
I suspect it changes the interpreter/compiler heuristics in |
Is this issue related to why symbols in the module MyPackage
using PrecompileTools: @setup_workload, @compile_workload
@setup_workload begin
# these become visible in the namespace
some_variable = rand(4, 4)
b = rand(4)
temp = :U
@compile_workload begin
some_variable * b
some_func(temp)
end
end
end The variables |
Yes, exactly. We tried to have |
If compilation of the workload happens before the logging system is initialized, many CodeInstances may be missed. This exploits `Core.@invokelatest` to prevent inference from proceeding into the workload. It removes the `@force_compile`, which introduces some risk that even the workload will be interpreted. Also wraps the `@setup_workload` block with a `let`. Fixes #17 Fixes #26 Fixes #37
This was observed in #16. It would be good to understand the interaction with
let
here since ideally, it would be good to keep it.The text was updated successfully, but these errors were encountered: