Closed dalg24 closed 1 month ago
I could build the code by expunging the use of Kokkos::Impl::MirrorType
in packages/stokhos
:
Kokkos::Impl::MirrorType</* ... */>::view_type
becomes
Kokkos::Impl::MirrorViewType</* ... */>::dest_view_type
@dalg24 @pzehner thanks for helping diagnose, looks like a simple enough update. I'll gather this into a PR and list you as co-authors, unless you already have PR in progress
(Per Kokkos developer meeting Nathan will open a PR)
I'm open a PR once my local testing is complete with kokkos@develop
Fixed by #13521 Thanks
Bug Report
See these two bug reports on the Kokkos side: https://github.com/kokkos/kokkos/issues/7413 and https://github.com/kokkos/kokkos/issues/7415
Following the merge of https://github.com/kokkos/kokkos/pull/7339 where we got rid of the
Kokkos::Impl::Mirror[DRV]Type
trait classes, our Trilinos nightly builds are failing due to Sacado and Stokhos relying on these private implementation details.cc @etphipp @ndellingwood
Description
These are the places in Sacado and Stokhos that need to be updated:
Here you'd probably want to change
Impl::MirrorType -> Impl::MirrorViewType
and there for
DynRankView
you'd wantImpl::MirrorDRVType -> Impl::MirrorDRViewType