Skip to content

Commit

Permalink
[GPU] Enable can_use_fsv16 and can_use_bs_fs_yx_bsv16_fsv16 for group…
Browse files Browse the repository at this point in the history
…_normalization (#27986)

### Details:
- *Enable can_use_fsv16 and can_use_bs_fs_yx_bsv16_fsv16 for
group_normalization in pytorch version timm_mobilevitv2_150 OV model to
get better performance*


### Tickets:
 - *[CVS-154913](https://jira.devtools.intel.com/browse/CVS-154913)*

Signed-off-by: yuan.xiong <[email protected]>
  • Loading branch information
yuanxion authored Dec 23, 2024
1 parent d52f1da commit 98add4f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/plugins/intel_gpu/src/graph/program.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1501,6 +1501,7 @@ void program::set_layout_optimizer_attributes(layout_optimizer& lo) {
prim.type() != cldnn::strided_slice::type_id() &&
prim.type() != cldnn::region_yolo::type_id() &&
prim.type() != cldnn::normalize::type_id() &&
prim.type() != cldnn::group_normalization::type_id() &&
prim.type() != cldnn::mvn::type_id() &&
prim.type() != cldnn::gather::type_id() &&
prim.type() != cldnn::scatter_nd_update::type_id() &&
Expand Down Expand Up @@ -1581,6 +1582,7 @@ void program::set_layout_optimizer_attributes(layout_optimizer& lo) {
prim.type() != cldnn::deconvolution::type_id() &&
prim.type() != cldnn::multiclass_nms::type_id() &&
prim.type() != cldnn::normalize::type_id() &&
prim.type() != cldnn::group_normalization::type_id() &&
prim.type() != cldnn::deconvolution::type_id() &&
prim.type() != cldnn::unique_count::type_id() &&
prim.type() != cldnn::unique_gather::type_id() &&
Expand Down

0 comments on commit 98add4f

Please sign in to comment.