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
Right now, loops inside a Sum node are supposed to be fused if they start with same index. However, this only happens if they are adjacent. If a loop with a different index is placed between two fusable loops in the Sum, they are not fused. This is both inefficient and causes a crash (because the variables are redeclared).
Fused:
tensora 'a(i) = b(i) + c(i) + d(j,i)'
Not fused:
tensora 'a(i) = b(i) + c(j,i) + d(i)'
The text was updated successfully, but these errors were encountered:
Right now, loops inside a
Sum
node are supposed to be fused if they start with same index. However, this only happens if they are adjacent. If a loop with a different index is placed between two fusable loops in theSum
, they are not fused. This is both inefficient and causes a crash (because the variables are redeclared).Fused:
Not fused:
The text was updated successfully, but these errors were encountered: