Skip to content

Commit

Permalink
[GPU] Changed zero point pad size for dGPU
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyamin-Roman committed Mar 28, 2024
1 parent 5fac80f commit db203a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ void TransformationsPipeline::apply(std::shared_ptr<ov::Model> func) {
if (!device_info.supports_immad)
manager.register_pass<ov::intel_gpu::BroadcastReshapeMatmulFusion>();

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

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

0 comments on commit db203a5

Please sign in to comment.