-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Closed
Labels
regressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version
Milestone
Description
Hi, I encountered a type instability in matrix multiplication
julia> A=Rational[1 1 1; 2 2 2; 3 3 3]
3×3 Matrix{Rational}:
1//1 1//1 1//1
2//1 2//1 2//1
3//1 3//1 3//1
On 1.7-beta2:
julia> A*A
3×3 Matrix{Any}:
6//1 6//1 6//1
12//1 12//1 12//1
18//1 18//1 18//1
On 1.6.1:
julia> A*A
3×3 Matrix{Rational}:
6//1 6//1 6//1
12//1 12//1 12//1
18//1 18//1 18//1
Metadata
Metadata
Assignees
Labels
regressionRegression in behavior compared to a previous versionRegression in behavior compared to a previous version