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

conv.i4 with NaN returns 0 on macOS M1 #86980

Closed
aoli-al opened this issue May 31, 2023 · 5 comments
Closed

conv.i4 with NaN returns 0 on macOS M1 #86980

aoli-al opened this issue May 31, 2023 · 5 comments

Comments

@aoli-al
Copy link

aoli-al commented May 31, 2023

Description

conv.i4 with NaN as input returns 0 on macOS M1

Reproduction Steps

Run the following code on macOS M1

Console.WriteLine($"{(int) Math.Log(-1)}")

Expected behavior

On an X86 machine it prints -2147483648

Actual behavior

Prints 0

Regression?

No response

Known Workarounds

No response

Configuration

No response

Other information

I understand casting NaN to integer is unspecified behaviour. However, I'm wondering if the runtime should produce the same output on different architectures.

@ghost ghost added the untriaged New issue has not been triaged by the area owner label May 31, 2023
@ghost
Copy link

ghost commented May 31, 2023

Tagging subscribers to this area: @dotnet/area-system-numerics
See info in area-owners.md if you want to be subscribed.

Issue Details

Description

conv.i4 with NaN as input returns 0 on macOS M1

Reproduction Steps

Run the following code on macOS M1

Console.WriteLine($"{(int) Math.Log(-1)}")

Expected behavior

On an X86 machine it prints -2147483648

Actual behavior

Prints 0

Regression?

No response

Known Workarounds

No response

Configuration

No response

Other information

I understand casting NaN to integer is unspecified behaviour. However, I'm wondering if the runtime should produce the same output on different architectures.

Author: aoli-al
Assignees: -
Labels:

area-System.Numerics

Milestone: -

@tannergooding
Copy link
Member

This is a complex issue because it can't be done without harming performance on one of the two target platforms.

There is an approved, but NYI, issue covering us fixing this and making it deterministic; but it hasn't bubbled up yet due to the complexity and all the areas that need to be fixed/tested first. Not to mention that it will likely cause some regressions and behavioral breaks for some users who are depending (even unknowingly) on the current behavior.

@tannergooding
Copy link
Member

#61885, for reference

@tannergooding tannergooding removed the untriaged New issue has not been triaged by the area owner label Jun 1, 2023
@aoli-al
Copy link
Author

aoli-al commented Jun 1, 2023

Thanks for pointing that out! The explanation sounds reasonable, so please feel free to close this issue if you have been tracking it.

@tannergooding
Copy link
Member

Thanks! I'll close this as a dupe then and will hopefully be able to get this addressed nearer rather than later term.

@ghost ghost locked as resolved and limited conversation to collaborators Jul 1, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants