Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
e10harvey committed Sep 27, 2023
1 parent 381d02a commit b0906c5
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions sparse/impl/KokkosSparse_sptrsv_symbolic_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -603,16 +602,6 @@ void lower_tri_symbolic(ExecSpaceIn& space, TriSolveHandle& thandle,
#endif
} // end lower_tri_symbolic

#if 0 // TODO: remove
template <class TriSolveHandle, class RowMapType, class EntriesType>
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 <class ExecutionSpace, class TriSolveHandle, class RowMapType,
class EntriesType>
void upper_tri_symbolic(ExecutionSpace& space, TriSolveHandle& thandle,
Expand Down Expand Up @@ -1086,15 +1075,6 @@ void upper_tri_symbolic(ExecutionSpace& space, TriSolveHandle& thandle,
;
#endif
} // end upper_tri_symbolic

#if 0 // TODO: remove
template <class TriSolveHandle, class RowMapType, class EntriesType>
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
Expand Down

0 comments on commit b0906c5

Please sign in to comment.