-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
[z|c]gemv assume no inf or nan in buffer on x86_64 #746
Comments
|
jeromerobert
added a commit
to jeromerobert/OpenBLAS
that referenced
this issue
Jan 20, 2016
jeromerobert
added a commit
to jeromerobert/OpenBLAS
that referenced
this issue
Jan 21, 2016
jeromerobert
added a commit
to jeromerobert/OpenBLAS
that referenced
this issue
Jan 21, 2016
xianyi
pushed a commit
that referenced
this issue
Feb 8, 2016
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cgemv_t.S
andzgemv_t.S
return wrong results when the buffer contains NaN or Inf values. I guess that somewhere it assume that 0 * buffer[i] = 0 without initializing buffer[i]. The buffer may contains NaN or Inf values because of previous OpenBLAS functions calls.Any easy workaround would be to
memset
the buffer in zgemv.c but IMHO it should be fixed in the assembler code (which I'm not able to do). Here is a simple program which reproduce the issue.The text was updated successfully, but these errors were encountered: