zmc
2023-10-12 ed135d79df12a2466b52dae1a82326941211dcc9
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
U
O±dL8ã@sjdZddlZddlZddlZddlmZddlmZm    Z    m
Z
m Z m Z m Z mZmZmZmZmZmZddlmZddd    d
d d d dgZe    e
e e e edœZdd„e ¡DƒZedƒd!dd„ƒZedƒdd„ƒZedƒdd    „ƒZedƒdd
„ƒZedƒdd „ƒZedƒdd „ƒZGdd„dƒZeƒZ edƒGdd „d ej!ƒƒZ"dd„Z#e#ƒej$dddZ%edƒej&d d„ƒƒZ'dS)"z}
Functions for changing global ufunc configuration
 
This provides helpers which wrap `umath.geterrobj` and `umath.seterrobj`
éNé)Ú
set_module) ÚUFUNC_BUFSIZE_DEFAULTÚ
ERR_IGNOREÚERR_WARNÚ    ERR_RAISEÚERR_CALLÚ    ERR_PRINTÚERR_LOGÚ ERR_DEFAULTÚSHIFT_DIVIDEBYZEROÚSHIFT_OVERFLOWÚSHIFT_UNDERFLOWÚ SHIFT_INVALID)ÚumathÚseterrÚgeterrÚ
setbufsizeÚ
getbufsizeÚ
seterrcallÚ
geterrcallÚerrstateÚ_no_nep50_warning)ÚignoreÚwarnÚraiseÚcallÚprintÚlogcCsi|]\}}||“qS©r)Ú.0ÚkeyÚvaluerrúOd:\z\workplace\vscode\pyvenv\venv\Lib\site-packages\numpy/core/_ufunc_config.pyÚ
<dictcomp>sr$ÚnumpycCs¤t ¡}tƒ}|dkr"|p |d}|dkr6|p4|d}|dkrJ|pH|d}|dkr^|p\|d}t|t>t|t>t|t>t|t>}||d<t |¡|S)a
    Set how floating-point errors are handled.
 
    Note that operations on integer scalar types (such as `int16`) are
    handled like floating point, and are affected by these settings.
 
    Parameters
    ----------
    all : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
        Set treatment for all types of floating-point errors at once:
 
        - ignore: Take no action when the exception occurs.
        - warn: Print a `RuntimeWarning` (via the Python `warnings` module).
        - raise: Raise a `FloatingPointError`.
        - call: Call a function specified using the `seterrcall` function.
        - print: Print a warning directly to ``stdout``.
        - log: Record error in a Log object specified by `seterrcall`.
 
        The default is not to change the current behavior.
    divide : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
        Treatment for division by zero.
    over : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
        Treatment for floating-point overflow.
    under : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
        Treatment for floating-point underflow.
    invalid : {'ignore', 'warn', 'raise', 'call', 'print', 'log'}, optional
        Treatment for invalid floating-point operation.
 
    Returns
    -------
    old_settings : dict
        Dictionary containing the old settings.
 
    See also
    --------
    seterrcall : Set a callback function for the 'call' mode.
    geterr, geterrcall, errstate
 
    Notes
    -----
    The floating-point exceptions are defined in the IEEE 754 standard [1]_:
 
    - Division by zero: infinite result obtained from finite numbers.
    - Overflow: result too large to be expressed.
    - Underflow: result so close to zero that some precision
      was lost.
    - Invalid operation: result is not an expressible number, typically
      indicates that a NaN was produced.
 
    .. [1] https://en.wikipedia.org/wiki/IEEE_754
 
    Examples
    --------
    >>> old_settings = np.seterr(all='ignore')  #seterr to known value
    >>> np.seterr(over='raise')
    {'divide': 'ignore', 'over': 'ignore', 'under': 'ignore', 'invalid': 'ignore'}
    >>> np.seterr(**old_settings)  # reset to default
    {'divide': 'ignore', 'over': 'raise', 'under': 'ignore', 'invalid': 'ignore'}
 
    >>> np.int16(32000) * np.int16(3)
    30464
    >>> old_settings = np.seterr(all='warn', over='raise')
    >>> np.int16(32000) * np.int16(3)
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    FloatingPointError: overflow encountered in scalar multiply
 
    >>> old_settings = np.seterr(all='print')
    >>> np.geterr()
    {'divide': 'print', 'over': 'print', 'under': 'print', 'invalid': 'print'}
    >>> np.int16(32000) * np.int16(3)
    30464
 
    NÚdivideÚoverÚunderÚinvalidr)    rÚ    geterrobjrÚ_errdictr r rrÚ    seterrobj)Úallr&r'r(r)ÚpyvalsÚoldÚ    maskvaluerrr#r!s(M    
 
ÿ
þ
ý
cCsxt ¡d}d}i}|t?|@}t||d<|t?|@}t||d<|t?|@}t||d<|t?|@}t||d<|S)að
    Get the current way of handling floating-point errors.
 
    Returns
    -------
    res : dict
        A dictionary with keys "divide", "over", "under", and "invalid",
        whose values are from the strings "ignore", "print", "log", "warn",
        "raise", and "call". The keys represent possible floating-point
        exceptions, and the values define how these exceptions are handled.
 
    See Also
    --------
    geterrcall, seterr, seterrcall
 
    Notes
    -----
    For complete documentation of the types of floating-point exceptions and
    treatment options, see `seterr`.
 
    Examples
    --------
    >>> np.geterr()
    {'divide': 'warn', 'over': 'warn', 'under': 'ignore', 'invalid': 'warn'}
    >>> np.arange(3.) / np.arange(3.)
    array([nan,  1.,  1.])
 
    >>> oldsettings = np.seterr(all='warn', over='raise')
    >>> np.geterr()
    {'divide': 'warn', 'over': 'raise', 'under': 'warn', 'invalid': 'warn'}
    >>> np.arange(3.) / np.arange(3.)
    array([nan,  1.,  1.])
 
    rér&r'r(r))rr*r Ú _errdict_revr rr)r0ÚmaskÚresÚvalrrr#r„s$         cCsd|dkrtd|ƒ‚|dkr(td|ƒ‚|ddkr@td|ƒ‚t ¡}tƒ}||d<t |¡|S)z{
    Set the size of the buffer used in ufuncs.
 
    Parameters
    ----------
    size : int
        Size of buffer.
 
    gÐcAzBuffer size, %s, is too big.ézBuffer size, %s, is too small.érz)Buffer size, %s, is not a multiple of 16.)Ú
ValueErrorrr*rr,)Úsizer.r/rrr#r¶s     
cCs t ¡dS)z
    Return the size of the buffer used in ufuncs.
 
    Returns
    -------
    getbufsize : int
        Size of ufunc buffer in bytes.
 
    r©rr*rrrr#rÏs cCs\|dk    r8t|tjjƒs8t|dƒr0t|jtjjƒs8tdƒ‚t ¡}t    ƒ}||d<t 
|¡|S)aÇ    
    Set the floating-point error callback function or log object.
 
    There are two ways to capture floating-point error messages.  The first
    is to set the error-handler to 'call', using `seterr`.  Then, set
    the function to call using this function.
 
    The second is to set the error-handler to 'log', using `seterr`.
    Floating-point errors then trigger a call to the 'write' method of
    the provided object.
 
    Parameters
    ----------
    func : callable f(err, flag) or object with write method
        Function to call upon floating-point errors ('call'-mode) or
        object whose 'write' method is used to log such message ('log'-mode).
 
        The call function takes two arguments. The first is a string describing
        the type of error (such as "divide by zero", "overflow", "underflow",
        or "invalid value"), and the second is the status flag.  The flag is a
        byte, whose four least-significant bits indicate the type of error, one
        of "divide", "over", "under", "invalid"::
 
          [0 0 0 0 divide over under invalid]
 
        In other words, ``flags = divide + 2*over + 4*under + 8*invalid``.
 
        If an object is provided, its write method should take one argument,
        a string.
 
    Returns
    -------
    h : callable, log instance or None
        The old error handler.
 
    See Also
    --------
    seterr, geterr, geterrcall
 
    Examples
    --------
    Callback upon error:
 
    >>> def err_handler(type, flag):
    ...     print("Floating point error (%s), with flag %s" % (type, flag))
    ...
 
    >>> saved_handler = np.seterrcall(err_handler)
    >>> save_err = np.seterr(all='call')
 
    >>> np.array([1, 2, 3]) / 0.0
    Floating point error (divide by zero), with flag 1
    array([inf, inf, inf])
 
    >>> np.seterrcall(saved_handler)
    <function err_handler at 0x...>
    >>> np.seterr(**save_err)
    {'divide': 'call', 'over': 'call', 'under': 'call', 'invalid': 'call'}
 
    Log error message:
 
    >>> class Log:
    ...     def write(self, msg):
    ...         print("LOG: %s" % msg)
    ...
 
    >>> log = Log()
    >>> saved_handler = np.seterrcall(log)
    >>> save_err = np.seterr(all='log')
 
    >>> np.array([1, 2, 3]) / 0.0
    LOG: Warning: divide by zero encountered in divide
    array([inf, inf, inf])
 
    >>> np.seterrcall(saved_handler)
    <numpy.core.numeric.Log object at 0x...>
    >>> np.seterr(**save_err)
    {'divide': 'log', 'over': 'log', 'under': 'log', 'invalid': 'log'}
 
    NÚwritez%Only callable can be used as callbacké) Ú
isinstanceÚ collectionsÚabcÚCallableÚhasattrr;r8rr*rr,)Úfuncr.r/rrr#rÝsR
ÿ
cCs t ¡dS)aé
    Return the current callback function used on floating-point errors.
 
    When the error handling for a floating-point error (one of "divide",
    "over", "under", or "invalid") is set to 'call' or 'log', the function
    that is called or the log instance that is written to is returned by
    `geterrcall`. This function or log instance has been set with
    `seterrcall`.
 
    Returns
    -------
    errobj : callable, log instance or None
        The current error handler. If no handler was set through `seterrcall`,
        ``None`` is returned.
 
    See Also
    --------
    seterrcall, seterr, geterr
 
    Notes
    -----
    For complete documentation of the types of floating-point exceptions and
    treatment options, see `seterr`.
 
    Examples
    --------
    >>> np.geterrcall()  # we did not yet set a handler, returns None
 
    >>> oldsettings = np.seterr(all='call')
    >>> def err_handler(type, flag):
    ...     print("Floating point error (%s), with flag %s" % (type, flag))
    >>> oldhandler = np.seterrcall(err_handler)
    >>> np.array([1, 2, 3]) / 0.0
    Floating point error (divide by zero), with flag 1
    array([inf, inf, inf])
 
    >>> cur_handler = np.geterrcall()
    >>> cur_handler is err_handler
    True
 
    r<r:rrrr#r:s+c@s eZdZdS)Ú _unspecifiedN)Ú__name__Ú
__module__Ú __qualname__rrrr#rChsrCc@s.eZdZdZedœdd„Zdd„Zdd„Zd    S)
ra/
    errstate(**kwargs)
 
    Context manager for floating-point error handling.
 
    Using an instance of `errstate` as a context manager allows statements in
    that context to execute with a known error handling behavior. Upon entering
    the context the error handling is set with `seterr` and `seterrcall`, and
    upon exiting it is reset to what it was before.
 
    ..  versionchanged:: 1.17.0
        `errstate` is also usable as a function decorator, saving
        a level of indentation if an entire function is wrapped.
        See :py:class:`contextlib.ContextDecorator` for more information.
 
    Parameters
    ----------
    kwargs : {divide, over, under, invalid}
        Keyword arguments. The valid keywords are the possible floating-point
        exceptions. Each keyword should have a string value that defines the
        treatment for the particular error. Possible values are
        {'ignore', 'warn', 'raise', 'call', 'print', 'log'}.
 
    See Also
    --------
    seterr, geterr, seterrcall, geterrcall
 
    Notes
    -----
    For complete documentation of the types of floating-point exceptions and
    treatment options, see `seterr`.
 
    Examples
    --------
    >>> olderr = np.seterr(all='ignore')  # Set error handling to known state.
 
    >>> np.arange(3) / 0.
    array([nan, inf, inf])
    >>> with np.errstate(divide='warn'):
    ...     np.arange(3) / 0.
    array([nan, inf, inf])
 
    >>> np.sqrt(-1)
    nan
    >>> with np.errstate(invalid='raise'):
    ...     np.sqrt(-1)
    Traceback (most recent call last):
      File "<stdin>", line 2, in <module>
    FloatingPointError: invalid value encountered in sqrt
 
    Outside the context the error handling behavior has not changed:
 
    >>> np.geterr()
    {'divide': 'ignore', 'over': 'ignore', 'under': 'ignore', 'invalid': 'ignore'}
 
    )rcKs||_||_dS©N)rÚkwargs)ÚselfrrHrrr#Ú__init__ªszerrstate.__init__cCs(tf|jŽ|_|jtk    r$t|jƒ|_dSrG)rrHÚoldstaterÚ _UnspecifiedrÚoldcall)rIrrr#Ú    __enter__®s
zerrstate.__enter__cGs$tf|jŽ|jtk    r t|jƒdSrG)rrKrrLrrM)rIÚexc_inforrr#Ú__exit__³s 
zerrstate.__exit__N)rDrErFÚ__doc__rLrJrNrPrrrr#ros9cCsttdg}t |¡dSrG)rr rr,)Zdefvalrrr#Ú_setdef¹s
rRF)Údefaultc    cs&t d¡}z
dVW5t |¡XdS)zõ
    Context manager to disable NEP 50 warnings.  This context manager is
    only relevant if the NEP 50 warnings are enabled globally (which is not
    thread/context safe).
 
    This warning context manager itself is fully safe, however.
    TN)ÚNO_NEP50_WARNINGÚsetÚreset)Útokenrrr#rÄs
 
 
)NNNNN)(rQÚcollections.abcr>Ú
contextlibZ contextvarsZ    overridesrrrrrrrr    r
r r r rrÚÚ__all__r+Úitemsr2rrrrrrrCrLÚContextDecoratorrrRZ
ContextVarrTÚcontextmanagerrrrrr#Ú<module>sZ 8 þû b
1
 
 
\
-I