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
Kokkos will soon deprecate the following Kokkos::View methods:
ptr_on_device(): replace with data()
dimension(N) (for N = 0, 1, 2, ..., 7): replace with extent(N)
dimension_N() (for N = 0, 1, 2, ..., 7): replace with extent(N)
is_contiguous(): replace with span_is_contiguous()
capacity(): replace with span()
Sierra is already seeing build errors with its Trilinos integration build, since Sierra doesn't define KOKKOS_ENABLE_DEPRECATED_CODE. If that macro is not defined, code that uses the above methods will not build.
Kokkos will soon deprecate the following
Kokkos::View
methods:ptr_on_device()
: replace withdata()
dimension(N)
(for N = 0, 1, 2, ..., 7): replace withextent(N)
dimension_N()
(for N = 0, 1, 2, ..., 7): replace withextent(N)
is_contiguous()
: replace withspan_is_contiguous()
capacity()
: replace withspan()
Sierra is already seeing build errors with its Trilinos integration build, since Sierra doesn't define
KOKKOS_ENABLE_DEPRECATED_CODE
. If that macro is not defined, code that uses the above methods will not build.@trilinos/stokhos @etphipp
The text was updated successfully, but these errors were encountered: