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
In ITensorTDVP.jl v0.3, we set eager=true by default when using the KrylovKit.exponentiate solver/updater, while in ITensorTDVP.jl v0.4 we don't override the default that KrylovKit.jl sets, which is eager=false. This can potentially have big performance penalties since it can lead to many unnecessary applications of the reduced operator.
For users hitting this issue who are using ITensorTDVP.jl v0.4, you can manually pass updater_kwargs=(; eager=true) to tdvp to get the same (more efficient) behavior of ITensorTDVP.jl v0.3.
The text was updated successfully, but these errors were encountered:
In ITensorTDVP.jl v0.3, we set
eager=true
by default when using theKrylovKit.exponentiate
solver/updater, while in ITensorTDVP.jl v0.4 we don't override the default thatKrylovKit.jl
sets, which iseager=false
. This can potentially have big performance penalties since it can lead to many unnecessary applications of the reduced operator.See:
For users hitting this issue who are using ITensorTDVP.jl v0.4, you can manually pass
updater_kwargs=(; eager=true)
totdvp
to get the same (more efficient) behavior of ITensorTDVP.jl v0.3.The text was updated successfully, but these errors were encountered: