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
Currently, we are spending almost a minute to solve the first power flow. On Julia 1.6 and my local machine, I get in a fresh Julia session:
julia>include("tmp/launch_powerflow.jl")
42.329781 seconds (50.81 M allocations:2.880 GiB, 10.27% gc time)
This is mostly due to type inference issues. On Julia 1.6, fixing the type inferences on ReducedSpaceEvaluator allowed to decrease the first compile time of ExaPF.hessprod! from 3mn to 10s (see #98 ). We should be able to do the same on powerflow, and most functions exposed to the users.
The text was updated successfully, but these errors were encountered:
Currently, we are spending almost a minute to solve the first power flow. On Julia 1.6 and my local machine, I get in a fresh Julia session:
This is mostly due to type inference issues. On Julia 1.6, fixing the type inferences on
ReducedSpaceEvaluator
allowed to decrease the first compile time ofExaPF.hessprod!
from 3mn to 10s (see #98 ). We should be able to do the same onpowerflow
, and most functions exposed to the users.The text was updated successfully, but these errors were encountered: