We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ebe7f5 commit 2342989Copy full SHA for 2342989
src/plugins/intel_cpu/src/nodes/input.cpp
@@ -402,8 +402,9 @@ void Input::cloneBlobIfRequired() {
402
if (!size)
403
return;
404
405
+ // Only LLMs scalar constant nodes with bf16 inferencePrecision need to be checked for saturation
406
const bool do_bf16_saturation_check =
- (context->getConfig().inferencePrecision == ov::element::bf16) ? true : false;
407
+ (context->getConfig().inferencePrecision == ov::element::bf16 && size == 1) ? true : false;
408
409
#if defined(OPENVINO_ARCH_X86_64)
410
auto fn = jit_has_subnormals_function();
0 commit comments