Skip to content

Commit

Permalink
[Snippets][CPU] Fixed the build
Browse files Browse the repository at this point in the history
  • Loading branch information
a-sidorova committed Dec 30, 2024
1 parent fea453e commit ed31224
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/intel_cpu/src/nodes/subgraph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1055,7 +1055,7 @@ inline void parallelNd_repacking(const BrgemmCopyBKernel* ker,
const VectorDims& out_str,
const uint8_t* src,
uint8_t* dst) {
const auto batch = std::accumulate(dom.rbegin() + 2, dom.rend(), 1lu, std::multiplies<size_t>());
const size_t batch = std::accumulate(dom.rbegin() + 2, dom.rend(), 1lu, std::multiplies<size_t>());
parallel_nt_static(0, [&](const int ithr, const int nthr) {
BrgemmCopyBKernel::call_args args;
size_t start = 0, end = 0;
Expand Down

0 comments on commit ed31224

Please sign in to comment.