File: 233.html

package info (click to toggle)
petsc 3.2.dfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 124,660 kB
  • sloc: ansic: 342,250; cpp: 62,975; python: 32,761; fortran: 17,337; makefile: 15,867; xml: 621; objc: 594; sh: 492; java: 381; f90: 347; csh: 245
file content (192 lines) | stat: -rw-r--r-- 6,608 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<html>
<body BGCOLOR="FFFFFF">

      <h1> Docs:&nbsp;Changes: 2.3.3</h1>


      <p align="center"><font color="#ff0000" size="5"><a name="CHANGES">CHANGES</a>
in the PETSc 2.3.3</font></p>
      <p><u><b>General:</b></u><br>
      </p>
      <ul>
        <li>&nbsp;PetscInitialize() will now also check for options
in .petscrc unless -skip_petscrc is used (note that since the file
options are checked before the command line you cannot pass
-skip_petscrc on the command line it must be passed in the file passed
into PetscInitialize().</li>
        <li>When a filename is passed into PetscInitialize() ~/.petscrc
and .petscrc are checked ALSO (they used to be skipped when a filename
was passed in) unless -skip_petscrc is passed in the input file</li>
        <li>PetscMapInitialize() has been split into
PetscMapInitialize() that
is called before the Map is ever used and then PetscMapSetUp() which is
called
after the blocksize and local or global size is set and determines the
ranges
etc.</li>
        <li> Changed the use of mpirun throughout the source to
mpiexec; this includes
petscmpirun -&gt; petscmpiexec. Of course, PETSc will still work fine
with MPI implementations that use mpirun.</li>
        <li>Add fortran interface to PetscBag routines<br>
        </li>
      </ul>
      <u><b>config/configure.py:</b></u>
      <ul>
        <li>F90 interface is now enabled by default [if the compiler is
detected to be a f90 compiler]. i.e --with-f90-interface options is not
required. The f90 interface impl used is a new universal one. However
if you wish to use the old compiler specific one, then specify
--with-f90-interface=nof90src [for configure to autodetect] or specify
the appropriate one - like: --with-f90-interface=intel8</li>
      </ul>
      <p><u><b>IS:</b></u></p>
      <ul>
        <li>changed IS_COLORING_LOCAL to IS_COLORING_GLOBAL<u><b></b></u></li>
      </ul>
      <p><u><b>Vec:</b></u></p>
      <p><u><b>VecScatter:<br>
      </b></u></p>
      <ul>
        <li>Change prototype for VecScatterBegin() and VecScatterEnd()
[now the first argument is VecScatter]<br>
        </li>
      </ul>
      <ul>
      </ul>
      <p><u><b>Mat:</b></u><br>
      </p>
      <ul>
        <li>moved most of SNESMF implementation into mat/impls/mffd</li>
        <li>MatMFFD is now a regular matrix type registered in
MatRegisterAll() </li>
        <li>changed SNESMF to MFFD for all previous SNESMF routines,
except MatCreateSNESMF() </li>
        <li>-snes_mf_option changed to -mat_mffd_option except for
-snes_mf and -snes_mf_operator </li>
        <li>SNES_KSP_EW... changed to SNESKSPWE... and
SNES_KSP_EW_ConvCtx to SNESKSPEW</li>
        <li>MatGetRowIJ(), MatGetColumnIJ(),&nbsp; MatRestoreRowIJ(),
MatRestoreColumnIJ() now take an extra argument<br>
        </li>
      </ul>
      <p><u><b>PC:<br>
      </b></u></p>
      <ul>
        <li>changed PCMGSetCycles() and PCMGSetCyclesOnLevel() to
PCMGSetCycleType() and PCMGSetCycleTypeOnLevel() that take a
PCMGCycleType as argument and changed -pc_mg_cycle_type 1 or 2 to
-pc_mg_cycles v or w</li>
        <li>added PCMGMultiplicativeSetCycles() and
-pc_mg_multiplicative_cycles</li>
        <li>PCMGSetInterpolate() --> PCMGSetInterpolation()</li>
        <li>added PCREDUNDANT type, PCRedundantSetNumber() and
-pc_redundant_number</li>
      </ul>
      <ul>
      </ul>
      <ul>
      </ul>
      <p><u><b>KSP:<br>
      </b></u></p>
      <ul>
        <li>Changed KSPNormTypes to have consistant naming , i.e <br>
KSP_NO_NORM -&gt; KSP_NORM_NO<br>
KSP_PRECONDITIONED_NORM -&gt; KSP_NORM_PRECONDITIONED<br>
KSP_UNPRECONDITIONED_NORM -&gt; KSP_NORM_UNPRECONDITIONED<br>
KSP_NATURAL_NORM -&gt; KSP_NORM_NATURAL<br>
          <br>
        </li>
        <li>The following function names are changed to be consistant:<br>
KSPSetMonitor&nbsp; -&gt; KSPMonitorSet<br>
KSPClearMonitor -&gt; KSPMonitorCancel<br>
KSPSingularValueMonitor -&gt; KSPMonitorSingularValue<br>
KSPDefaultMonitor -&gt; KSPMonitorDefault<br>
KSPTrueMonitor -&gt; KSPMonitorTrueResidualNorm<br>
KSPDefaultSMonitor -&gt; KSPMonitorDefaultShort<br>
KSPVecViewMonitor -&gt; KSPMonitorSolution<br>
KSPGMRESKrylovMonitor -&gt; KSPGMRESMonitorKrylov<br>
KSPLGMonitorCreate -&gt; KSPMonitorLGCreate<br>
KSPLGMonitor -&gt; KSPMonitorLG<br>
KSPLGMonitorDestroy -&gt; KSPMonitorLGDestroy<br>
KSPLGTrueMonitorCreate -&gt; KSPMonitorLGTrueResidualNormCreate<br>
KSPLGTrueMonitor -&gt; KSPMonitorLGTrueResidualNorm<br>
KSPLGTrueMonitorDestroy -&gt; KSPMonitorLGTrueResidualNormDestroy<br>
          <br>
        </li>
        <li>Following names are changed<br>
KSP_CONVERGED_STCG_NEG_CURVE -&gt; KSP_CONVERGED_CG_NEG_CURVE<br>
KSP_CONVERGED_STCG_CONSTRAINED -&gt; KSP_CONVERGED_CG_CONSTRAINED<br>
          <br>
        </li>
      </ul>
      <p> </p>
      <ul>
      </ul>
      <p> </p>
      <ul>
      </ul>
      <p><u><b>SNES:</b></u></p>
      <ul>
      </ul>
      <ul>
      </ul>
      <p><u><b>TS:</b></u><br>
      </p>
      <ul>
        <li>TSSetRHSMatrix() and TSSetLHSMatrix() were replaced by
TSSetMatrices()</li>
        <li>TSGetRHSMatrix() was replaced by TSGetMatrices()</li>
      </ul>
      <p><u><b>DA:</b></u><br>
      </p>
      <ul>
      </ul>
      <p><u><b>DMMG:</b></u><br>
      </p>
      <ul>
      </ul>
      <p><u><b>SYS:</b></u><br>
      </p>
      <p><u><b>AO:<br>
      </b></u></p>
      <ul>
        <li>AOData object and corresponding functionality is now
removed for PETSc<br>
        </li>
      </ul>
      <p><u><b>Sieve:</b></u><br>
      </p>
      <ul>
        <li>Added support for 2D and 3D mesh generation and refinement</li>
        <li>Added support for mesh partitioning and distribution</li>
        <li>Added support for partitioning based upon arbitrary
dimensional entities, e.g. vertices, faces, etc.</li>
        <li>Added support for FIAT element generation</li>
        <li>Added support for higher order elements</li>
        <li>Added Poisson problem example in separate repository</li>
      </ul>
      <p><u><b>Fortran:</b></u><br>
      </p>
      <ul>
      </ul>
      <p><u><b><a
 href="http://www.mcs.anl.gov/petsc/petsc-as/miscellaneous/external.html">ExternalPackages</a>:</b></u></p>
      <ul>
        <li>Hypre interface is updated to use version 2.0.0</li>
        <li>Mumps interface is updated to use version 4.7.3</li>
        <li>fftw interface is updated to use v3.2alpha2<br>
        </li>
      </ul>
      </td>
    </tr>
    <tr>
      <td colspan="2" width="100%">
      <hr color="#ff5b5b" size="4"> </td>
    </tr>
  </tbody>
</table>
</body>
</html>
</body>
</html>