Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
jjsjann123 committed Dec 24, 2024
1 parent 9fc0595 commit f5f5c53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions csrc/preseg_passes/remove_bcast_squeeze.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -163,13 +163,13 @@ TensorView* replayAxisOp(
switch (simple_op_type) {
case AxisOp::PRESERVE:
// This is equivalent to a set Op
replacement = tv;
return tv;
break;
case AxisOp::SQUEEZE:
replacement = squeeze(tv, nonPreservedDims(axis_ops));
return squeeze(tv, nonPreservedDims(axis_ops));
break;
case AxisOp::BROADCAST:
replacement = broadcast(tv, nonPreservedDims(axis_ops));
return broadcast(tv, nonPreservedDims(axis_ops));
break;
}
}
Expand Down

0 comments on commit f5f5c53

Please sign in to comment.