Skip to content

Commit ec25616

Browse files
authored
[GPU] Changed zero point pad size for dGPU (openvinotoolkit#23755)
### Details: - *The previous value led to performance drops on dGPU* ### Tickets: - *[136266](https://jira.devtools.intel.com/browse/CVS-136266)*
1 parent b04e939 commit ec25616

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/intel_gpu/src/plugin/transformations_pipeline.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -724,7 +724,7 @@ void TransformationsPipeline::apply(std::shared_ptr<ov::Model> func) {
724724
if (!device_info.supports_immad)
725725
manager.register_pass<ov::intel_gpu::BroadcastReshapeMatmulFusion>();
726726

727-
const size_t zp_pad_size = 32;
727+
const size_t zp_pad_size = device_info.supports_immad ? 16 : 32;
728728
manager.register_pass<ov::intel_gpu::BroadcastAndPadZeroPointBuffers>(zp_pad_size);
729729

730730
// This is supposed to be the last pass to ensure that we don't have name collisions until

0 commit comments

Comments
 (0)