-
Notifications
You must be signed in to change notification settings - Fork 10
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
Use of internal caches broken on 1.7 (and 1.6 soon) #81
Comments
Is this broken in tests? I’ve been testing on Julia v1.7 without issue so far. So if it’s not being triggered by the tests is there a MWE? |
Simple reproducer extracted from the test case in DFTK mentioned by @vchuravy: using BlockArrays
X = randn(ComplexF64, 8, 4)
Y = mortar((randn(8, 2), randn(8, 2)))
YX = Y'X
mul!(X, Y, YX, -1.0, 1.0) Currently works fine on v1.6, but fails on v1.7. |
Thanks @mfherbst for posting the reproducer. |
I've removed this from the 1.6 backport branch since we try to be quite conservative there, even with internals like this. |
MWE X = randn(ComplexF64, 8, 4)
Y = randn(8, 2)
mul(Y',X) |
Thanks! |
For context: JuliaLang/julia#42309
The text was updated successfully, but these errors were encountered: