Skip to content

Commit

Permalink
Add issue number in code
Browse files Browse the repository at this point in the history
  • Loading branch information
lowener committed Nov 18, 2024
1 parent 45ee43f commit 4d0d4e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cpp/include/raft/sparse/solver/lanczos.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ namespace raft::sparse::solver {
* @param v0 Optional Initial lanczos vector
* @param eigenvalues output eigenvalues
* @param eigenvectors output eigenvectors
* @todo Add largest eigenvalues computation (issue #2483)
* @return Zero if successful. Otherwise non-zero.
*/
template <typename IndexTypeT, typename ValueTypeT>
Expand Down Expand Up @@ -65,6 +66,7 @@ auto lanczos_compute_smallest_eigenvectors(
* @param v0 Optional Initial lanczos vector
* @param eigenvalues output eigenvalues
* @param eigenvectors output eigenvectors
* @todo Add largest eigenvalues computation (issue #2483)
* @return Zero if successful. Otherwise non-zero.
*/
template <typename IndexTypeT, typename ValueTypeT>
Expand Down
1 change: 1 addition & 0 deletions cpp/test/sparse/solver/lanczos.cu
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ class lanczos_tests : public ::testing::TestWithParam<lanczos_inputs<IndexType,
raft::device_vector<ValueType, uint32_t, raft::col_major> expected_eigenvalues;
};

// TODO: Find a way to generate and validate test data without hardcoding them (issue #2485)
const std::vector<lanczos_inputs<int, float>> inputsf = {
{2,
34,
Expand Down

0 comments on commit 4d0d4e8

Please sign in to comment.