We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
extrema([3,7,4]')
In Julia 1.8 and master:
ulia> extrema([3,7,4]') ERROR: MethodError: no method matching adjoint(::Tuple{Int64, Int64}) ...
whereas in 1.7 as expected:
julia> extrema([3,7,4]') (3, 7)
I guess in the new extrema implementation the transpose somehow is propagated through the computation and then applied to the result-tuple.
extrema
The text was updated successfully, but these errors were encountered:
mapreduce
AdjOrTrans
Caused by JuliaLang/julia#39513, sorry.
Sorry, something went wrong.
No worries! Monkey-patching with Base.extrema(a::LinearAlgebra.Adjoint) = extrema(a') is an easy band-aid.
Base.extrema(a::LinearAlgebra.Adjoint) = extrema(a')
Successfully merging a pull request may close this issue.
In Julia 1.8 and master:
whereas in 1.7 as expected:
I guess in the new
extrema
implementation the transpose somehow is propagated through the computation and then applied to the result-tuple.The text was updated successfully, but these errors were encountered: