We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90cb5b4 commit e0e06cdCopy full SHA for e0e06cd
apps/onnx/onnx_converter.cc
@@ -55,11 +55,11 @@ Halide::Expr inline_func_call(Halide::Expr e) {
55
FuncCallInliner inliner;
56
57
Halide::Expr r_old = Halide::Internal::simplify(e);
58
- Halide::Expr r = inliner.mutate(r_old);
+ Halide::Expr r = inliner(r_old);
59
60
while (!r.same_as(r_old)) {
61
r_old = Halide::Internal::simplify(r);
62
- r = inliner.mutate(r_old);
+ r = inliner(r_old);
63
}
64
65
return r;
0 commit comments