Skip to content

Commit

Permalink
Don't rely on an extra template argument in the latest irlba.
Browse files Browse the repository at this point in the history
This allows us to continue using version 2.0.0 for the time being.
  • Loading branch information
LTLA committed Aug 18, 2024
1 parent 45fccdf commit 2314bc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/umappp/spectral_init.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ bool normalized_laplacian(const NeighborList<Index_, Float_>& edges, int ndim, F
irlba::ParallelSparseMatrix<
decltype(values),
decltype(indices),
decltype(pointers),
Eigen::VectorXd // deliberately double-precision here.
decltype(pointers)
// Eigen::VectorXd // TODO: deliberately double-precision here, but not available in 2.0.0
> mat(nobs, nobs, std::move(values), std::move(indices), std::move(pointers), /* column_major = */ true, nthreads);
irlba::EigenThreadScope tscope(nthreads);

Expand Down

0 comments on commit 2314bc9

Please sign in to comment.