diff --git a/sparse/impl/KokkosSparse_sptrsv_symbolic_impl.hpp b/sparse/impl/KokkosSparse_sptrsv_symbolic_impl.hpp index ca71baf7ab..15a5ad79d6 100644 --- a/sparse/impl/KokkosSparse_sptrsv_symbolic_impl.hpp +++ b/sparse/impl/KokkosSparse_sptrsv_symbolic_impl.hpp @@ -232,7 +232,6 @@ void lower_tri_symbolic(ExecSpaceIn& space, TriSolveHandle& thandle, // No need to pass in space, chain phase runs on the host symbolic_chain_phase(thandle, nodes_per_level); } - // TODO: continue thandle.set_symbolic_complete(); // Output check @@ -603,16 +602,6 @@ void lower_tri_symbolic(ExecSpaceIn& space, TriSolveHandle& thandle, #endif } // end lower_tri_symbolic -#if 0 // TODO: remove -template -void lower_tri_symbolic(TriSolveHandle& thandle, const RowMapType drow_map, - const EntriesType dentries) { - using ExecutionSpace = typename RowMapType::execution_space; - auto my_exec_space = ExecutionSpace(); - lower_tri_symbolic(my_exec_space, thandle, drow_map, dentries); -} -#endif - template void upper_tri_symbolic(ExecutionSpace& space, TriSolveHandle& thandle, @@ -1086,15 +1075,6 @@ void upper_tri_symbolic(ExecutionSpace& space, TriSolveHandle& thandle, ; #endif } // end upper_tri_symbolic - -#if 0 // TODO: remove -template -void upper_tri_symbolic(TriSolveHandle& thandle, const RowMapType drow_map, - const EntriesType dentries) { - using ExecutionSpace = typename RowMapType::execution_space; - auto my_exec_space = ExecutionSpace(); - upper_tri_symbolic(my_exec_space, thandle, drow_map, dentries); -} #endif } // namespace Experimental