feat: add shape manipulation ops on Array - #6
Merged
Conversation
Signed-off-by: kerthcet <kerthcet@gmail.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Adds shape-manipulation operations to mlxcore::Array and updates host extraction (to_vec) to correctly handle non-contiguous views by materializing a row-contiguous buffer first. This expands the safe Rust surface area over MLX-C’s shape/view operators and makes to_vec semantics consistent for transposed/broadcasted arrays.
Changes:
- Update
Array::to_vecto materialize a row-contiguous copy before reading via raw data pointers (fixing transpose/broadcast cases). - Add shape/view ops on
Array:contiguous,reshape,broadcast_to,transpose,squeeze,expand_dims. - Add unit tests covering reshape/transpose/broadcast/squeeze+expand_dims.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Signed-off-by: kerthcet <kerthcet@gmail.com>
Add strides()/is_row_contiguous() computed from public shape+strides, and split to_vec into a fast path (direct bulk read for row-contiguous arrays, the common case) and a slow path (materialize a contiguous copy only for strided/broadcast views). Shared read_buffer helper. Avoids an extra FFI op + CPU-stream copy on every to_vec call. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Signed-off-by: kerthcet <kerthcet@gmail.com>
Member
Author
|
/lgtm |
InftyAI-Agent
approved these changes
Aug 23, 2026
InftyAI-Agent
left a comment
Member
There was a problem hiding this comment.
Approved: PR has both lgtm and approved labels
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What this PR does / why we need it
Which issue(s) this PR fixes
Fixes #
Special notes for your reviewer
Does this PR introduce a user-facing change?