Skip to content

Commit

Permalink
Sync DDC
Browse files Browse the repository at this point in the history
  • Loading branch information
tpadioleau committed Nov 16, 2023
1 parent 3e0a2c5 commit 1c81b31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions vendor/ddc/include/ddc/kernels/splines/matrix_sparse.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#include <Kokkos_Core.hpp>

#include "ddc/misc/ginkgo_executors.hpp"
#include "ginkgo/core/matrix/dense.hpp"

#include "matrix.hpp"
Expand Down
4 changes: 2 additions & 2 deletions vendor/ddc/include/ddc/mirror.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace ddc {
/// Returns a new `Chunk` with the same layout as `src` allocated on the memory space `Space::memory_space`.
template <class Space, class ElementType, class Support, class Layout, class MemorySpace>
auto create_mirror(
Space const& space,
[[maybe_unused]] Space const& space,
ChunkSpan<ElementType, Support, Layout, MemorySpace> const& src)
{
return Chunk<
Expand All @@ -34,7 +34,7 @@ auto create_mirror(ChunkSpan<ElementType, Support, Layout, MemorySpace> const& s
/// Returns a new `Chunk` with the same layout as `src` allocated on the memory space `Space::memory_space` and operates a deep copy between the two.
template <class Space, class ElementType, class Support, class Layout, class MemorySpace>
auto create_mirror_and_copy(
Space const& space,
[[maybe_unused]] Space const& space,
ChunkSpan<ElementType, Support, Layout, MemorySpace> const& src)
{
Chunk<std::remove_const_t<ElementType>,
Expand Down

0 comments on commit 1c81b31

Please sign in to comment.