Exception Raised for Static Rank Tensor inside the Tensor Times Tensor Product
Open
bug
- Dominant language
- C++
- Stars
- 122
- Forks
- 151
- PR merge metrics
- No merged PRs in 30d
Description
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.
```cpp
auto A = tensor_static_rank(4,3);
auto B = tensor_static_rank(3,4,2);
auto AB = A(_d,_f) * B(_f,_d,_); // Throws the exception
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.