You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
computes the value of the adjoint of L1 at gradf1_L1diff and copies the value to gradf1_diff!
This happens with the invocation of Matrix::operator=. Notice that would be different to do
In
FBCache
the following piece of code has the following problem:The line
allocates memory for a dense matrix. Then, line
gradf1_diff = m_prob.L1()->callAdjoint(gradf1_L1diff);
computes the value of the adjoint of
L1
atgradf1_L1diff
and copies the value togradf1_diff
!This happens with the invocation of
Matrix::operator=
. Notice that would be different to doMatrix gradf1_diff = m_prob.L1()->callAdjoint(gradf1_L1diff);
The text was updated successfully, but these errors were encountered: