You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
compile and work correctly. Currently it doesn't because of expects an lvalue for 1st argument. It could be as easy as using const ref any time a view is passed instead of a non-const reference.
Need to go through functions and do updates, and add testing.
Would probably also need to add tests for unmanaged views.
The text was updated successfully, but these errors were encountered:
Need to make sure things like
irecv(Kokkos::subview(view, std::make_pair(i, j)), ...);
compile and work correctly. Currently it doesn't because of
expects an lvalue for 1st argument
. It could be as easy as using const ref any time a view is passed instead of a non-const reference.Need to go through functions and do updates, and add testing.
Would probably also need to add tests for unmanaged views.
The text was updated successfully, but these errors were encountered: