Skip to content

Commit a218768

Browse files
authored
Revert "[GPU] Disallow OneDNN usage of FP32 input with compressed weights on FC (#25232)" (#25512)
This reverts commit 5cfbd06. Not needed anymore since missing functionality is now implemented in OneDNN ### Details: - Revert commit disallowing OneDNN usage of FP32 input with compressed weights on FC ### Tickets: - 138360
1 parent 0c999c0 commit a218768

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/plugins/intel_gpu/src/graph/layout_optimizer.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -936,10 +936,6 @@ static bool is_node_for_onednn(fully_connected_node const& node) {
936936
(decompression_zp_dt != ov::element::Type_t::u8 && decompression_zp_dt != ov::element::Type_t::i8)) {
937937
return false;
938938
}
939-
940-
auto input_dt = node.get_input_layout(0).data_type;
941-
if (input_dt == data_types::f32)
942-
return false;
943939
}
944940
}
945941

0 commit comments

Comments
 (0)