/[MITgcm]/MITgcm/tools/adjoint_options/adjoint_diva
ViewVC logotype

Annotation of /MITgcm/tools/adjoint_options/adjoint_diva

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


Revision 1.17 - (hide annotations) (download)
Fri Jan 3 17:11:56 2014 UTC (10 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64s, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint65, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65o, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e
Changes since 1.16: +7 -2 lines
switch to fastopt.net TAF server (instead of default fastopt.de).

1 heimbach 1.1 #!/bin/bash
2     #
3 jmc 1.17 # $Header: /u/gcmpack/MITgcm/tools/adjoint_options/adjoint_diva,v 1.16 2013/08/09 18:28:36 jmc Exp $
4 heimbach 1.1 # $Name: $
5     #
6    
7 jmc 1.16 # This AD option-file contains the default settings for the divided adjoint (DIVA)
8     # and tangent-linear compilers. If you need to change these settings,
9 heimbach 1.1 # please make a separate (local) copy of this file.
10    
11     # TAMC=/data43/ralf/tamc/tamc
12     # TAF=~fastopt/bin/taf
13     # STAF=staf
14    
15     DIVA='true'
16     TAF=staf
17     TAMC=tamc
18    
19 jmc 1.13 AD_TAMC_FLAGS="-reverse -admark ad -i4 -r4 -l tamc_ad.log $AD_TAMC_FLAGS"
20     FTL_TAMC_FLAGS="-forward -ftlmark g_ -i4 -r4 -l tamc_ftl.log $FTL_TAMC_FLAGS"
21     SVD_TAMC_FLAGS="-reverse -forward -pure -i4 -r4 -l tamc_svd.log $SVD_TAMC_FLAGS"
22    
23 jmc 1.17 AD_TAF_FLAGS="-reverse -pure -i4 -r4 -intrinsic system,flush -l taf_ad.log $AD_TAF_FLAGS"
24 jmc 1.13 FTL_TAF_FLAGS="-forward -i4 -r4 -intrinsic system,flush -l taf_ftl.log $FTL_TAF_FLAGS"
25     SVD_TAF_FLAGS="-reverse -forward -pure -i4 -r4 -intrinsic system,flush -l taf_svd.log $SVD_TAF_FLAGS"
26    
27 jmc 1.17 #- switch to fastopt.net TAF server (instead of default fastopt.de):
28     AD_TAF_FLAGS="-server fastopt.net $AD_TAF_FLAGS"
29     FTL_TAF_FLAGS="-server fastopt.net $FTL_TAF_FLAGS"
30     SVD_TAF_FLAGS="-server fastopt.net $SVD_TAF_FLAGS"
31    
32 jmc 1.14 #- using DIVA, we need to show some MPI code to TAF:
33 jmc 1.13 if test "x$MPI" != x ; then
34 heimbach 1.15 AD_TAF_FLAGS="$AD_TAF_FLAGS"' -mpi -include $(LOCAL_MPI_HEADERS) -I./mpi_headers/'
35     FLT_TAF_FLAGS="$FLT_TAF_FLAGS"' -mpi -include $(LOCAL_MPI_HEADERS) -I./mpi_headers/'
36     SVD_TAF_FLAGS="$SVD_TAF_FLAGS"' -mpi -include $(LOCAL_MPI_HEADERS) -I./mpi_headers/'
37 jmc 1.13 fi
38 heimbach 1.1
39     DIFF_FLAGS="-toplevel 'the_main_loop' \
40     -input 'xx_theta_dummy \
41     xx_salt_dummy \
42     xx_tr1_dummy \
43     xx_hflux_dummy \
44     xx_sflux_dummy \
45     xx_tauu_dummy \
46     xx_tauv_dummy \
47     xx_atemp_dummy \
48     xx_aqh_dummy \
49     xx_precip_dummy \
50     xx_swflux_dummy \
51     xx_swdown_dummy \
52     xx_lwflux_dummy \
53     xx_lwdown_dummy \
54     xx_evap_dummy \
55     xx_snowprecip_dummy \
56     xx_apressure_dummy \
57     xx_runoff_dummy \
58     xx_uwind_dummy \
59     xx_vwind_dummy \
60     xx_obcsn_dummy \
61     xx_obcss_dummy \
62     xx_obcsw_dummy \
63     xx_obcse_dummy \
64     xx_sst_dummy \
65     xx_sss_dummy \
66 jmc 1.16 xx_depth_dummy \
67 heimbach 1.1 xx_diffkr_dummy \
68     xx_kapgm_dummy \
69 jmc 1.16 xx_kapredi_dummy \
70 gforget 1.3 xx_bottomdrag_dummy \
71 heimbach 1.1 xx_efluxy_dummy \
72 heimbach 1.2 xx_efluxp_dummy \
73 jmc 1.16 xx_edtaux_dummy \
74     xx_edtauy_dummy \
75 heimbach 1.2 xx_uvel_dummy \
76     xx_vvel_dummy \
77     xx_etan_dummy \
78 jmc 1.16 xx_gen2d_dummy \
79     xx_gen3d_dummy \
80 heimbach 1.10 xx_genarr2d_dummy \
81     xx_genarr3d_dummy \
82 jmc 1.16 xx_gentim2d_dummy \
83     xx_siarea_dummy \
84     xx_siheff_dummy \
85     xx_sihsnow_dummy \
86     xx_shifwflx_dummy \
87 heimbach 1.2 xx_relaxsst_dummy \
88 heimbach 1.9 xx_relaxsss_dummy \
89     xx_atemp_mean_dummy \
90     xx_aqh_mean_dummy \
91     xx_precip_mean_dummy \
92     xx_swdown_mean_dummy \
93     xx_uwind_mean_dummy \
94 jmc 1.16 xx_vwind_mean_dummy' \
95 heimbach 1.1 -output 'fc'"
96    
97     AD_TAMC_FLAGS="$AD_TAMC_FLAGS $DIFF_FLAGS"
98     AD_TAF_FLAGS="$AD_TAF_FLAGS $DIFF_FLAGS"
99    
100     FTL_TAMC_FLAGS="$FTL_TAMC_FLAGS $DIFF_FLAGS"
101     FTL_TAF_FLAGS="$FTL_TAF_FLAGS $DIFF_FLAGS"
102    
103     SVD_TAMC_FLAGS="$SVD_TAMC_FLAGS $DIFF_FLAGS"
104     SVD_TAF_FLAGS="$SVD_TAF_FLAGS $DIFF_FLAGS"

  ViewVC Help
Powered by ViewVC 1.1.22