[GPU] Fix performance drop on new API (#13767)

This commit is contained in:
Roman Lyamin 2022-11-03 18:34:14 +04:00 committed by GitHub
parent ced0eebd13
commit 6c7f1f8792
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1457,7 +1457,8 @@ void program::set_layout_optimizer_attributes(layout_optimizer& lo) {
prim.type() != cldnn::scatter_elements_update::type_id() &&
prim.type() != cldnn::gather_tree::type_id() &&
prim.type() != cldnn::experimental_detectron_detection_output::type_id() &&
prim.type() != cldnn::experimental_detectron_topk_rois::type_id()) {
prim.type() != cldnn::experimental_detectron_topk_rois::type_id() &&
prim.type() != cldnn::convert_color::type_id()) {
can_use_fsv16 = false;
}