Add copy keyword to mx.asarray#3510
Open
eyupcanakman wants to merge 1 commit intoml-explore:mainfrom
Open
Conversation
zcbenz
requested changes
May 11, 2026
Collaborator
zcbenz
left a comment
There was a problem hiding this comment.
The copy parameter only makes sense if the framework supports in-place operation and you want to make a deep copy whose content would stay unchanged when the original copied array got an in-place update. But since MLX has no in-place operation and the supposed use case would never happen.
So I think the best way to support copy parameter is to simply throw when copy=False is passed and return create_array(a, dtype) otherwise like before. Because copy=False means shallow-copy which makes no sense in MLX, and code using copy=True|None would stay semantically correct.
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.
Proposed changes
mx.asarraydoes not accept thecopykeyword from the array-API spec. References #3484.The fix adds
copyas a keyword-only argument with the spec semantics:Truealways copies the input,Falsenever copies and raisesValueErrorif a copy would be required, and the defaultNonekeeps the existing behavior. Forcopy=Trueon an mlx array of matching dtype, the binding routes throughmx::copy(arr). Note that mlx is lazy and functional, soCopy::evalcallsout.copy_shared_buffer(inputs[0]); the post-eval buffer can be shared with the source until a downstream op writes a fresh allocation. This matches the existing__copy__/__deepcopy__semantics onmx.array.The other half of #3484 (
from_dlpackin__array_namespace__) is left out. PR #3495 reworks dlpack consumption through themx.array(...)constructor and the namespace wiring depends on that landing.Checklist
Put an
xin the boxes that apply.pre-commit run --all-filesto format my code / installed pre-commit prior to committing changes