From 299e4b8b49573ca6e469d0bcd0a83eeafb30aa1d Mon Sep 17 00:00:00 2001 From: James Foucar Date: Fri, 3 May 2024 11:47:55 -0600 Subject: [PATCH] BsrMatrix: Fix HostMirror typedef It needed to have size_type. --- sparse/src/KokkosSparse_BsrMatrix.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sparse/src/KokkosSparse_BsrMatrix.hpp b/sparse/src/KokkosSparse_BsrMatrix.hpp index 06a9ad92cf..08df2c55a9 100644 --- a/sparse/src/KokkosSparse_BsrMatrix.hpp +++ b/sparse/src/KokkosSparse_BsrMatrix.hpp @@ -361,7 +361,8 @@ class BsrMatrix { typedef SizeType size_type; //! Type of a host-memory mirror of the sparse matrix. - typedef BsrMatrix + typedef BsrMatrix HostMirror; //! Type of the graph structure of the sparse matrix. typedef Kokkos::StaticCrsGraph