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
Right now there are a few tests in https://github.com/SciNim/flambeau/blob/master/tests/arraymancerTestSuite/tensor/test_accessors.nim that fail. Most notably:
a[1, 1] += 10
a[1, 1]
The text was updated successfully, but these errors were encountered:
Added the slicer test as well: https://github.com/SciNim/flambeau/blob/master/tests/arraymancerTestSuite/tensor/test_accessors_slicer.nim And there are not many tests that work. Seems like the more advanced slices doesn't work really like _ and ^.
_
^
Sorry, something went wrong.
No branches or pull requests
Right now there are a few tests in https://github.com/SciNim/flambeau/blob/master/tests/arraymancerTestSuite/tensor/test_accessors.nim that fail. Most notably:
a[1, 1] += 10
isn't possible becausea[1, 1]
is immutable.The text was updated successfully, but these errors were encountered: