Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[GPU] Skip fc fake alignment when fused desc has full tensor input #25249

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

wilson-seok
Copy link
Contributor

Details:

  • Skip fc fake alignment when fused desc has full tensor input

Tickets:

  • 144293

@wilson-seok wilson-seok requested review from a team as code owners June 27, 2024 08:35
@github-actions github-actions bot added the category: GPU OpenVINO GPU plugin label Jun 27, 2024
// Check fused desc's input has full tensor, then do not fake alignment
if (orig_output_layout.get_tensor() == orig_impl_param.input_layouts[num_of_inputs - i - 1].get_tensor())
can_apply_fake_alignment = false;
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not every of the fused node has outer dep.
So I'd like to suggest

  1. iterate fused_desc
  2. if fused_desc->has_outer_dep() get outer_dep_start_idx, and check input_layouts[outer_dep_start_idx]

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
category: GPU OpenVINO GPU plugin
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants