AMDMIGraphX icon indicating copy to clipboard operation
AMDMIGraphX copied to clipboard

Fix rewrite_reduce pass when running SD3 mmdit

Open kahmed10 opened this issue 1 year ago • 0 comments

Used this workaround to get mmdit working, but there seems to be a bug with the find_reduce_mean_variance{} matcher.

void rewrite_reduce::apply(module& m) const
{
    match::find_matches(m, find_softmax{});
    // match::find_matches(m, find_reduce_mean_variance{});
    match::find_matches(m, find_reduce_mean{});
}

kahmed10 avatar Jul 24 '24 20:07 kahmed10