From 7369e94ac1e8d026e52f7737f04f2c0a7567db3e Mon Sep 17 00:00:00 2001 From: Nathan Ellingwood Date: Thu, 12 Dec 2024 17:31:31 -0700 Subject: [PATCH] Workaround issue #2455 Signed-off-by: Nathan Ellingwood --- sparse/src/KokkosSparse_StaticCrsGraph.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sparse/src/KokkosSparse_StaticCrsGraph.hpp b/sparse/src/KokkosSparse_StaticCrsGraph.hpp index c0174129c9..ed2c3b2467 100644 --- a/sparse/src/KokkosSparse_StaticCrsGraph.hpp +++ b/sparse/src/KokkosSparse_StaticCrsGraph.hpp @@ -26,6 +26,8 @@ #undef KOKKOS_IMPL_DO_NOT_WARN_INCLUDE_STATIC_CRS_GRAPH namespace KokkosSparse { +using Kokkos::create_mirror; +using Kokkos::create_mirror_view; using Kokkos::create_staticcrsgraph; using Kokkos::GraphRowViewConst; using Kokkos::maximum_entry;