Skip to content

Commit

Permalink
fix ref
Browse files Browse the repository at this point in the history
  • Loading branch information
RMeli committed Apr 4, 2024
1 parent e8c9e85 commit fd438ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dlaf/eigensolver/tridiag_solver/impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ void TridiagSolver<B, D, T>::call(comm::CommunicatorGrid& grid, Matrix<T, Device
// as complex values where the imaginery part is set to zero.
//
template <Backend B, Device D, class T>
void TridiagSolver<B, D, T>::call(comm::CommunicatorGrid grid, Matrix<T, Device::CPU>& tridiag,
void TridiagSolver<B, D, T>::call(comm::CommunicatorGrid& grid, Matrix<T, Device::CPU>& tridiag,
Matrix<T, D>& evals, Matrix<std::complex<T>, D>& evecs) {
Matrix<T, D> real_evecs(evecs.distribution());
TridiagSolver<B, D, T>::call(grid, tridiag, evals, real_evecs);
Expand Down

0 comments on commit fd438ff

Please sign in to comment.