Skip to content

Commit

Permalink
Fix typo in cholesky hdf5 file name (#1198)
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg authored Oct 7, 2024
1 parent 0b1d021 commit 37ed043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dlaf/factorization/cholesky/impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ void Cholesky<backend, device, T>::call_L(comm::CommunicatorGrid& grid, Matrix<T
#ifdef DLAF_WITH_HDF5
static std::atomic<size_t> num_cholesky_calls = 0;
std::stringstream fname;
fname << "cholesky-facrorization-" << matrix::internal::TypeToString_v<T> << "-"
fname << "cholesky-factorization-" << matrix::internal::TypeToString_v<T> << "-"
<< std::to_string(num_cholesky_calls) << ".h5";
std::optional<matrix::internal::FileHDF5> file;

Expand Down

0 comments on commit 37ed043

Please sign in to comment.