forked from JuliaLang/julia
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
treat dot operators as dot calls, e.g. x .+ y --> (+).(x,y)
syntax deprecation for .op method definitions, and removed these deprecations from Base use range + 1, not range .+ 1, to make sure we call the specialized + method that produces a range (not an array) add depwarn for using .+ etc as function objects support dotted pipe operators eliminate most broadcast(::typeof(func), ...) methods, since fusion makes them ~useless; make broadcast produce a BitArray if a Bool array is expected test for .op loop fusion docs for new broadcasting dot-operator behavior define broadcast! earlier (fixes JuliaLang#18462) use specialized code for non-fusing array ± scalar, for performance work around slight slowdown in Diagonal due to broadcast vs. broadcast_elwise_op closes JuliaLang#11053
- Loading branch information
Showing
45 changed files
with
495 additions
and
893 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.