You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: