Skip to content

Commit

Permalink
fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
isanghao committed Oct 6, 2024
1 parent 7858e8f commit 5c94cf6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ struct FullyConnectedImplementationManager : public ImplementationManager {
one_of(wei_dt, {data_types::i8, data_types::u8}) &&
one_of(out_dt, {data_types::f16, data_types::f32, data_types::i32, data_types::i8, data_types::u8});
bool compressed_case = fc_prim->compressed_weights &&
one_of(in0_dt, {data_types::f16, data_types::f32}) &&
one_of(in0_dt, {data_types::f16, data_types::f32, data_types::i8}) &&
one_of(wei_dt, {data_types::u8, data_types::i8, data_types::u4, data_types::i4}) &&
one_of(out_dt, {data_types::f16, data_types::f32});
if (!f16f16_case && !f32f32_case && !u8s8_case && !compressed_case)
Expand Down

0 comments on commit 5c94cf6

Please sign in to comment.