-
Notifications
You must be signed in to change notification settings - Fork 152
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
Incorrect parameter ordering in element_sub #129
Comments
I have submitted a pr that had passed the checks. Can someone review it so it can be merged? |
Is there any ongoing effort to solve this issue? If not, I am interested in working on it. Please assign the task to me |
Is this issue resolved or yet remaining to be solved? |
It is not resolved yet. It appears there is are two prq's for this at #128 and #146 (review). However, they need two people with write access to approve them. The one wihtout all the merge conflicts should probably be the one merged into the develop branch. |
The parameter ordering of a call to element_wise within one of the element_sub overloads is incorrect.
Since the function signature of element_wise is:
The call in the first element_sub overload should be changed to:
element_wise(a, b, result, compute::minus<T>(), queue);
as opposed to
element_wise(a, b, compute::minus<T>(), result, queue);
The text was updated successfully, but these errors were encountered: