-
Notifications
You must be signed in to change notification settings - Fork 18
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
ArrayViews - "T not defined" - Julia 0.4 #15
Comments
which references JuliaLang/julia#8505 The problem comes from the use of T two times in the type signature. immutable ContiguousView{T,N,Arr<:Array{T}} <: ArrayView{T,N,N}
arr::Arr
offset::Int
len::Int
shp::NTuple{N,Int}
end |
I see, but then I am a bit confused. JuliaLang/julia#8505 is reported as fixed, but the error still occurs. This hamstrings a number of dependent packages, including Distributions, which other packages depend on. Is it an acceptable design choice to rewrite the ArrayView type, so that it can somehow infer the type, rather than being told the type? cc: @lindahua, @JeffBezanson, @timholy Best, |
Apparently the previous behaviour will be restored with #17. |
Unfortunately Dahua has not had time to do any Julia work, he has no Github activity for over a month. Stefan and I emailed him and asked whether we can move some of his more important packages to JuliaLang so bugs can be fixed. Still waiting on resolution there. If it does not go anywhere then we can switch Metadata to point to a fork. |
Sorry for the delay. I just got my grant proposal submitted. I can resume my Julia contribution to some extent. But for long-term maintenance, I think I should transmit the ownership of this package to JuliaLang. Stefan, can you grant me temporary permission to finish this? Thanks On 27 October, 2014 at 5:22:21 am, Tony Kelman (notifications@github.com) wrote: Unfortunately Dahua has not had time to do any Julia work, he has no Github activity for over a month. Stefan and I emailed him and asked whether we can move some of his more important packages to JuliaLang so bugs can be fixed. Still waiting on resolution there. If it does not go anywhere then we can switch Metadata to point to a fork. — |
Fixed by 3346c76. Checkout the latest 0.4.7, and it should work now. |
Great, and welcome back! |
Hey there,
When loading ArrayViews on Julia 0.4.0-dev+1719, I get the following error:
I have to run off, but I will try to see if I can fix this a bit later today.
Thanks and best,
Rob
The text was updated successfully, but these errors were encountered: