Skip to content

Commit 23b540b

Browse files
committed
add blank line
1 parent e0b46f7 commit 23b540b

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

onnxruntime/core/providers/coreml/builders/impl/squeeze_op_builder.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ bool SqueezeOpBuilder::IsOpSupportedImpl(const Node& node, const OpBuilderInputP
117117
if (!input_params.create_mlprogram) {
118118
return false;
119119
}
120+
120121
int64_t num_of_dims = 0;
121122
if (node.SinceVersion() > 12) {
122123
num_of_dims = node.InputDefs()[1]->Shape()->dim(0).dim_value();
@@ -125,6 +126,7 @@ bool SqueezeOpBuilder::IsOpSupportedImpl(const Node& node, const OpBuilderInputP
125126
auto axes = helper.Get("axes", std::vector<int64_t>());
126127
num_of_dims = static_cast<int64_t>(axes.size());
127128
}
129+
128130
std::vector<int64_t> input_shape;
129131
if (!GetShape(*input_defs[0], input_shape, logger) || input_shape.size() + num_of_dims > 5) {
130132
LOGS(logger, VERBOSE) << "Unsqueeze with num_of_dims > 5 is not supported";

0 commit comments

Comments
 (0)