Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ bool DnnlFCPrimitive::useWeightsDecompressionImpl(const ov::element::Type inputT
// f16c kernel saves memory footprint with additional decompression computational overhead
// which is only meaningful on LLM with small batch-size.
// TODO: fall-back to use f32 weights on large batch-size
if (inputType == f32 && weightsType == f16)
if (inputType == f32 && one_of(weightsType, f16, bf16))
return true;
}
}
Expand Down