Uh oh!
There was an error while loading. Please reload this page.
[TIR] Enable HoistIfThenElse in the default lowering procedure - #5553
[TIR] Enable HoistIfThenElse in the default lowering procedure#5553roastduck wants to merge 5 commits into
Conversation
roastduck
commented
May 10, 2020
Well, a test for TensorCore fails.
into where the |
roastduck
commented
May 10, 2020
Fixed and added an extra test. |
roastduck
commented
May 10, 2020
Renamed |
roastduck
commented
May 11, 2020
Fixed a bug where |
roastduck
commented
May 11, 2020
Since there are too many bugs in |
Enabling the
HoistIfThenElsepass (#3865) in the default lowering procedure.HoistIfThenElsecan be very helpful for sparse applications, sinceLoopPartitioncannot eliminate their if statements with dynamic (unknown at compile time) conditions.Changes:
HoistIfThenElsefromsrc/tir/passtosrc/tir/transform.lower.@tqchen Requesting for a review.