-
Notifications
You must be signed in to change notification settings - Fork 238
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
Reverse with multiple dimensions #1899
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Some minor changes.
.... a test is failing. I am checking this. |
should be OK now. Test was running fine. |
Co-authored-by: Tim Besard <[email protected]>
Co-authored-by: Tim Besard <[email protected]>
Co-authored-by: Tim Besard <[email protected]>
test/execution.jl
Outdated
function kernel2(T, i) | ||
function kernel(T, i) | ||
sink(unsafe_trunc(T,i)) | ||
return | ||
end | ||
@cuda kernel2(Int, 1.) | ||
@cuda kernel(Int, 1.) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unintended changes?
Pushed some small fixes, but this should be good to go, thanks! Let's wait for CI and merge this. FWIW, I had some trouble rebasing this. It's better not to merge branches on a PR, especially external master branches, but always rebase on top of the destination branch. |
I guess this was caused by me clicking on "Synchronize" in Github, which pulled the current version from your master branch and merged it with my version? Not really sure how to do a rebase though... |
It's recommended to use feature branches on your fork, otherwise multiple PRs get tricky.
Yeah, I'm not sure what happened either 🙂 Normally the |
This code allows
reverse
to be used also in the new signaturedims=(1,3)
ordims=:
as common starting with Julia 1.6.If the tests run through I do get a Windows Blue Screen in my system, but this issue also existed in the version this fork was generated from.