Skip to content
New issue

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

Exception Raised for Static Rank Tensor inside the Tensor Times Tensor Product #121

Open
amitsingh19975 opened this issue May 30, 2021 · 0 comments
Assignees
Labels

Comments

@amitsingh19975
Copy link
Collaborator

This exception is raised because the static rank extents for result type are not filled with one but instead default initialized to zero, making the extents invalid.

auto A = tensor_static_rank<float,2>(4,3);
auto B = tensor_static_rank<float,3>(3,4,2);
auto AB = A(_d,_f) * B(_f,_d,_); // Throws the exception
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants