Skip to content

Commit

Permalink
fixed win error
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sidorova committed Nov 10, 2022
1 parent 445428b commit 5c6ced9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/snippets/src/pass/softmax_decomposition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ ngraph::snippets::pass::SoftmaxDecomposition::SoftmaxDecomposition(const size_t
const auto increment = vector_size;
const auto inner_dim = shape_rank - 1;
const auto inner_master_work_amount = static_cast<size_t>(master_shape[inner_dim]);
const int outer_dim = shape_rank > 1 ? shape_rank - 2 : -1;
const int outer_dim = shape_rank > 1 ? static_cast<int>(shape_rank - 2) : -1;
const auto has_outer_loop = outer_dim >= 0 && master_shape[outer_dim] > 1;

/* ====== ReduceMax decomposition ====== */
Expand Down

0 comments on commit 5c6ced9

Please sign in to comment.