Skip to content

Commit b7a7a71

Browse files
committed
KokkosKernels: patch #2296
SpAdd handle: delete sort_option getter/setter (#2296) SpAdd handle was originally a copy-paste of the spgemm handle way back in #122, and included get_sort_option() and set_sort_option() from spgemm. But these try to use the member bool sort_option, which doesn't exist. Somehow these functions never produced compile errors until someone tried to call them. Fixes build errors on Sunspot.
1 parent ec9e57a commit b7a7a71

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

packages/kokkos-kernels/sparse/src/KokkosSparse_spadd_handle.hpp

-4
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,6 @@ class SPADDHandle {
102102
*/
103103
size_type get_c_nnz() { return this->result_nnz_size; }
104104

105-
void set_sort_option(int option) { this->sort_option = option; }
106-
107-
int get_sort_option() { return this->sort_option; }
108-
109105
#ifdef KOKKOSKERNELS_ENABLE_TPL_CUSPARSE
110106
SpaddCusparseData cusparseData;
111107
#endif

0 commit comments

Comments
 (0)