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
Currently, the dedup function regards T.einsum('cb,ca->ab',B,B) and T.einsum('cb,ca->ba',B,B) as different expressions. However, their results are the same and should be viewed as duplicated.
The text was updated successfully, but these errors were encountered:
I think the common sense you mentioned is the property of einsum when symmetry is involved. There're too many potential cases so I think we may need to transfer the einsum expression back to some union find data structure to detect all the cases. Seems it's not an easy case for me
Currently, the dedup function regards
T.einsum('cb,ca->ab',B,B)
andT.einsum('cb,ca->ba',B,B)
as different expressions. However, their results are the same and should be viewed as duplicated.The text was updated successfully, but these errors were encountered: