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 437242d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/snippets/src/op/subgraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ auto snippets::op::Subgraph::wrap_node_as_subgraph(const std::shared_ptr<ov::Nod
auto body = create_body(node->get_friendly_name(), body_results, body_parameters);
auto subgraph = build_subgraph(node, subgraph_inputs, body);

auto hidden_data_count = 0lu;
size_t hidden_data_count = 0lu;
if (auto fq_node = ov::as_type_ptr<ov::op::v0::FakeQuantize>(node)) {
hidden_data_count += utils::get_non_scalar_constant_count_for_fq(fq_node);
// Ops that requires Buffer
Expand Down
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 437242d

Please sign in to comment.