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
The assignment operation, i.e.,
xt::jltensor<double, 1> test(xt::jltensor<double, 1> u) { xt::jltensor<double, 1> f = u; return f; }
cannot be performed in-place through
void test(xt::jltensor<double, 1> f, xt::jltensor<double, 1> u) { f = u; }
This is understandable since the argument is value instead of the reference. Is there a workaround for the in-place mutation?
edit: an explicit for-loop can do this
void test1([T](xt::jltensor<double, 1> f, xt::jltensor<double, 1> u) { int nu = u.shape(0); for (int i = 0; i < nu; i++) { f[i] = u[i]; } }
But is there an easier way?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The assignment operation, i.e.,
cannot be performed in-place through
This is understandable since the argument is value instead of the reference.Is there a workaround for the in-place mutation?
edit: an explicit for-loop can do this
But is there an easier way?
The text was updated successfully, but these errors were encountered: