Skip to content

Commit

Permalink
Warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
v-Golubev committed Nov 30, 2023
1 parent aedbdf3 commit 92e55f8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/common/snippets/src/lowered/pass/identify_buffers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,6 @@ std::vector<bool> IdentifyBuffers::create_adjacency_matrix(const LinearIR& linea
for (size_t i = 0; i < size; ++i)
adj[index(size, i, i)] = true;

auto is_buffer = [](const ExpressionPort& port) {
return ov::is_type<op::Buffer>(port.get_expr()->get_node());
};

for (auto expr_it = linear_ir.cbegin(); expr_it != linear_ir.cend(); expr_it++) {
const auto &expr = *expr_it;
const auto& loop_end = ov::as_type_ptr<op::LoopEnd>(expr->get_node());
Expand Down

0 comments on commit 92e55f8

Please sign in to comment.