Skip to content

Commit b0579f4

Browse files
committed
[CPU] Corrected FC BF16 config
1 parent 3d08b49 commit b0579f4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/plugins/intel_cpu/src/nodes/executors/fullyconnected_implementations.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,12 @@ struct Require {
4848
// clang-format off
4949
static const TypeMapping dnnlFCTypeMapping {
5050
// {src, wei, bia, dst} pt<src, wei, bias, dst>
51-
{{_bf16, _bf16 | _f32, _any, _bf16 | _f32}, pt(bypass(), bypass(), use<3>(), bypass())},
51+
{{_bf16, _bf16 | _f32 | _f16, _any, _bf16 | _f32}, pt(bypass(), bypass(), use<3>(), bypass())},
5252
{{_f16, _f16, _any, _f16 | _f32}, pt(bypass(), bypass(), use<3>(), bypass())},
5353
// integer precision outputs are not supported for float precision inputs
5454
{{_f32 | _bf16 | _f16, _any, _any, _i8 | _u8}, pt(bypass(), bypass(), use<0>(), use<0>())},
5555
// compresses float weights which do not match input data precision
5656
{{_f32, _half_float, _any, _any | _any}, pt(bypass(), bypass(), use<0>(), use<0>())},
57-
{{_bf16, _f16, _any, _any | _any}, pt(bypass(), bypass(), use<0>(), use<0>())},
5857
{{_f16, _bf16, _any, _any | _any}, pt(bypass(), bypass(), use<0>(), use<0>())},
5958
// quantization configuration
6059
// int8 inner_product does not support f16 output and bias

0 commit comments

Comments
 (0)