11 #ifndef OOPS_ASSIMILATION_HBHTMATRIX_H_
12 #define OOPS_ASSIMILATION_HBHTMATRIX_H_
17 #include <boost/noncopyable.hpp>
23 #include "oops/util/PrintAdjTest.h"
35 template<
typename MODEL,
typename OBS>
class HBHtMatrix :
private boost::noncopyable {
53 template<
typename MODEL,
typename OBS>
55 : j_(j), test_(
test), iter_(0)
60 template<
typename MODEL,
typename OBS>
69 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
70 j_.jterm(jj).computeCostAD(dy.
getv(jj), ww, costad);
72 j_.runADJ(ww, costad);
73 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
74 j_.jterm(jj).setPostProcAD();
79 j_.jb().multiplyB(ww, zz);
83 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
84 j_.jterm(jj).setPostProcTL(zz, costtl);
88 j_.runTLM(mzz, costtl);
92 for (
unsigned jj = 0; jj < j_.nterms(); ++jj) {
93 std::unique_ptr<GeneralizedDepartures> ztmp = j_.jterm(jj).newDualVector();
94 j_.jterm(jj).computeCostTL(zz, *ztmp);
95 dz.
append(std::move(ztmp));
101 double adj_tst_fwd = dot_product(dz, dy);
103 double adj_tst_bwd = dot_product(zz, ww);
105 Log::info() <<
"Online adjoint test, iteration: " << iter_ << std::endl
106 << util::PrintAdjTest(adj_tst_fwd, adj_tst_bwd,
"G") << std::endl;
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
void multiply(const Dual_ &dy, Dual_ &dz) const
DualVector< MODEL, OBS > Dual_
ControlIncrement< MODEL, OBS > CtrlInc_
CostFunction< MODEL, OBS > CostFct_
HBHtMatrix(const CostFct_ &j, const bool test=false)
Control model post processing.
The namespace for the main oops code.