diff --git a/src/KokkosComm_traits.hpp b/src/KokkosComm_traits.hpp index 96d232d6..1d5b860a 100644 --- a/src/KokkosComm_traits.hpp +++ b/src/KokkosComm_traits.hpp @@ -49,18 +49,6 @@ struct Traits { static size_t extent(const View &v, const int i) { return v.extent(i); } static size_t stride(const View &v, const int i) { return v.stride(i); } - template - static void pack(const ExecSpace &space, - const non_const_packed_view_type &dst, const View &src) { - Kokkos::deep_copy(space, dst, src); - } - - template - static void unpack(const ExecSpace &space, const View &dst, - const non_const_packed_view_type &src) { - Kokkos::deep_copy(space, dst, src); - } - static constexpr bool is_reference_counted() { return true; } static constexpr size_t rank() { return View::rank; }