Salome HOME
Updating copyright date information
[modules/adao.git] / src / daComposant / daAlgorithms / ParallelFunctionTest.py
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2008-2022 EDF R&D
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21 # Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
22
23 import sys, logging
24 from daCore import BasicObjects, PlatformInfo
25 import numpy, copy
26 mpr = PlatformInfo.PlatformInfo().MachinePrecision()
27 mfp = PlatformInfo.PlatformInfo().MaximumPrecision()
28 if sys.version_info.major > 2:
29     unicode = str
30
31 # ==============================================================================
32 class ElementaryAlgorithm(BasicObjects.Algorithm):
33     def __init__(self):
34         BasicObjects.Algorithm.__init__(self, "PARALLELFUNCTIONTEST")
35         self.defineRequiredParameter(
36             name     = "NumberOfPrintedDigits",
37             default  = 5,
38             typecast = int,
39             message  = "Nombre de chiffres affichés pour les impressions de réels",
40             minval   = 0,
41             )
42         self.defineRequiredParameter(
43             name     = "NumberOfRepetition",
44             default  = 1,
45             typecast = int,
46             message  = "Nombre de fois où l'exécution de la fonction est répétée",
47             minval   = 1,
48             )
49         self.defineRequiredParameter(
50             name     = "ResultTitle",
51             default  = "",
52             typecast = str,
53             message  = "Titre du tableau et de la figure",
54             )
55         self.defineRequiredParameter(
56             name     = "SetDebug",
57             default  = False,
58             typecast = bool,
59             message  = "Activation du mode debug lors de l'exécution",
60             )
61         self.defineRequiredParameter(
62             name     = "StoreSupplementaryCalculations",
63             default  = [],
64             typecast = tuple,
65             message  = "Liste de calculs supplémentaires à stocker et/ou effectuer",
66             listval  = [
67                 "CurrentState",
68                 "SimulatedObservationAtCurrentState",
69                 ]
70             )
71         self.requireInputArguments(
72             mandatory= ("Xb", "HO"),
73             )
74         self.setAttributes(tags=(
75             "Checking",
76             ))
77
78     def run(self, Xb=None, Y=None, U=None, HO=None, EM=None, CM=None, R=None, B=None, Q=None, Parameters=None):
79         self._pre_run(Parameters, Xb, Y, U, HO, EM, CM, R, B, Q)
80         #
81         Hm = HO["Direct"].appliedTo
82         #
83         Xn = copy.copy( Xb )
84         #
85         # ----------
86         __marge =  5*u" "
87         _p = self._parameters["NumberOfPrintedDigits"]
88         if len(self._parameters["ResultTitle"]) > 0:
89             __rt = unicode(self._parameters["ResultTitle"])
90             msgs  = u"\n"
91             msgs +=  __marge + "====" + "="*len(__rt) + "====\n"
92             msgs +=  __marge + "    " + __rt + "\n"
93             msgs +=  __marge + "====" + "="*len(__rt) + "====\n"
94             print("%s"%msgs)
95         #
96         msgs  = ("===> Information before launching:\n")
97         msgs += ("     -----------------------------\n")
98         msgs += ("     Characteristics of input vector X, internally converted:\n")
99         msgs += ("       Type...............: %s\n")%type( Xn )
100         msgs += ("       Lenght of vector...: %i\n")%max(numpy.matrix( Xn ).shape)
101         msgs += ("       Minimum value......: %."+str(_p)+"e\n")%numpy.min( Xn )
102         msgs += ("       Maximum value......: %."+str(_p)+"e\n")%numpy.max( Xn )
103         msgs += ("       Mean of vector.....: %."+str(_p)+"e\n")%numpy.mean( Xn, dtype=mfp )
104         msgs += ("       Standard error.....: %."+str(_p)+"e\n")%numpy.std( Xn, dtype=mfp )
105         msgs += ("       L2 norm of vector..: %."+str(_p)+"e\n")%numpy.linalg.norm( Xn )
106         print(msgs)
107         #
108         print("     %s\n"%("-"*75,))
109         if self._parameters["SetDebug"]:
110             CUR_LEVEL = logging.getLogger().getEffectiveLevel()
111             logging.getLogger().setLevel(logging.DEBUG)
112             print("===> Beginning of evaluation, activating debug\n")
113         else:
114             print("===> Beginning of evaluation, without activating debug\n")
115         #
116         Xs = []
117         Ys = []
118         for i in range(self._parameters["NumberOfRepetition"]):
119             if self._toStore("CurrentState"):
120                 self.StoredVariables["CurrentState"].store( numpy.ravel(Xn) )
121             Xs.append( Xn )
122         #
123         # ----------
124         HO["Direct"].disableAvoidingRedundancy()
125         # ----------
126         Ys = Hm( Xs, argsAsSerie = True )
127         # ----------
128         HO["Direct"].enableAvoidingRedundancy()
129         # ----------
130         #
131         print()
132         if self._parameters["SetDebug"]:
133             print("===> End of evaluation, deactivating debug\n")
134             logging.getLogger().setLevel(CUR_LEVEL)
135         else:
136             print("===> End of evaluation, without deactivating debug\n")
137         #
138         for i in range(self._parameters["NumberOfRepetition"]):
139             print("     %s\n"%("-"*75,))
140             if self._parameters["NumberOfRepetition"] > 1:
141                 print("===> Repetition step number %i on a total of %i\n"%(i+1,self._parameters["NumberOfRepetition"]))
142             #
143             Yn = Ys[i]
144             msgs  = ("===> Information after evaluation:\n")
145             msgs += ("\n     Characteristics of simulated output vector Y=H(X), to compare to others:\n")
146             msgs += ("       Type...............: %s\n")%type( Yn )
147             msgs += ("       Lenght of vector...: %i\n")%max(numpy.matrix( Yn ).shape)
148             msgs += ("       Minimum value......: %."+str(_p)+"e\n")%numpy.min( Yn )
149             msgs += ("       Maximum value......: %."+str(_p)+"e\n")%numpy.max( Yn )
150             msgs += ("       Mean of vector.....: %."+str(_p)+"e\n")%numpy.mean( Yn, dtype=mfp )
151             msgs += ("       Standard error.....: %."+str(_p)+"e\n")%numpy.std( Yn, dtype=mfp )
152             msgs += ("       L2 norm of vector..: %."+str(_p)+"e\n")%numpy.linalg.norm( Yn )
153             print(msgs)
154             if self._toStore("SimulatedObservationAtCurrentState"):
155                 self.StoredVariables["SimulatedObservationAtCurrentState"].store( numpy.ravel(Yn) )
156         #
157         if self._parameters["NumberOfRepetition"] > 1:
158             msgs  = ("     %s\n"%("-"*75,))
159             msgs += ("\n===> Statistical analysis of the outputs obtained through parallel repeated evaluations\n")
160             msgs += ("\n     (Remark: numbers that are (about) under %.0e represent 0 to machine precision)\n"%mpr)
161             Yy = numpy.array( Ys )
162             msgs += ("\n     Characteristics of the whole set of outputs Y:\n")
163             msgs += ("       Number of evaluations.........................: %i\n")%len( Ys )
164             msgs += ("       Minimum value of the whole set of outputs.....: %."+str(_p)+"e\n")%numpy.min( Yy )
165             msgs += ("       Maximum value of the whole set of outputs.....: %."+str(_p)+"e\n")%numpy.max( Yy )
166             msgs += ("       Mean of vector of the whole set of outputs....: %."+str(_p)+"e\n")%numpy.mean( Yy, dtype=mfp )
167             msgs += ("       Standard error of the whole set of outputs....: %."+str(_p)+"e\n")%numpy.std( Yy, dtype=mfp )
168             Ym = numpy.mean( numpy.array( Ys ), axis=0, dtype=mfp )
169             msgs += ("\n     Characteristics of the vector Ym, mean of the outputs Y:\n")
170             msgs += ("       Size of the mean of the outputs...............: %i\n")%Ym.size
171             msgs += ("       Minimum value of the mean of the outputs......: %."+str(_p)+"e\n")%numpy.min( Ym )
172             msgs += ("       Maximum value of the mean of the outputs......: %."+str(_p)+"e\n")%numpy.max( Ym )
173             msgs += ("       Mean of the mean of the outputs...............: %."+str(_p)+"e\n")%numpy.mean( Ym, dtype=mfp )
174             msgs += ("       Standard error of the mean of the outputs.....: %."+str(_p)+"e\n")%numpy.std( Ym, dtype=mfp )
175             Ye = numpy.mean( numpy.array( Ys ) - Ym, axis=0, dtype=mfp )
176             msgs += "\n     Characteristics of the mean of the differences between the outputs Y and their mean Ym:\n"
177             msgs += ("       Size of the mean of the differences...........: %i\n")%Ym.size
178             msgs += ("       Minimum value of the mean of the differences..: %."+str(_p)+"e\n")%numpy.min( Ye )
179             msgs += ("       Maximum value of the mean of the differences..: %."+str(_p)+"e\n")%numpy.max( Ye )
180             msgs += ("       Mean of the mean of the differences...........: %."+str(_p)+"e\n")%numpy.mean( Ye, dtype=mfp )
181             msgs += ("       Standard error of the mean of the differences.: %."+str(_p)+"e\n")%numpy.std( Ye, dtype=mfp )
182             msgs += ("\n     %s\n"%("-"*75,))
183             print(msgs)
184         #
185         self._post_run(HO)
186         return 0
187
188 # ==============================================================================
189 if __name__ == "__main__":
190     print('\n AUTODIAGNOSTIC\n')