11 #ifndef OOPS_ASSIMILATION_HESSIANMATRIX_H_
12 #define OOPS_ASSIMILATION_HESSIANMATRIX_H_
17 #include <boost/noncopyable.hpp>
22 #include "oops/util/PrintAdjTest.h"
25 template<
typename MODEL>
class JqTermTLAD;
34 template<
typename MODEL,
typename OBS>
class HessianMatrix :
private boost::noncopyable {
52 template<
typename MODEL,
typename OBS>
54 : j_(j), test_(
test), iter_(0)
59 template<
typename MODEL,
typename OBS>
66 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
67 j_.jterm(jj).setPostProcTL(dx, costtl);
72 j_.runTLM(mdx, costtl);
83 j_.jb().finalizeTL(dx, dw);
84 j_.jb().multiplyBinv(dw, tmp);
85 j_.jb().initializeAD(dz, tmp, costad);
93 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
94 std::unique_ptr<GeneralizedDepartures> wtmp = j_.jterm(jj).newDualVector();
95 j_.jterm(jj).computeCostTL(dx, *wtmp);
96 zz.
append(j_.jterm(jj).multiplyCoInv(*wtmp));
97 j_.jterm(jj).computeCostAD(zz.
getv(jj), dw, costad);
98 if (test_) ww.
append(std::move(wtmp));
102 j_.runADJ(dw, costad);
104 j_.jb().finalizeAD();
105 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
106 j_.jterm(jj).setPostProcAD();
111 double adj_tst_fwd = dot_product(ww, zz);
113 double adj_tst_bwd = dot_product(dx, dw);
115 Log::info() <<
"Online adjoint test, iteration: " << iter_ << std::endl
116 << util::PrintAdjTest(adj_tst_fwd, adj_tst_bwd,
"G") << std::endl;
void zero()
Linear algebra operators.
Container of dual space vectors for all terms of the cost function.
void append(std::unique_ptr< GeneralizedDepartures > &&)
std::shared_ptr< const GeneralizedDepartures > getv(const unsigned) const
ControlIncrement< MODEL, OBS > CtrlInc_
HessianMatrix(const CostFct_ &j, const bool test=false)
void multiply(const CtrlInc_ &dx, CtrlInc_ &dz) const
JqTermTLAD< MODEL > JqTermTLAD_
CostFunction< MODEL, OBS > CostFct_
Control model post processing.
The namespace for the main oops code.