We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This was a bug in MLX core that I think got inherited in MLX Swift.
The following should work rather than throwing a broadcast error:
import MLX let a = MLXArray.ones([2,6,6,6]) let b = MLXArray.zeros([3,4,4,4]) b[0,0..<4, 3, 0..<4] = a[0, 1..<5, 5, 1..<5]
Corresponding PR in MLX: ml-explore/mlx#1035 Corresponding issue in MLX: ml-explore/mlx#1050
The text was updated successfully, but these errors were encountered:
While preparing the change I ran into this: ml-explore/mlx#1052
Sorry, something went wrong.
fix for ml-explore#76
c6a171e
- fix array indexing issue
fix for #76 (#78)
e0a2918
- fix array indexing issue * adopt changes from ml-explore/mlx#1053
Closing per #78
No branches or pull requests
This was a bug in MLX core that I think got inherited in MLX Swift.
The following should work rather than throwing a broadcast error:
Corresponding PR in MLX: ml-explore/mlx#1035
Corresponding issue in MLX: ml-explore/mlx#1050
The text was updated successfully, but these errors were encountered: