Skip to content

Commit e4b253b

Browse files
committed
Fix format error in get_projected_subtensor function
1 parent 8b0fef6 commit e4b253b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/snippets/src/utils/utils.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ VectorDims get_projected_subtensor(const snippets::lowered::ExpressionPort& expr
214214
: get_preordered_vdims(expr_port);
215215
auto subtensor = desc->get_subtensor();
216216
for (size_t i = 1; i <= std::min(subtensor.size(), shape.size()); i++) {
217-
if (auto& dim = subtensor[subtensor.size() - i]; utils::is_full_dim_value(dim)){
217+
if (auto& dim = subtensor[subtensor.size() - i]; utils::is_full_dim_value(dim) {
218218
dim = shape[shape.size() - i];
219219
}
220220
}

0 commit comments

Comments
 (0)