Return the size of the buffer used in ufuncs. Returns ------- getbufsize : int Size of ufunc buffer in bytes.
()
| 206 | |
| 207 | @set_module('numpy') |
| 208 | def getbufsize(): |
| 209 | """ |
| 210 | Return the size of the buffer used in ufuncs. |
| 211 | |
| 212 | Returns |
| 213 | ------- |
| 214 | getbufsize : int |
| 215 | Size of ufunc buffer in bytes. |
| 216 | |
| 217 | """ |
| 218 | return umath.geterrobj()[0] |
| 219 | |
| 220 | |
| 221 | @set_module('numpy') |