Skip to content

Commit

Permalink
Fix coverity scan issue CID 1566608
Browse files Browse the repository at this point in the history
  • Loading branch information
aobolensk committed Jan 2, 2025
1 parent 638f3cb commit cb5885d
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 cb5885d

Please sign in to comment.