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
As of right now, static tensor does not support operator +, -, etc because of tensor expression which excepts the same type only and static tensor can be of different types.
auto t1 = tensor{static_extents<1,2>{},1.f};
auto t2 = tensor{static_extents<2,3>{}, 1.f};
here t1 and t2 are of different type
The text was updated successfully, but these errors were encountered:
As of right now, static tensor does not support operator +, -, etc because of tensor expression which excepts the same type only and static tensor can be of different types.
here t1 and t2 are of different type
The text was updated successfully, but these errors were encountered: