-
Notifications
You must be signed in to change notification settings - Fork 11
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
Broadcasting + better CuArrays support #21
Conversation
Could you rebase this to the current master? Will make review easier. |
Bump @colinxs :-) |
Codecov Report
@@ Coverage Diff @@
## master #21 +/- ##
==========================================
- Coverage 89.85% 86.07% -3.78%
==========================================
Files 3 3
Lines 69 79 +10
==========================================
+ Hits 62 68 +6
- Misses 7 11 +4
Continue to review full report at Codecov.
|
Thanks for the reminder @oschulz! I rebased it. I'll try to make that first |
src/elasticarray.jl
Outdated
|
||
Base.parent(A::ElasticArray) = A.data |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why remove Base.parent
? Or did it just move somewhere else (don't see it right now)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because at least one stdlib function depends on size(A::AbstractArray) == size(parent(similar(A, ...)))
. Here's a snippet from LinearAlgebra.inv
:
Ai = inv!(lu(AA))
Ai = convert(typeof(parent(Ai)), Ai)
Before adding Base.similar(A::ElasticArray, ...)
, inv!(lu(AA))
returned an Matrix
, but now it returns an ElasticArray
. So when we do convert(typeof(parent(Ai)), Ai)
we try to convert a matrix into a vector (because typeof(parent(Ai)) <: AbstractVector
), which fails.
If we change Base.similar
to Base.similar(A::ElasticArray, T::Type, dims::Dims) = similar(A.data, T, dims)
as mentioned above then we can add back in Base.parent
.
But from the docs for Base.parent
Returns the "parent array" of an array view type (e.g., SubArray), or the array
itself if it is not a view.
Is ElasticArray
really a "view type"? Do we need Base.parent
? I'm unsure :)
Ok, done with the review - the only tricky thing is |
Thanks again for this, @colinxs! Can you battle test it in your application(s) for a few day, before we make a release? Or do have have further changes that you'd like to make first? |
Just saw the discussion (sorry I did not reply sooner). I will test |
@oschulz yup! No worries. My only remaining concerns are:
|
My PR was very tiny and made in order to allow compatibility, and make things like this feasible. To fix scalar getindex, I think one would have to implement something that tells the broadcasting machinery that it should promote broadcasting to the child array. I don't know the internals for broadcasting well enough to know how to do this. |
@garrison , thanks, I'll wait for your feedback before making a release. |
@aterenin, sorry, which PR? |
Sure, we don't need to rush a release, please do let me know how the benchmarks turn out. I have a feeling we're all aiming for top performance here. |
Happy to report that all of my code works as expected with One thing I did notice a few weeks ago is that with #20, it is now possible to |
Also, if there is to be any hope of recovering after an exception, shouldn't |
You mean if the shape is wrong, but the length compatible? If so, I'd say that since append!(rand(6), rand(3,4)) is allowed append!(ElasticArray{Float64}(undef, 3, 4), rand(6)) should be allowed too. |
Oh, yes, that would probably make sense! :-) @colinxs ? |
Thanks for helping out with testing, @garrison ! |
This is a good point. But one could also make the case that |
Hm, yes ... maybe always allow to append a vector or iterator, but higher-dimensional arrays only when compatible? @colinxs , what do you think? |
I thought about doing that, but that requires either:
If you look at e.g.
Maybe, but that starts to treat |
I just realized that you could optimize this as well by using |
Hm, what about a try/catch, and we truncate/revert and rethrow if necessary? |
Seems kind of hacky (and try/catch has it's own performance issues). I think our best option is to just recreate the machinery in Base. |
Also, in reference to the discussion whether
So it only checked that With that in mind I think we should go ahead and tag a release that includes #20 and #23. I don't have time right now to address the points in #21 (comment), so if we don't feel comfortable with that right now you can go ahead and revert f468be5 and re-open this PR for a later merge. |
Sure.
Sounds good to me. |
Ok, then I'll do a few more application tests myself over the weekend, and then tag a release early next week. |
Will this next release include f468be5? Or do you plan to revert it temporarily? I think either option is fine, just curious. As for the next version, technically it should be v2.0.0 because the addition of the type parameter |
My plan is to base the release on the current master, no reverts. |
I'll be on hand to patch any bugs that may come up :) |
Now that's an offer! :-) Here we go: JuliaRegistries/General#14361 |
Awesome! Thank you :) |
You're very welcome - thanks for contributing! |
Base.similar(A::ElasticArray, ::Type{T}, dims::Dims{N})
to return an ElasticArray.ElasticArray
Base.similar(::Type{ElasticArray{T}}, dims::Dims{N})
; the definition forAbstractArray
inBase
is sufficient.parent(A::ElasticArray)
. Several functions inLinearAlgebra
depend onsize(A) == size(parent)
. Given thatElasticArray <: DenseArray
and we defineBase.pointer
this doesn't affect the ability to hitBLAS
. Not sure what the other ramifications would be. The other alternative that works but feels wrong isparent(A::ElasticArray) = reshape(A.data, size(A))
but that seems worse?Adapt.adapt_structure(to, A::ElasticArray)
so theCuArrays.cu(A::ElasticArray)
returns anElasticArray
wrapping aCuArray
.For
A::ElasticArray
,A * A
,2 * A
, andinv(A)
now return anElasticArray
. The goal is for matrix operations to always return anElasticArray
, but without more test coverage I'm no sure if I'm missing something.This depends on the changes in #20 so we can wait until that's merged. I also need to add a test for
adapt_structure
. I still hit scalar indexing with CuArrays, so need to figure that out as well.