-
Notifications
You must be signed in to change notification settings - Fork 795
[SYCL][FPGA] Drop the duplicate attribute when adding or merging #3389
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
Conversation
This patch drops a duplicate attribute when adding or merging for FPGA attributes: 1. [[intel::private_copies()] 2. [[intel::max_replicates()]] 3. [[intel::reqd_sub_group_size()]] 4. [[intel::num_simd_work_items()]] 5. [[intel::loop_fuse()]] 6. [[intel::loop_fuse_independent()]] 7. [[intel::no_global_work_offset()]] 8. [[intel::scheduler_target_fmax_mhz()]] Also adds tests for each of the attributes with duplicate arguments. Signed-off-by: Soumi Manna <[email protected]>
Signed-off-by: Soumi Manna <[email protected]>
I think in general we should not be calling |
Signed-off-by: Soumi Manna <[email protected]>
Done. Thanks @AaronBallman. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Thanks Aaron for the reviews. |
This patch drops a duplicate attribute when adding or merging for FPGA attributes below:
Also adds tests for each of the attributes with duplicate arguments.
Fixes #3336
Signed-off-by: Soumi Manna [email protected]