diff --git a/perf_test/sparse/KokkosSparse_spmv_struct.cpp b/perf_test/sparse/KokkosSparse_spmv_struct.cpp index 1e95bd7de5..9b11ee9737 100644 --- a/perf_test/sparse/KokkosSparse_spmv_struct.cpp +++ b/perf_test/sparse/KokkosSparse_spmv_struct.cpp @@ -244,7 +244,7 @@ int main(int argc, char **argv) { if (check_errors) { h_y_compare = Kokkos::create_mirror(y); - typename matrix_type::StaticCrsGraphType::HostMirror h_graph = Kokkos::create_mirror(A.graph); + typename matrix_type::StaticCrsGraphType::HostMirror h_graph = KokkosSparse::create_mirror(A.graph); typename matrix_type::values_type::HostMirror h_values = Kokkos::create_mirror_view(A.values); // Error Check Gold Values diff --git a/perf_test/sparse/KokkosSparse_spmv_struct_tuning.cpp b/perf_test/sparse/KokkosSparse_spmv_struct_tuning.cpp index 3a857fcb23..0dce5ffc8c 100644 --- a/perf_test/sparse/KokkosSparse_spmv_struct_tuning.cpp +++ b/perf_test/sparse/KokkosSparse_spmv_struct_tuning.cpp @@ -395,7 +395,7 @@ int main(int argc, char** argv) { if (check_errors) { h_y_compare = Kokkos::create_mirror(y); - typename matrix_type::StaticCrsGraphType::HostMirror h_graph = Kokkos::create_mirror(A.graph); + typename matrix_type::StaticCrsGraphType::HostMirror h_graph = KokkosSparse::create_mirror(A.graph); typename matrix_type::values_type::HostMirror h_values = Kokkos::create_mirror_view(A.values); // Error Check Gold Values diff --git a/perf_test/sparse/KokkosSparse_spmv_test.cpp b/perf_test/sparse/KokkosSparse_spmv_test.cpp index eb3b56f790..3db04e0cfc 100644 --- a/perf_test/sparse/KokkosSparse_spmv_test.cpp +++ b/perf_test/sparse/KokkosSparse_spmv_test.cpp @@ -64,7 +64,7 @@ SPMVTestData setup_test(spmv_additional_data* data, SPMVTestData::matrix_type A, test_data.h_y = Kokkos::create_mirror_view(y); test_data.h_y_compare = Kokkos::create_mirror(y); - h_graph_type h_graph = Kokkos::create_mirror(test_data.A.graph); + h_graph_type h_graph = KokkosSparse::create_mirror(test_data.A.graph); h_values_type h_values = Kokkos::create_mirror_view(test_data.A.values); for (int i = 0; i < test_data.numCols; i++) { diff --git a/sparse/src/KokkosSparse_StaticCrsGraph.hpp b/sparse/src/KokkosSparse_StaticCrsGraph.hpp index 7330f36e27..c0174129c9 100644 --- a/sparse/src/KokkosSparse_StaticCrsGraph.hpp +++ b/sparse/src/KokkosSparse_StaticCrsGraph.hpp @@ -162,8 +162,7 @@ struct GraphRowViewConst { public: /// \brief Constructor /// - /// \param values [in] Array of the row's values. - /// \param colidx [in] Array of the row's column indices. + /// \param colidx_in [in] Array of the row's column indices. /// \param stride [in] (Constant) stride between matrix entries in /// each of the above arrays. /// \param count [in] Number of entries in the row. @@ -173,7 +172,7 @@ struct GraphRowViewConst { /// \brief Constructor with offset into \c colidx array /// - /// \param colidx [in] Array of the row's column indices. + /// \param colidx_in [in] Array of the row's column indices. /// \param stride [in] (Constant) stride between matrix entries in /// each of the above arrays. /// \param count [in] Number of entries in the row.