Skip to content

Commit

Permalink
Fix coverity scan issue CID 1566608 (#28254)
Browse files Browse the repository at this point in the history
### Details:
 - This PR fixes coverity issue with CID 1566608

### Tickets:
 - [CVS-158856](https://jira.devtools.intel.com/browse/CVS-158856)
  • Loading branch information
aobolensk authored Jan 3, 2025
1 parent dc8c4ee commit 6692cd7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ bool InsertBrgemmCopyBuffers::run(LinearIR& linear_ir, LinearIR::constExprIt beg

const auto vnni_factor = brgemm_utils::compute_vnni_factor(src_dt);
const auto inner_k_blk = brgemm_utils::repacking::compute_inner_k_block(src_dt);
OPENVINO_ASSERT(inner_k_blk > 0, "inner_k_blk cannot be zero!");
const auto tile_scratch_size = BrgemmCPU::SCRATCH_BYTE_SIZE;
const auto current_scratch_size = scratch_expr->get_byte_size();
OPENVINO_ASSERT(current_scratch_size == tile_scratch_size,
Expand Down

0 comments on commit 6692cd7

Please sign in to comment.