Skip to content

Commit 967e681

Browse files
author
NeiroYT
committed
Clang
1 parent 89ec67e commit 967e681

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

app/Graph/build.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,7 @@ void build_graph_linear(it_lab_ai::Graph& graph, it_lab_ai::Tensor& input,
127127
}
128128
}
129129
}
130-
if (comments)
131-
std::cout << "number of layers - " << layers.size() + 1 << '\n';
130+
if (comments) std::cout << "number of layers - " << layers.size() + 1 << '\n';
132131
auto a1 = std::make_shared<it_lab_ai::InputLayer>(it_lab_ai::kNchw,
133132
it_lab_ai::kNchw);
134133

@@ -472,7 +471,7 @@ ParseResult parse_json_model(RuntimeOptions options,
472471
}
473472

474473
auto pool_layer =
475-
std::make_shared<it_lab_ai::PoolingLayer>(shape, pooltype);
474+
std::make_shared<it_lab_ai::PoolingLayer>(shape, pooltype);
476475

477476
try {
478477
if (strides[0] != 2 || strides[1] != 2) {

0 commit comments

Comments
 (0)