We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b04e939 commit ec25616Copy full SHA for ec25616
src/plugins/intel_gpu/src/plugin/transformations_pipeline.cpp
@@ -724,7 +724,7 @@ void TransformationsPipeline::apply(std::shared_ptr<ov::Model> func) {
724
if (!device_info.supports_immad)
725
manager.register_pass<ov::intel_gpu::BroadcastReshapeMatmulFusion>();
726
727
- const size_t zp_pad_size = 32;
+ const size_t zp_pad_size = device_info.supports_immad ? 16 : 32;
728
manager.register_pass<ov::intel_gpu::BroadcastAndPadZeroPointBuffers>(zp_pad_size);
729
730
// This is supposed to be the last pass to ensure that we don't have name collisions until
0 commit comments