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
It seems the gradient and example tests are timing out for an unknown reason, as first noticed in #165. Just from looking at the test Project.toml, it seems this might be due to tests now running on Zygote.jl v0.7.5 versus v0.7.4 for the most recent successful test run.
Test Summary: | Pass Total Time
Transverse Field Ising model | 5 5 8m31.5s
511.808261 seconds (958.20 M allocations: 93.805 GiB, 2.60% gc time, 87.28% compilation time: <1% of which was recompilation)
Test Summary: | Pass Total Time
Transverse Field Ising model | 5 5 17m11.9s
1032.239334 seconds (3.68 G allocations: 213.161 GiB, 2.51% gc time, 95.91% compilation time: <1% of which was recompilation)
This is quite the difference, so we should probably look into the precise cause.
The text was updated successfully, but these errors were encountered:
I was browsing through the Zygote code and I can't find anything that really changed meaningfully: that version mostly seems to drop support for julia 1.6
It might be that the precompilation is now no longer cached because it never manages to run through a full example, and it could revert to normal if we make it go through a full run once.
Alternatively, we can also try restricting the zygote version to check if that actually solves the problem
Somehow, also locally for me, precompilation of AD code now takes extremely long. (Specifically differentiating leading_boundary.) This was even without updating Zygote to v0.7.5. So I'm not so sure that restricting the Zygote version will change anything. I am somewhat confused by this since locally I didn't make any obvious changes to the installed packages.
It seems the gradient and example tests are timing out for an unknown reason, as first noticed in #165. Just from looking at the test Project.toml, it seems this might be due to tests now running on Zygote.jl v0.7.5 versus v0.7.4 for the most recent successful test run.
After #160:
Giving things like:
After #165:
Giving things like:
This is quite the difference, so we should probably look into the precise cause.
The text was updated successfully, but these errors were encountered: