/[MITgcm]/MITgcm/doc/tag-index
ViewVC logotype

Diff of /MITgcm/doc/tag-index

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.1234 by jmc, Fri Mar 5 00:44:21 2010 UTC revision 1.1276 by jmc, Thu May 20 03:22:41 2010 UTC
# Line 4  $Name$ Line 4  $Name$
4      Notes on tags used in MITgcmUV      Notes on tags used in MITgcmUV
5      ==============================      ==============================
6    
7    
8    o adjoint of exch-1:
9     - pass high-level EXCH S/R through TAF (eesupp/src/exch_ad_diff.list)
10       (note: was already like this when using EXCH-2) and remove flow dir
11       and hand-written AD version of high-level EXCH S/R (pkg/autodiff);
12     - provide flow-dir for low-level exch1 S/R (eesupp/src/exch1_ad.flow);
13     - update pkg/exch2 diff list.
14    
15    checkpoint62g (2010/05/19)
16    o eesupp/src (exch-1):
17     - split exch_rx.F into Forward S/R (exch1_rx.F) and Adjoint S/R (exch1_rx_ad.F)
18       and remove argument "simulationMode"; same thing for all exch_*rx_cube.F
19       (renamed to exch1_*rx_cube.F).
20     - change accordingly exch_*_rx.template and AD version in pkg/autodiff
21       to call new exch1 S/R ; update Makefile and .cvsignore.
22     - replace call to exch2_xy_rx S/R with exch2_*3d_rx(myNz=1) (will remove
23       exch2_xy_rx later)
24      Note: after updating your code, need to run "make clean" in eesupp/src
25    o test experiment bottom_ctrl_5x5:
26       new output_adm.txt with fewer grdchk & less monitor output.
27    o model/src:
28      remove the call to ini_cori in initialise_varia.F (just keep the usual one
29       in initialise_fixed.F). More consistent with coriolis & horizontal grid
30       beeing treated in the same way (ini_grid is not called a 2nd time).
31    o pkg/exf:
32      - rewrite exf_bulk_largeyeager04.F for better vectorization, changes
33      global_ocean.cs32x15/input.icedyn (11 digits of agreement), updated
34      - fix adjoint (used worked for ALLOW_ATM_WIND defined, works for this now)
35      - cosmetic changes to exf_bulkformulae.F to make it look more like
36        exf_bulk_largeyeager04.F
37    o eesupp/src (exch-1):
38      - Fix AD EXCH code for 2-D domain special cases (Nx=1 or Ny=1).
39      - Separate buffer filling and MPI sending: allow EXCH-1 to work for local
40        array (non-shared) when using MPI+MTH. Also reduces number of BARRIER
41        (even without using MPI).
42      - Message mode: move RecvAck setting (indicator of buffer being ready)
43        from send_put to recv_get S/R (was useless before, but not sure if
44        it's much more useful now);
45      - Switch the order of sync: MPI-proc 1rst and then threads;
46      - take out spin-waiting code (#undef EXCH_USE_SPINNING), use BARRIER instead.
47      - fix AD code for communication mode ='get' (but not used).
48    o model/src:
49      initialise dPhiHydX,dPhiHydY inside calc_grad_phi_hyd.F (so that TAF does
50      not drop it in S/R mddynamics, producing NaN in hs94.1x64x5 AD-test exp).
51    o utils/matlab/rdmnc.m: adapt to be able to use the generic matlab netcdf API
52    o pkg/ctrl: require a specific set of control variables and exf-flags for
53      adjoint of seaice (stop in ctrl_check.F if conditions are not satisfied)
54    o model/src:
55     a) 1rst version of a new driver S/R to turn-off output freq and flags after the
56       1rst forward sweep, to avoid over-writing output files during recomputations
57       recomputations (& grdchk); called from cost_final.F (& ctrl_init_ctrlvar.F ?)
58     b) 2nd version:
59      - add specific pkg S/R for seaice & ptracers (called from S/R TURNOFF_MODEL_IO);
60      - switch-off more output flags (exf_monFreq, chkPtFreq, dumpInitAndLast,
61         writePickupAtEnd) + seaice & ptracers output;
62      - do not switch off MNC flags (otherwise, won't get admonitor netcdf file)
63    o model/src:
64      - new S/R rotate_uv2en_rl (..._rs) that rotates vector fields.
65    o pkg/exch2:
66      - remove "simulationMode" from arg. list of S/R EXCH2_RX1,2_CUBE ;
67      - add argument "signOption" to EXCH2_RX1_CUBE (will be needed for SM exch).
68    o pkg/autodiff & exch2:
69      process exch_uv_agrid_3d_rx.f & exch2_uv_agrid_3d_rx.f through TAF
70      (for now, only if ALLOW_EXCH2 is defined).
71    o pkg/autodiff:
72      - include PACKAGES_CONFIG.h in exch*ad.flow & exch*ad.F
73        (not supposed to be in CPP_OPTIONS.h) to get ALLOW_EXCH2 defined correctly.
74       + clean-up comments (_RS is not always real*4)
75      - fix bug in ADEXCH_UV_3D_RX (without EXCH2, was calling the forward exch S/R)
76      - add a stop in ADEXCH_UV_AGRID_3D_RX if trying to use it with EXCH2:
77        was calling a forward exch2, which is wrong ; used in SEAICE & EXF pkgs.
78    o testreport (AD-tests):
79      no longer link files from dir "../input" (1rst link files from
80      "../input_ad.[xx]" if secondary test "xx" and then from "../input_ad")
81    
82    checkpoint62f (2010/04/29)
83    o model/src/the_main_loop.F:
84      adjust store directives for seaice evp and multicategory according to
85      pkg/ecco/the_main_loop.F
86    o adjoint:
87      global_sum_ad was incomplete (noted many times by many people ;)
88      nice description by Jean U. as follows:
89      * allreduce(var) in global_sum.F can be interpreted as
90        reduce(sum) followed by broadcast of sum.
91      * The adjoint of that is
92        sum(adjoint) followed by broadcast(summed adjoint value)
93        or in other words, allreduce(sum, adjoint vars)
94      We were missing the sum(adjoint)!
95      Benign, except(!) for "global" scalars appearing in tile loops (bi,bj)
96      (noted by J.M. Campin, e.g., in cost_ssh_mean, variable offset).
97      The fix should produce 16-digit accuracy between
98      single-CPU multi-tile (e.g. nSx=2, nPx=1) and
99      multi-CPU single-tile (e.g. nSx=1, nPx-2)
100      We'll probably change this yet again shortly
101    o eesupp/src:
102      - fix global_sum_r4 (wrong from previous modif in Jun 2009; ever used ?)
103    o pkg/icefront
104      - ALLOW_SUBGLACIAL_RUNOFF option adds capability for time-evolving
105        specification of addmass array based on a 2D field, which is added
106        at bottommost wet level at each horizontal location.
107    o model/src:
108     horizontal grid initialisation (other than curvilinear): add code for Exch2 IO
109     layout; (not always compatible with delX,delY setting; commented out for now).
110    o pkg/exch2:
111     change tile to processor setting (case nSy*nPy > 1): allows default model mapping
112     (myX and myYGlobalLow) to be used for simple (1 facet, no blank tile) config.
113    
114    checkpoint62e (2010/04/15)
115    o pkg/obcs:
116      - fix wrong index in OBCS_SPONGE_V for Eastern-OB (reported by David Hebert).
117    o pkg/dic:
118      -fix bug in fe_chem.F for multi-tile (nSx*nSy > 1) set-up;
119        (note: not presently tested in any forward verification exp.)
120       update tutorial_global_oce_biogeo AD output file.
121    o pkg/exf:
122      - account for the variation of albedo as a function of zenith angle
123        by defining ALLOW_ZENITHANGLE in EXF_OPTIONS.h
124    o build_options:
125     - rename "linux_ia64_ifort+mpi_ice_nas" to "linux_amd64_ifort+mpi_ice_nas"
126    o pkg/dic:
127      change DIC atmos-CO2 box (method 3, dic_int1=3) initialisation & restart:
128      - use binary pickup file for restart;
129      - initialise atmos-CO2 box from dic_pCO2 parameter;
130      - fix multi-threaded.
131    o pkg/rbcs:
132     - clean-up RBCS code: add RBCS_OPTIONS.h file ; fix multi-threaded ;
133       change (+ fix IO calls) type of array RBC_mask from _RL to _RS.
134     - add RBCS to exp4 passive tracer 01 (rbcs was previously untested)
135       and update output.txt
136    o pkg/kpp:
137     - add diagnostics for KPP non-local flux of Temp, Salinity and pTracers;
138     - change diagnostic of KPP non-local term: output average of KPPghat*KPPdiffKzS
139       (= ratio of KPP non-local (salt) flux relative to surface-flux) when
140       using pkg/timeave & pkg/diagnostics (diag 'KPPghatK' replaces 'KPPghat ');
141     - change pkg/offline to read-in average KPPghat*KPPdiffKzS from file
142       KPP_ghatKFile (instead of the average of KPPghat from file KPP_ghatFile).
143    o pkg/offline:
144      fix bug in S/R OFFLINE_FIELDS_LOAD regarding surfaceForcing conversion factor
145      (bug was added in version 1.10 on 2007-08-23).
146    o pkg/offline:
147      - no need to specify periodicExternalForcing, etc ... to use offline pack
148      - offline input files no longer just single prec --> parameter offlineLoadPrec
149    o verification/lab_sea:
150      change AD test to multi-tile setup and update all 4 AD output.
151      NOTE: while cost function values remain very similar,
152      gradients are very different, although gradient checks are self-consistent
153      Should try to get to the bottom of this (cost function summation order?)
154    o pkg/dic:
155      in carbon_chem.F, replace log10 (AUTODIFF) with explicit form to avoid
156      a weakness of TAF that drops part of double precision in log10 derivative.
157      <= changes removed since problem has been fixed in current TAF version 1.9.71
158      update AD output of exp. tutorial_dic_adjoffline & tutorial_global_oce_biogeo.
159    o pkg/ecco:
160      add missing "_d 0" in cost_readers.F, cost_readtopex.F & cost_readtopexmean.F
161      update all 4 lab_sea AD output.
162    
163    checkpoint62d (2010/03/22)
164    o build_options:
165      remove '-r8' (and '-i4') from linux_*pgf and linux_*ifort optfiles.
166    o remove unbalanced quote (single or double) in commented line of source code
167      (may cause some warning with some preprocessor/makedepend versions).
168    o pkg/seaice:
169      fix seaice_model.F for adjoint (gael) and update AD results of experiments
170       lab_sea (std + evp + noseaicedyn) and offline_exf_seaice.
171    o testreport:
172      add option '-runonly' (short: '-ro') to just do the run part (without make).
173    o eesupp: remove JAM communication code (obsolete).
174  o add option to genmake2 & testreport to switch "_RS" type to "real*4"  o add option to genmake2 & testreport to switch "_RS" type to "real*4"
175    (if allowed in CPP_EEOPTIONS.h); update default CPP_EEOPTIONS.h and return    (if allowed in CPP_EEOPTIONS.h); update default CPP_EEOPTIONS.h and return
176    to default CPP_EEOPTIONS.h for exp. inverted_barometer & solid-body.cs-32x32x1    to default CPP_EEOPTIONS.h for exp. inverted_barometer & solid-body.cs-32x32x1

Legend:
Removed from v.1.1234  
changed lines
  Added in v.1.1276

  ViewVC Help
Powered by ViewVC 1.1.22