[GPU] Use double blocked format if batch >= 16 (#9357)
This commit is contained in:
parent
3b03728807
commit
16490959e6
@ -920,7 +920,7 @@ layout layout_optimizer::get_expected_layout(layout const& current_layout,
|
||||
|
||||
if (i8_u8_input) {
|
||||
if ((non_grouped || valid_grouped || valid_int8_dw) && onednn_valid_post_ops && is_2d) {
|
||||
if (input_layout.size.batch[0] % 16 == 0) {
|
||||
if (input_layout.size.batch[0] >= 16) {
|
||||
expected_format = cldnn::format::bs_fs_yx_bsv32_fsv32;
|
||||
} else {
|
||||
if (data_type_traits::is_floating_point(output_layout.data_type) &&
|
||||
|
Loading…
Reference in New Issue
Block a user