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 tensor_mul operator does not verify that the indices operator on the same dimensions. E.g.:
tensor_mul
DTensor<VectorIndexSet<X, Y>, VectorIndexSet<X, Y>> A; DTensor<VectorIndexSet<R, Theta>> b; tensor_mul(index<'i','j'>(A), index<'j'>(b));
should raise an error.
The text was updated successfully, but these errors were encountered:
Add missing static_assert. Fixes #172. Improve error message
18efd5d
a59caee
Successfully merging a pull request may close this issue.
The
tensor_mul
operator does not verify that the indices operator on the same dimensions. E.g.:should raise an error.
The text was updated successfully, but these errors were encountered: