Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandr-Solovev committed Nov 21, 2024
1 parent 4c88001 commit 6f75e43
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cpp/oneapi/dal/backend/primitives/lapack/test/syevd_dpc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,12 +201,12 @@ TEMPLATE_LIST_TEST_M(syevd_test, "test syevd with pos def matrix", "[sym_eigvals
this->check_eigvals_with_eigen(s, eigenvectors, eigenvalues);
}

// TEMPLATE_LIST_TEST_M(syevd_test, "test syevd with pos def matrix 2", "[sym_eigvals]", eigen_types) {
// const auto s = this->generate_symmetric_positive();
TEMPLATE_LIST_TEST_M(syevd_test, "test syevd with pos def matrix 2", "[sym_eigvals]", eigen_types) {
const auto s = this->generate_symmetric_positive();

// const auto [eigenvectors, eigenvalues] = this->call_sym_eigvals_inplace_descending(s);
const auto [eigenvectors, eigenvalues] = this->call_sym_eigvals_inplace_descending(s);

// this->check_eigvals_are_descending(eigenvalues);
// }
this->check_eigvals_are_descending(eigenvalues);
}

} // namespace oneapi::dal::backend::primitives::test

0 comments on commit 6f75e43

Please sign in to comment.