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

[CIR][NFC] Fix bug during fp16 unary op CIRGen #706

Merged
merged 1 commit into from
Jul 1, 2024

Conversation

Lancern
Copy link
Collaborator

@Lancern Lancern commented Jun 29, 2024

This PR fixes a bug during the CIRGen of fp16 unary operations. Before this patch, for the expression -x where x is a fp16 value, CIRGen emits the code like the following:

%0 = cir.cast float_to_float %x : !cir.f16 -> !cir.float
%1 = cir.cast float_to_float %0 : !cir.float -> !cir.f16
%2 = cir.unary minus %1 : !cir.fp16

The expected CIRGen should instead be:

%0 = cir.cast float_to_float %x : !cir.f16 -> !cir.float
%1 = cir.unary minus %0 : !cir.float
%2 = cir.cast float_to_float %1 : !cir.float -> !cir.f16

This PR fixes this issue.

This patch fixes a bug during the CIRGen of fp16 unary operations. Before this
patch, for the expression `-x` where `x` is a fp16 value, CIRGen emits the
code like the following:

    %0 = cir.cast float_to_float %x : !cir.f16 -> !cir.float
    %1 = cir.cast float_to_float %0 : !cir.float -> !cir.f16
    %2 = cir.unary minus %1 : !cir.fp16

The expected CIRGen should instead be:

    %0 = cir.cast float_to_float %x : !cir.f16 -> !cir.float
    %1 = cir.unary minus %0 : !cir.float
    %2 = cir.cast float_to_float %1 : !cir.float -> !cir.f16

This patch fixes this issue.
Copy link
Member

@bcardosolopes bcardosolopes left a comment

Choose a reason for hiding this comment

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

LGTM. Btw, we need to start adding LLVM tests to make sure this whole 16 fp thing works.

@bcardosolopes bcardosolopes merged commit c2ed2c4 into llvm:main Jul 1, 2024
7 checks passed
@Lancern Lancern deleted the fp16-unary-cirgen-fix branch July 2, 2024 02:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants