Skip to content

Commit

Permalink
fix function name
Browse files Browse the repository at this point in the history
  • Loading branch information
zhen8838 committed Jan 14, 2025
1 parent 7062fb7 commit 997c8eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ protected override Expr OnComplexCluster(ClusteredBidirectionalGraph<ExprVertex,
}

var cloned = PostProcess(clones);
var fusion = new Fusion($"{FuncName}_fusion_{sortIndex}", ModuleKind, cloned, paramDict.Values.OfType<Var>().ToArray());
var fusion = new Fusion($"{FuncName}_{sortIndex}_kernel", ModuleKind, cloned, paramDict.Values.OfType<Var>().ToArray());
return new Call(fusion, paramDict.Values.OfType<Var>().Select(v => argumentDict[v]).ToArray());
}

Expand Down

0 comments on commit 997c8eb

Please sign in to comment.