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
When constructing expression such as A + 3 * B and constructing a tensor out of the expression, the exception is raised, which should not happen.
usingtensor_t = tensor_dynamic<float>;
autoconst e = extents<>{3,2};
autoconst a = tensor_t(e, 1.f);
autoconst three = 3.f;
autoconst expr = a + three * a;
autoconst t = tensor_t(expr); // exception
The text was updated successfully, but these errors were encountered:
amitsingh19975
changed the title
Exception raised on the construction of the tensor_expression
Exception raised on the construction of the tensor from the tensor_expressionMay 26, 2021
amitsingh19975
changed the title
Exception raised on the construction of the tensor from the tensor_expression
Exception raised on the construction of the tensor from the tensor_expressionMay 26, 2021
When constructing expression such as
A + 3 * B
and constructing a tensor out of the expression, the exception is raised, which should not happen.The text was updated successfully, but these errors were encountered: