-
-
Notifications
You must be signed in to change notification settings - Fork 36
Closed
JuliaLang/julia
#53611Description
Is this an intended change on 1.11?
julia> A = [1.0;;]
1×1 Matrix{Float64}:
1.0
julia> x = [1.0]
1-element Vector{Float64}:
1.0
# 1.10
julia> adjoint(A) \ adjoint(x)
1×1 adjoint(::Vector{Float64}) with eltype Float64:
1.0
# 1.11
julia> adjoint(A) \ adjoint(x)
1×1 Matrix{Float64}:
1.0
division of vectors (size (1, 1)): Test Failed at /home/pkgeval/.julia/packages/PDMats/cAM9h/test/pdmtypes.jl:132
Expression: typeof(z) === typeof(y)
Evaluated: Vector{Float64} === Matrix{Float64}
Stacktrace:
[1] macro expansion
@ /opt/julia/share/julia/stdlib/v1.11/Test/src/Test.jl:679 [inlined]
[2] macro expansion
@ ~/.julia/packages/PDMats/cAM9h/test/pdmtypes.jl:132 [inlined]
No idea what is right.
Metadata
Metadata
Assignees
Labels
No labels