Skip to content

Commit

Permalink
fix mpi test
Browse files Browse the repository at this point in the history
  • Loading branch information
nychiang committed Oct 29, 2023
1 parent 86d0b8e commit 6e9aad2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Optimization/hiopHessianLowRank.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1364,13 +1364,13 @@ void hiopHessianInvLowRank_obsolette::
symmetricTimesMat(double beta, hiopMatrixDense& W,
double alpha, const hiopMatrixDense& X)
{
size_type l = St->m();
size_type k = W.m();
size_type l = St->m(); (void)l;
size_type k = W.m(); (void)k;
#ifndef NDEBUG
size_type n=St->n();
assert(n==H0->get_size());
assert(k==W.n());
assert(l==Yt->m());
assert(l==Yt->m());
assert(n==H0->get_size());
assert(n==Yt->n()); assert(n==St->n());
assert(k==X.m()); assert(n==X.n());
#endif
Expand Down

0 comments on commit 6e9aad2

Please sign in to comment.