-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
Deprecate functions vectorized via @vectorize_(1|2)arg
in favor of compact broadcast syntax
#17302
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
3307a5e
Deprecate vectorized functions in base/special/trig.jl in favor of co…
Sacha0 1eb5a31
Deprecate vectorized functions in base/special/log.jl in favor of com…
Sacha0 b0f4e94
Deprecate vectorized functions in base/special/gamma.jl in favor of c…
Sacha0 15234b4
Deprecate vectorized functions in base/special/erf.jl in favor of com…
Sacha0 7003a9d
Deprecate vectorized functions in base/special/bessel.jl in favor of …
Sacha0 898c512
Deprecate vectorized functions in base/math.jl in favor of compact br…
Sacha0 2a5b38d
Deprecate vectorized functions in base/floatfuncs.jl in favor of comp…
Sacha0 d5a9830
Deprecate vectorized functions in base/fastmath.jl in favor of compac…
Sacha0 edb235a
Deprecate vectorized functions in base/complex.jl in favor of compact…
Sacha0 a745a8e
Deprecate vectorized functions in base/dates/accessors.jl in favor of…
Sacha0 68a746b
Deprecate vectorized functions in base/dates/adjusters.jl in favor of…
Sacha0 8dc9725
Deprecate vectorized functions in base/dates/conversions.jl in favor …
Sacha0 253c5de
Deprecate vectorized functions in base/dates/query.jl in favor of com…
Sacha0 4df8f20
Clean up @vectorize_(1|2)arg deprecations.
Sacha0 8258554
Deprecate `@vectorize_1arg` and `@vectorize_2arg`.
Sacha0 bb88931
Update documentation following deprecation of macro-vectorized functi…
Sacha0 2c5fa85
Revise a few vectorized-math methods, specifically eliminating tempor…
Sacha0 b0e7481
Remove now-redundant integer-specialized condskeel methods.
Sacha0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Seems like this depends on #16966 — i.e. we need
broadcast
to recognizeTimeType
as a "scalar".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.
Oh, no, I guess it will work as-is for operations on
Array{TimeType}
by themselves.