-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
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
Simplify computation of return type in broadcast #39295
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -417,8 +417,8 @@ StrangeType18623(x,y) = (x,y) | |
let | ||
f(A, n) = broadcast(x -> +(x, n), A) | ||
@test @inferred(f([1.0], 1)) == [2.0] | ||
g() = (a = 1; Broadcast.combine_eltypes(x -> x + a, (1.0,))) | ||
@test @inferred(g()) === Float64 | ||
g() = (a = 1; x -> x + a) | ||
@test @inferred(broadcast(g(), 1.0)) === 2.0 | ||
Comment on lines
-420
to
+421
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @pabloferz @Sacha0 Since you worked on these tests (this one and the one below), could you confirm that the new ones covers the same use case as the old ones? That wasn't completely clear to me. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Regrettably sufficient time has elapsed since I looked at these tests and such that I no longer have much memory of them. Sorry Milan! :) |
||
end | ||
|
||
# Ref as 0-dimensional array for broadcast | ||
|
@@ -576,8 +576,9 @@ end | |
|
||
# Test that broadcast's promotion mechanism handles closures accepting more than one argument. | ||
# (See issue #19641 and referenced issues and pull requests.) | ||
let f() = (a = 1; Broadcast.combine_eltypes((x, y) -> x + y + a, (1.0, 1.0))) | ||
@test @inferred(f()) == Float64 | ||
let | ||
f() = (a = 1; (x, y) -> x + y + a) | ||
@test @inferred(broadcast(f(), 1.0, 1.0)) === 3.0 | ||
end | ||
|
||
@testset "broadcast resulting in BitArray" begin | ||
|
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.
I think this needs to be:
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.
Or is it
Base._return_type(iterate, Base._return_type(eachindex, Tuple{typeof(bc)}))
?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.
Oops, dropped a function. I meant:
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.
Putting that all together:
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.
I'm not entirely sure this is better than the existing code, which does pretty much the same calls, but bases it on calling
eltype
, instead of inference, which has at least different tradeoffs for better or worse 🤔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.
Do we want to try to proceed with this PR / design (inferring iterate), or keep the current one (call eltype)?