We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Using KokkosBlas::axpby, I could easily get a broken code if both following conditions are met:
KokkosBlas::axpby
The issue is clear if looking e.g. at the following line:
kokkos-kernels/blas/src/KokkosBlas1_axpby.hpp
Line 109 in b3a4bdf
Adding an exec_space.fence() before fetching the value of the rank-0 view fixes it.
exec_space.fence()
As a side node, I think you get potentially other issues, e.g. here
Line 137 in b3a4bdf
exec_space
Kokkos::deep_copy
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using
KokkosBlas::axpby
, I could easily get a broken code if both following conditions are met:The issue is clear if looking e.g. at the following line:
kokkos-kernels/blas/src/KokkosBlas1_axpby.hpp
Line 109 in b3a4bdf
Adding an
exec_space.fence()
before fetching the value of the rank-0 view fixes it.As a side node, I think you get potentially other issues, e.g. here
kokkos-kernels/blas/src/KokkosBlas1_axpby.hpp
Line 137 in b3a4bdf
where passing
exec_space
toKokkos::deep_copy
seems necessary.The text was updated successfully, but these errors were encountered: