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 generating code from Index Tree dialect to SCF dialect (in IndexTreeToSCF.cpp) for the numeric phase of Elementwise Multiplication (Eltwise), some redundant code is generated.
When generating code from Index Tree dialect to SCF dialect (in
IndexTreeToSCF.cpp
) for the numeric phase of Elementwise Multiplication (Eltwise), some redundant code is generated.Current generated numeric Eltwise is as follows.
Some known issues are as follows, and there might be others.
is_visited
array is unnecessary because Eltwise only goes through every row once.if-else
checking condition is unnecessary, but theif
body should remain.V
seems redundant because there is already a dense arrayW_data
(i.e., the workspace).The text was updated successfully, but these errors were encountered: