-
Notifications
You must be signed in to change notification settings - Fork 231
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
DSE uses wrong np.dtype for some temporaries #920
Labels
Comments
FabioLuporini
changed the title
DSE uses wrong np.dtype for certain temporaries
DSE uses wrong np.dtype for some temporaries
Sep 3, 2019
mloubout
added a commit
that referenced
this issue
Jun 29, 2023
mloubout
added a commit
that referenced
this issue
Jul 17, 2023
mloubout
added a commit
that referenced
this issue
Jul 20, 2023
mloubout
added a commit
that referenced
this issue
Jul 21, 2023
mloubout
added a commit
that referenced
this issue
Jul 21, 2023
mloubout
added a commit
that referenced
this issue
Jul 27, 2023
mloubout
added a commit
that referenced
this issue
Aug 2, 2023
mloubout
added a commit
that referenced
this issue
Aug 4, 2023
mloubout
added a commit
that referenced
this issue
Aug 8, 2023
mloubout
added a commit
that referenced
this issue
Aug 9, 2023
mloubout
added a commit
that referenced
this issue
Aug 23, 2023
mloubout
added a commit
that referenced
this issue
Aug 24, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Reproducer below
basically the DSE generates
int r0 = 1.0/h_x;
, inferringint
from the dtype of the searched expression. But thenr0
will be 0, and so everything will be 0 at the end. We may wanna force the temporary dtype to float. Have to think about the potential side effects of doing that thoughThe text was updated successfully, but these errors were encountered: