-
Notifications
You must be signed in to change notification settings - Fork 9
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
Use Kokkos atomic_inc
in place of atomic_increment
#122
Conversation
Thank you. I think we should merge this, but we'll want to add a version check in cmakelists.txt to be sure the kokkos being used against supports |
I should be able to find it rather quickly. |
It looks like the |
Running
|
Since we already require Kokkos 3.7 we are good to go. Line 60 in e64bba9
|
Approximately a month ago, the development branch of kokkos deprecated calls to
atomic_increment
in favor ofatomic_inc
(see kokkos/kokkos@e61165e).atomic_inc
is present in the master and release branches, so this branch replaces calls toKokkos:atomic_increment
withKokkos:atomic_inc
.