-
Notifications
You must be signed in to change notification settings - Fork 65
Open
Labels
upsteamA problem that need to be resolved upstream in one of our dependencies or in julia itselfA problem that need to be resolved upstream in one of our dependencies or in julia itself
Description
I'm using Julia 1.9 and ChainRulesCore v1.19.0
When I use the following code, the results change
a = ones(Complex,100,100)
a'
ela = eltype(a') # Complex
using ChainRulesCore
a = ones(Complex,100,100)
a'
ela1 = eltype(a') # Any
ela is Complex but ela1 is Any
Please tell me how to avoid this problem (constructing the Complex type is inevitable),Please tell me how to avoid this problem (constructing the Complex type is inevitable), or is this a bug?
Metadata
Metadata
Assignees
Labels
upsteamA problem that need to be resolved upstream in one of our dependencies or in julia itselfA problem that need to be resolved upstream in one of our dependencies or in julia itself