-
-
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 Array(shape...)-like constructors to Array(uninitialized, shape...) #24781
Conversation
|
Comprehension lowering required updating, and a |
Thoughts on the |
c99a59a
to
eb7c2d6
Compare
Caught another necessary lowering change, fixed a few additional Pending CI this pull request should now be in shape. (Though merging #24785 will introduce a minor conflict here.) So absent objections or requests for time, I plan to merge these changes tomorrow. Best! |
053e6e2
to
04f5d91
Compare
…pe) specialization.
…hape...) equivalents.
Thanks all! :) |
This pull request deprecates uninitialized-
Array
constructors of the formArray[{T,N}](shape...)
in favor ofArray[{T,N}](uninitialized, shape...)
equivalents. For background, please see #24595. Best!(This pull request should not pass CI till the remaining
Array(shape...)
call replacement pull requests merge, hence the WIP.)