From 2c2569d4826e112aa91fada242591c83bbdf620a Mon Sep 17 00:00:00 2001 From: lucasdelimanogueira Date: Tue, 7 May 2024 11:52:56 -0300 Subject: [PATCH] operations unit tests --- norch/__pycache__/tensor.cpython-38.pyc | Bin 12605 -> 12605 bytes norch/nn/__pycache__/module.cpython-38.pyc | Bin 4081 -> 4054 bytes norch/tensor.py | 2 +- norch/tests.ipynb | 98 -- norch/utils/__init__.py | 1 + norch/utils/__pycache__/utils.cpython-38.pyc | Bin 776 -> 1459 bytes norch/utils/utils.py | 27 +- profile.txt | 1135 ----------------- profile2.txt | 1084 ----------------- profile3.txt | 0 profile4.txt | 1149 ------------------ profile5.txt | 1132 ----------------- profile7.txt | 1132 ----------------- profile8.txt | 1132 ----------------- profile9sem.txt | 0 test.py | 26 +- tests/__init__.py | 1 + tests/test_operations.py | 186 +++ 18 files changed, 239 insertions(+), 6866 deletions(-) delete mode 100644 norch/tests.ipynb create mode 100644 norch/utils/__init__.py delete mode 100644 profile.txt delete mode 100644 profile2.txt delete mode 100644 profile3.txt delete mode 100644 profile4.txt delete mode 100644 profile5.txt delete mode 100644 profile7.txt delete mode 100644 profile8.txt delete mode 100644 profile9sem.txt create mode 100644 tests/__init__.py create mode 100644 tests/test_operations.py diff --git a/norch/__pycache__/tensor.cpython-38.pyc b/norch/__pycache__/tensor.cpython-38.pyc index 66a25187f6d781863e64d2cbd6bf340121f49a73..3d69ca0841ce346e964d5550fc3b17ddb377772f 100644 GIT binary patch delta 22 ccmdm+v^R-2l$V!_0SFAttpF diff --git a/norch/nn/__pycache__/module.cpython-38.pyc b/norch/nn/__pycache__/module.cpython-38.pyc index f1442e1e8d5bf5006ce74db84ea7301964ae39e1..7089e21c948dfd87f86164c4caa34e47f3931791 100644 GIT binary patch delta 334 zcmew;e@&h*l$V!_0SL0!S*E??-pJ?6Zlna{)-Wt!SjgbQ5GxYHT+0N6%r(pl7;6|8 zGBPq0a?~&cGZYB|m1!~+Ndl?K%h+`Vw1Es$ATDMD5)6z&lb^D0W3=8pheL@`#uzA~ z$y&q2ndgaL?<0TITNZ*j^oI!^w{xtGy%@^-Fzb+7^}pxiB%tm6E2eNK)7AKaa#;0T^m-tOi z;Lc$To_v=3JEQyLqdabmVUu}y8(6)8$`U6}~=OWqd6X%8?u50yEFMbW`!9nfG^Qelzp4zuMX90gZ3QA5VXF0bcTE zb2zm5l*Am6k{~gIsGTuFDWr1=k&v$RXm;e5>`MOMU%!zKA?RLw z(hF#Op>m}sr3xlNmYOp7AuVTtp5(Ha2YEF=RoVo!3(Rb?P{Cb0-L;mQ0bjGanTMd0 z4#_cz*&}sE$WMk#Ea5qFonDAv#koru#PvTkG#iAX>9kR!Zk4CgLeH;6BMv@nFunrq z)04l)qggRmqb$ou4~wLltGq1CNUKCEN+4c5E(@K^M$@7g<#tt-X=X-NA1od>y+h70 zDdvmufU$A0J0RfVgR@l;;ub>8?+y;LBAH}nOpCSIjeap~c5#b+?UJ&2_Bl`PO`D@d z9%8fme<8F-R#(_;r#UqtwzahedW$YJ({D)fA5f}@lc~J%2Lq zAC_+I)}nN3=LsId`TMn?t~xjAz^*yOMgm4h`V_4URlJJUax5Jx|h&h1-0)Y??UOqG+tRPG8KB!PEwh& zn8&5cO`+}6Xt3h!>agjqKsMg@ldMuLF6NhQY~!y%SjustfF10K{ubfHfzbPO^2eXE zmrsBD>-TZOm0u4gD$D02<{eV}F;Ww852(!!?L_U=;t}nrs(3^de3M=^&g9gP%CgXn zx-Im3>&5-1s}?5Bio9`UI-Ry~`BQD-?(nBJ(W))n9gfTp00*ewr8z|XHcy`BV;j#h f)TUuyY+lIa$cp201~_>~MroRj+)cQSHL_F$3;X9JqE zlJORIW?o)uQG9VmVnJ#VCs3>igAvF4TL7F6D1$}1=W2}A4vTLic57Kcr4eoARh OsvXeh5Gy$tIhX;w1UPH} diff --git a/norch/utils/utils.py b/norch/utils/utils.py index e977d6d..676af02 100644 --- a/norch/utils/utils.py +++ b/norch/utils/utils.py @@ -1,5 +1,5 @@ import random -import numpy as np +import torch def generate_random_list(shape): @@ -14,4 +14,27 @@ def generate_random_list(shape): return [random.uniform(-1, 1) for _ in range(shape[0])] else: return [generate_random_list(inner_shape) for _ in range(shape[0])] - \ No newline at end of file + + +def to_torch(custom_tensor): + shape = custom_tensor.shape + pytorch_tensor = torch.zeros(shape) + + def _iterate_indices(shape): + if len(shape) == 0: + yield () + else: + for index in range(shape[0]): + for sub_indices in _iterate_indices(shape[1:]): + yield (index,) + sub_indices + + # Iterate over all elements using the custom tensor's __getitem__ method + for indices in _iterate_indices(shape): + value = custom_tensor[indices] + pytorch_tensor[tuple(indices)] = value + + return pytorch_tensor + +def compare_torch(tensor1, tensor2, epsilon=1e-5): + diff = torch.abs(tensor1 - tensor2) + return torch.all(diff < epsilon) \ No newline at end of file diff --git a/profile.txt b/profile.txt deleted file mode 100644 index 6565bd8..0000000 --- a/profile.txt +++ /dev/null @@ -1,1135 +0,0 @@ -CPU Usage: 3.1% -Memory Usage: 86.9% -CPU Usage: 13.2% -Memory Usage: 87.0% -0 -tensor([0.6798695921897888,], device="cpu", requires_grad=True) -CPU Usage: 16.8% -Memory Usage: 87.1% -1 -tensor([0.6171554327011108,], device="cpu", requires_grad=True) -CPU Usage: 10.9% -Memory Usage: 87.1% -2 -tensor([0.617615818977356,], device="cpu", requires_grad=True) -CPU Usage: 7.8% -Memory Usage: 87.3% -3 - 2838637 function calls (2836237 primitive calls) in 13.489 seconds - - Ordered by: cumulative time - - ncalls tottime percall cumtime percall filename:lineno(function) - 197/1 0.006 0.000 13.489 13.489 {built-in method builtins.exec} - 1 0.000 0.000 13.489 13.489 test.py:2() - 4 0.513 0.128 8.146 2.037 tensor.py:138(backward) - 5 0.000 0.000 5.008 1.002 __init__.py:1692(cpu_percent) - 5 5.004 1.001 5.004 1.001 {built-in method time.sleep} - 96543 2.216 0.000 3.005 0.000 tensor.py:321(__mul__) - 117014 1.816 0.000 2.570 0.000 tensor.py:225(__add__) - 10992 0.079 0.000 1.860 0.000 functions.py:52(backward) - 17864 0.025 0.000 1.500 0.000 functions.py:22(backward) - 304102 0.864 0.000 0.865 0.000 tensor.py:20(__init__) - 10034 0.042 0.000 0.647 0.000 functions.py:36(backward) - 17798 0.283 0.000 0.625 0.000 tensor.py:443(__rpow__) - 18 0.002 0.000 0.612 0.034 __init__.py:1() - 8907 0.103 0.000 0.558 0.000 tensor.py:273(__sub__) - 117018 0.478 0.000 0.478 0.000 functions.py:4(__init__) - 13154 0.012 0.000 0.371 0.000 tensor.py:361(__rmul__) - 4237 0.022 0.000 0.329 0.000 functions.py:104(backward) - 197/5 0.002 0.000 0.324 0.065 :986(_find_and_load) - 197/5 0.002 0.000 0.324 0.065 :956(_find_and_load_unlocked) - 186/5 0.002 0.000 0.323 0.065 :650(_load_unlocked) - 144/5 0.001 0.000 0.323 0.065 :842(exec_module) - 291/5 0.000 0.000 0.319 0.064 :211(_call_with_frames_removed) - 20068 0.257 0.000 0.318 0.000 tensor.py:557(transpose) - 21992 0.309 0.000 0.309 0.000 functions.py:49(__init__) - 3814 0.010 0.000 0.301 0.000 functions.py:14(backward) - 3818 0.004 0.000 0.291 0.000 tensor.py:364(__neg__) - 20072 0.225 0.000 0.287 0.000 tensor.py:370(__matmul__) - 217/25 0.002 0.000 0.286 0.011 :1017(_handle_fromlist) - 384/12 0.002 0.000 0.285 0.024 {built-in method builtins.__import__} - 9081 0.021 0.000 0.282 0.000 functions.py:29(backward) - 809172 0.144 0.000 0.144 0.000 {built-in method _ctypes.POINTER} - 438130 0.115 0.000 0.115 0.000 {built-in method builtins.isinstance} - 8905 0.093 0.000 0.113 0.000 tensor.py:75(ones_like) - 284020 0.079 0.000 0.079 0.000 {method 'copy' of 'list' objects} - 1 0.000 0.000 0.074 0.074 multiarray.py:1() - 144 0.003 0.000 0.073 0.001 :914(get_code) - 1 0.000 0.000 0.072 0.072 overrides.py:1() - 19160 0.064 0.000 0.064 0.000 functions.py:7(backward) - 4241 0.046 0.000 0.062 0.000 tensor.py:500(__rtruediv__) - 4194 0.050 0.000 0.062 0.000 tensor.py:424(__pow__) - 4237 0.046 0.000 0.061 0.000 tensor.py:462(__truediv__) - 50715 0.060 0.000 0.060 0.000 functions.py:26(__init__) - 194 0.003 0.000 0.053 0.000 :890(_find_spec) - 177 0.000 0.000 0.047 0.000 :1399(find_spec) - 177 0.002 0.000 0.047 0.000 :1367(_get_spec) - 186/184 0.001 0.000 0.044 0.000 :549(module_from_spec) - 331 0.007 0.000 0.042 0.000 :1498(find_spec) - 144 0.001 0.000 0.040 0.000 :638(_compile_bytecode) - 1 0.000 0.000 0.040 0.040 py3k.py:1() - 144 0.039 0.000 0.039 0.000 {built-in method marshal.loads} - 1 0.000 0.000 0.039 0.039 __init__.py:7() - 36916 0.037 0.000 0.037 0.000 functions.py:18(__init__) - 23 0.000 0.000 0.032 0.001 :1164(create_module) - 23 0.025 0.001 0.031 0.001 {built-in method _imp.create_dynamic} - 1 0.001 0.001 0.030 0.030 numeric.py:1() - 2095 0.021 0.000 0.027 0.000 tensor.py:521(log) - 294/292 0.014 0.000 0.027 0.000 {built-in method builtins.__build_class__} - 120584 0.026 0.000 0.026 0.000 {method 'append' of 'list' objects} - 117310 0.025 0.000 0.025 0.000 {method 'pop' of 'list' objects} - 1 0.000 0.000 0.024 0.024 pathlib.py:1() - 314 0.003 0.000 0.023 0.000 overrides.py:170(decorator) - 2 0.000 0.000 0.022 0.011 shape_base.py:1() - 1740 0.016 0.000 0.021 0.000 :121(_path_join) - 20072 0.020 0.000 0.020 0.000 functions.py:33(__init__) - 144 0.002 0.000 0.019 0.000 :1034(get_data) - 10034 0.018 0.000 0.018 0.000 functions.py:92(__init__) - 1 0.000 0.000 0.017 0.017 numerictypes.py:1() - 1 0.000 0.000 0.016 0.016 index_tricks.py:1() - 153 0.001 0.000 0.016 0.000 re.py:289(_compile) - 1 0.000 0.000 0.015 0.015 _pickle.py:1() - 1 0.001 0.001 0.015 0.015 core.py:1() - 31 0.000 0.000 0.014 0.000 sre_compile.py:759(compile) - 28 0.000 0.000 0.014 0.000 re.py:250(compile) - 23/18 0.000 0.000 0.013 0.001 :1172(exec_module) - 1 0.002 0.002 0.013 0.013 fromnumeric.py:1() - 23/18 0.004 0.000 0.013 0.001 {built-in method _imp.exec_dynamic} - 284 0.003 0.000 0.013 0.000 overrides.py:88(verify_matching_signatures) - 1 0.000 0.000 0.013 0.013 _pslinux.py:5() - 8907 0.012 0.000 0.012 0.000 functions.py:11(__init__) - 1 0.000 0.000 0.012 0.012 _common.py:5() - 1 0.000 0.000 0.011 0.011 pickle.py:1() - 51 0.004 0.000 0.011 0.000 __init__.py:313(namedtuple) - 755 0.001 0.000 0.011 0.000 :135(_path_stat) - 1 0.000 0.000 0.011 0.011 defmatrix.py:1() - 144 0.010 0.000 0.010 0.000 {method 'read' of '_io.BufferedReader' objects} - 8478 0.010 0.000 0.010 0.000 functions.py:101(__init__) - 759 0.010 0.000 0.010 0.000 {built-in method posix.stat} - 186 0.002 0.000 0.010 0.000 :477(_init_module_attrs) - 1 0.000 0.000 0.010 0.010 version.py:1() - 618 0.002 0.000 0.009 0.000 _inspect.py:96(getargspec) - 288 0.003 0.000 0.009 0.000 :354(cache_from_source) - 8899 0.009 0.000 0.009 0.000 {built-in method math.log} - 1 0.000 0.000 0.008 0.008 inspect.py:1() - 1 0.000 0.000 0.008 0.008 _version.py:7() - 1 0.000 0.000 0.008 0.008 linalg.py:1() - 1 0.000 0.000 0.008 0.008 tensor.py:1() - 31 0.000 0.000 0.008 0.000 sre_parse.py:937(parse) - 62/31 0.000 0.000 0.007 0.000 sre_parse.py:435(_parse_sub) - 65/31 0.003 0.000 0.007 0.000 sre_parse.py:493(_parse) - 7 0.000 0.000 0.007 0.001 enum.py:483(_convert_) - 317 0.002 0.000 0.007 0.000 function_base.py:483(add_newdoc) - 1 0.000 0.000 0.007 0.007 _type_aliases.py:1() - 1 0.000 0.000 0.007 0.007 _add_newdocs.py:1() - 79 0.000 0.000 0.006 0.000 enum.py:313(__call__) - 385 0.004 0.000 0.006 0.000 functools.py:34(update_wrapper) - 144 0.006 0.000 0.006 0.000 {built-in method io.open_code} - 544 0.006 0.000 0.006 0.000 :103(release) - 1 0.000 0.000 0.006 0.006 parse.py:1() - 1 0.000 0.000 0.006 0.006 _methods.py:1() - 9 0.000 0.000 0.006 0.001 enum.py:430(_create_) - 31 0.000 0.000 0.006 0.000 sre_compile.py:598(_code) - 1 0.000 0.000 0.006 0.006 socket.py:4() - 197 0.000 0.000 0.006 0.000 :151(__exit__) - 311 0.001 0.000 0.006 0.000 :376(cached) - 14 0.002 0.000 0.005 0.000 enum.py:157(__new__) - 1 0.000 0.000 0.005 0.005 _compat.py:5() - 1 0.000 0.000 0.005 0.005 defchararray.py:1() - 614 0.004 0.000 0.005 0.000 _inspect.py:65(getargs) - 347 0.001 0.000 0.005 0.000 :194(_lock_unlock_module) - 1 0.000 0.000 0.005 0.005 _type_aliases.py:94(_add_aliases) - 167 0.001 0.000 0.005 0.000 :484(_get_cached) - 16 0.000 0.000 0.005 0.000 _type_aliases.py:58(bitname) - 1 0.000 0.000 0.005 0.005 _internal.py:1() - 16 0.000 0.000 0.005 0.000 _type_aliases.py:44(_bits_of) - 16 0.000 0.000 0.005 0.000 {built-in method builtins.next} - 32 0.005 0.000 0.005 0.000 _type_aliases.py:46() - 1 0.000 0.000 0.005 0.005 decoder.py:1() - 1 0.000 0.000 0.004 0.004 shutil.py:1() - 5078 0.004 0.000 0.004 0.000 {built-in method builtins.getattr} - 197 0.001 0.000 0.004 0.000 :147(__enter__) - 1740 0.003 0.000 0.004 0.000 :123() - 118/31 0.001 0.000 0.004 0.000 sre_compile.py:71(_compile) - 1 0.000 0.000 0.004 0.004 secrets.py:1() - 288 0.001 0.000 0.004 0.000 :127(_path_split) - 544 0.003 0.000 0.004 0.000 :157(_get_module_lock) - 1 0.000 0.000 0.004 0.004 npyio.py:1() - 1 0.000 0.000 0.004 0.004 datetime.py:1() - 234 0.000 0.000 0.004 0.000 :154(_path_isfile) - 258 0.001 0.000 0.004 0.000 :145(_path_is_mode_type) - 1 0.000 0.000 0.004 0.004 _pslinux.py:1667(Process) - 17 0.000 0.000 0.004 0.000 :746(create_module) - 1 0.000 0.000 0.004 0.004 ntpath.py:2() - 17 0.003 0.000 0.003 0.000 {built-in method _imp.create_builtin} - 1 0.000 0.000 0.003 0.003 linecache.py:1() - 1 0.000 0.000 0.003 0.003 scimath.py:1() - 1 0.000 0.000 0.003 0.003 _ufunc_config.py:1() - 14 0.000 0.000 0.003 0.000 core.py:115(doc_note) - 12 0.000 0.000 0.003 0.000 __init__.py:1595(cpu_times) - 1 0.000 0.000 0.003 0.003 twodim_base.py:1() - 386 0.001 0.000 0.003 0.000 :1330(_path_importer_cache) - 1 0.000 0.000 0.003 0.003 extras.py:1() - 2 0.000 0.000 0.003 0.002 function_base.py:1() - 167 0.001 0.000 0.003 0.000 :1493(_get_spec) - 11 0.001 0.000 0.003 0.000 _pslinux.py:584(cpu_times) - 2 0.000 0.000 0.003 0.001 polynomial.py:1() - 344 0.001 0.000 0.003 0.000 {built-in method builtins.max} - 1 0.000 0.000 0.003 0.003 tokenize.py:1() - 1 0.000 0.000 0.003 0.003 scanner.py:1() - 544 0.002 0.000 0.003 0.000 :78(acquire) - 826 0.003 0.000 0.003 0.000 {built-in method __new__ of type object at 0x902780} - 1 0.000 0.000 0.003 0.003 tensor.py:15(Tensor) - 1 0.000 0.000 0.003 0.003 hmac.py:1() - 2 0.000 0.000 0.003 0.001 __init__.py:339(__init__) - 2 0.002 0.001 0.002 0.001 {built-in method _ctypes.dlopen} - 28 0.001 0.000 0.002 0.000 inspect.py:625(cleandoc) - 144 0.000 0.000 0.002 0.000 :1075(path_stats) - 1 0.000 0.000 0.002 0.002 signal.py:1() - 1 0.000 0.000 0.002 0.002 subprocess.py:10() - 7 0.001 0.000 0.002 0.000 enum.py:500() - 1 0.000 0.000 0.002 0.002 getlimits.py:158(_register_known_types) - 167 0.001 0.000 0.002 0.000 :689(spec_from_file_location) - 576 0.002 0.000 0.002 0.000 :129() - 1 0.000 0.000 0.002 0.002 sgd.py:5(__init__) - 37 0.000 0.000 0.002 0.000 abc.py:84(__new__) - 1 0.000 0.000 0.002 0.002 optimizer.py:9(__init__) - 12/4 0.000 0.000 0.002 0.000 module.py:22(__call__) - 7/3 0.000 0.000 0.002 0.001 module.py:35(parameters) - 10 0.000 0.000 0.002 0.000 extras.py:234(__init__) - 4 0.000 0.000 0.002 0.000 test.py:87(forward) - 2095 0.002 0.000 0.002 0.000 functions.py:67(__init__) - 6 0.000 0.000 0.002 0.000 getlimits.py:34(__init__) - 10 0.000 0.000 0.002 0.000 extras.py:238(getdoc) - 22 0.000 0.000 0.002 0.000 :1317(_path_hooks) - 2334 0.002 0.000 0.002 0.000 {method 'join' of 'str' objects} - 1 0.000 0.000 0.002 0.002 linear.py:1() - 5 0.000 0.000 0.002 0.000 __init__.py:1920(virtual_memory) - 2203 0.001 0.000 0.002 0.000 {built-in method builtins.setattr} - 58 0.001 0.000 0.002 0.000 sre_compile.py:276(_optimize_charset) - 22 0.000 0.000 0.002 0.000 :1549(_fill_cache) - 1 0.000 0.000 0.002 0.002 pickle.py:197() - 1 0.000 0.000 0.002 0.002 type_check.py:1() - 5 0.001 0.000 0.002 0.000 _pslinux.py:406(virtual_memory) - 1 0.000 0.000 0.002 0.002 dis.py:1() - 317 0.000 0.000 0.002 0.000 function_base.py:469(_add_docstring) - 1867 0.002 0.000 0.002 0.000 :222(_verbose_message) - 107 0.000 0.000 0.002 0.000 re.py:188(match) - 1 0.000 0.000 0.002 0.002 bz2.py:1() - 22 0.001 0.000 0.001 0.000 {built-in method posix.listdir} - 31 0.000 0.000 0.001 0.000 sre_compile.py:536(_compile_info) - 192 0.001 0.000 0.001 0.000 enum.py:75(__setitem__) - 2241 0.001 0.000 0.001 0.000 {built-in method builtins.hasattr} - 1 0.000 0.000 0.001 0.001 _add_newdocs_scalars.py:1() - 1 0.000 0.000 0.001 0.001 _psposix.py:5() - 1 0.000 0.000 0.001 0.001 encoder.py:1() - 1 0.000 0.000 0.001 0.001 test.py:80(__init__) - 36 0.000 0.000 0.001 0.000 getlimits.py:111(_float_to_str) - 144 0.001 0.000 0.001 0.000 :553(_classify_pyc) - 568 0.001 0.000 0.001 0.000 :1(__new__) -4760/4636 0.001 0.000 0.001 0.000 {built-in method builtins.len} - 18 0.000 0.000 0.001 0.000 _common.py:764(open_binary) - 23 0.000 0.000 0.001 0.000 overrides.py:221(decorator) - 1 0.000 0.000 0.001 0.001 module.py:1() - 1 0.000 0.000 0.001 0.001 arrayprint.py:1() - 618 0.001 0.000 0.001 0.000 _inspect.py:13(ismethod) - 18 0.001 0.000 0.001 0.000 {built-in method io.open} - 50 0.000 0.000 0.001 0.000 core.py:131(get_object_signature) - 432 0.001 0.000 0.001 0.000 :79(_unpack_uint32) - 1 0.000 0.000 0.001 0.001 linear.py:5(__init__) - 22 0.000 0.000 0.001 0.000 :1590(path_hook_for_FileFinder) - 144 0.000 0.000 0.001 0.000 :586(_validate_timestamp_pyc) - 3770 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects} - 18 0.000 0.000 0.001 0.000 arrayprint.py:1571(_array_str_implementation) - 2 0.000 0.000 0.001 0.001 utils.py:1() - 1 0.000 0.000 0.001 0.001 _pocketfft.py:1() - 516 0.001 0.000 0.001 0.000 :389(parent) - 18 0.000 0.000 0.001 0.000 arrayprint.py:506(wrapper) - 1 0.000 0.000 0.001 0.001 random.py:1() - 1255 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects} - 196 0.001 0.000 0.001 0.000 :176(cb) - 3 0.000 0.000 0.001 0.000 inspect.py:325(getmembers) - 757 0.001 0.000 0.001 0.000 sre_parse.py:164(__getitem__) - 4 0.000 0.000 0.001 0.000 activation.py:19(forward) - 1 0.000 0.000 0.001 0.001 contextvars.py:1() - 2 0.000 0.000 0.001 0.000 parameter.py:9(__init__) - 3 0.000 0.000 0.001 0.000 warnings.py:130(filterwarnings) - 18 0.001 0.000 0.001 0.000 arrayprint.py:1564(_guarded_repr_or_str) - 4 0.000 0.000 0.001 0.000 linear.py:12(forward) - 1 0.000 0.000 0.001 0.001 ast.py:1() - 146/59 0.001 0.000 0.001 0.000 sre_parse.py:174(getwidth) - 317 0.001 0.000 0.001 0.000 function_base.py:451(_needs_add_docstring) - 13 0.001 0.000 0.001 0.000 {method 'readline' of '_io.BufferedReader' objects} - 483 0.000 0.000 0.001 0.000 sre_parse.py:254(get) - 177 0.000 0.000 0.001 0.000 abc.py:96(__instancecheck__) - 14 0.001 0.000 0.001 0.000 enum.py:200() - 1 0.000 0.000 0.001 0.001 lzma.py:1() - 196 0.001 0.000 0.001 0.000 :58(__init__) - 24 0.000 0.000 0.001 0.000 _add_newdocs_scalars.py:71(add_newdoc_for_scalar_type) - 26 0.000 0.000 0.001 0.000 core.py:6832(__init__) - 618 0.001 0.000 0.001 0.000 _inspect.py:26(isfunction) - 1 0.000 0.000 0.001 0.001 parameter.py:1() - 1 0.000 0.000 0.001 0.001 selectors.py:1() - 52 0.000 0.000 0.001 0.000 core.py:894(__init__) - 1 0.000 0.000 0.001 0.001 _exceptions.py:1() - 26 0.000 0.000 0.001 0.000 core.py:6837(getdoc) - 2163 0.001 0.000 0.001 0.000 {method 'startswith' of 'str' objects} - 548 0.001 0.000 0.001 0.000 :867(__exit__) - 238 0.001 0.000 0.001 0.000 enum.py:417(__setattr__) - 614 0.001 0.000 0.001 0.000 _inspect.py:41(iscode) - 383 0.001 0.000 0.001 0.000 functools.py:64(wraps) - 314 0.001 0.000 0.001 0.000 {method 'replace' of 'code' objects} - 129/29 0.000 0.000 0.001 0.000 abc.py:100(__subclasscheck__) - 22 0.000 0.000 0.001 0.000 :1459(__init__) - 177 0.000 0.000 0.001 0.000 {built-in method _abc._abc_instancecheck} - 621 0.001 0.000 0.001 0.000 sre_parse.py:233(__next) - 1 0.000 0.000 0.001 0.001 opcode.py:2() - 1 0.000 0.000 0.001 0.001 ctypeslib.py:1() - 129/29 0.001 0.000 0.001 0.000 {built-in method _abc._abc_subclasscheck} - 17 0.000 0.000 0.001 0.000 __init__.py:383(__getattr__) - 3 0.000 0.000 0.001 0.000 sgd.py:11(step) - 13 0.000 0.000 0.001 0.000 _common.py:423(wrapper) - 1 0.000 0.000 0.001 0.001 nanfunctions.py:1() - 548 0.000 0.000 0.001 0.000 :863(__enter__) - 194 0.000 0.000 0.001 0.000 :725(find_spec) - 14 0.000 0.000 0.001 0.000 re.py:223(split) - 1 0.000 0.000 0.001 0.001 glob.py:1() - 22 0.000 0.000 0.001 0.000 :63(__init__) - 14 0.000 0.000 0.001 0.000 core.py:8222(__init__) - 1 0.000 0.000 0.001 0.001 numbers.py:4() - 5 0.000 0.000 0.001 0.000 __init__.py:1733(calculate) - 285 0.001 0.000 0.001 0.000 {method 'format' of 'str' objects} - 14 0.000 0.000 0.001 0.000 core.py:8227(getdoc) - 1 0.000 0.000 0.001 0.001 stride_tricks.py:1() - 46 0.000 0.000 0.001 0.000 _inspect.py:140(formatargspec) - 1288 0.001 0.000 0.001 0.000 {built-in method _imp.acquire_lock} - 6 0.000 0.000 0.001 0.000 numeric.py:2536(extend_all) - 17 0.000 0.000 0.001 0.000 __init__.py:390(__getitem__) - 1288 0.001 0.000 0.001 0.000 {built-in method _imp.release_lock} - 1 0.000 0.000 0.001 0.001 threading.py:1() - 1107 0.001 0.000 0.001 0.000 {built-in method _thread.get_ident} - 1 0.000 0.000 0.000 0.000 _globals.py:1() - 1 0.000 0.000 0.000 0.000 sgd.py:1() - 4 0.000 0.000 0.000 0.000 loss.py:13(__call__) - 28 0.000 0.000 0.000 0.000 module.py:99(__setattr__) - 4 0.000 0.000 0.000 0.000 loss.py:21(forward) - 144 0.000 0.000 0.000 0.000 :516(_check_name_wrapper) - 37 0.000 0.000 0.000 0.000 {built-in method _abc._abc_init} - 344 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects} - 28 0.000 0.000 0.000 0.000 sre_parse.py:96(closegroup) - 31 0.000 0.000 0.000 0.000 enum.py:938(__and__) - 189 0.000 0.000 0.000 0.000 :175(_path_isabs) - 984 0.000 0.000 0.000 0.000 {built-in method builtins.min} - 1 0.000 0.000 0.000 0.000 hashlib.py:5() - 14 0.000 0.000 0.000 0.000 enum.py:143(__prepare__) - 1 0.000 0.000 0.000 0.000 ufunclike.py:1() - 422 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 records.py:1() - 8 0.000 0.000 0.000 0.000 {built-in method builtins.dir} - 196 0.000 0.000 0.000 0.000 :342(__init__) - 1 0.000 0.000 0.000 0.000 histograms.py:1() - 26 0.000 0.000 0.000 0.000 core.py:921(__init__) - 146 0.000 0.000 0.000 0.000 :35(_new_module) - 58 0.000 0.000 0.000 0.000 {built-in method posix.getcwd} - 314 0.000 0.000 0.000 0.000 overrides.py:128(array_function_dispatch) - 12 0.000 0.000 0.000 0.000 datetime.py:488(__new__) - 1 0.000 0.000 0.000 0.000 _pslinux.py:259(set_scputimes_ntuple) - 118 0.000 0.000 0.000 0.000 {built-in method numpy.array} - 1 0.000 0.000 0.000 0.000 functions.py:1() - 1 0.000 0.000 0.000 0.000 ctypeslib.py:362(_get_scalar_type_map) - 8 0.000 0.000 0.000 0.000 tensor.py:58(flatten) - 1 0.000 0.000 0.000 0.000 arraysetops.py:1() - 34 0.000 0.000 0.000 0.000 _pslinux.py:1646(wrap_exceptions) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:373() - 14 0.000 0.000 0.000 0.000 hashlib.py:123(__get_openssl_constructor) - 177 0.000 0.000 0.000 0.000 :800(find_spec) - 1 0.000 0.000 0.000 0.000 getlimits.py:1() - 4 0.000 0.000 0.000 0.000 tensor.py:249(__radd__) - 4 0.000 0.000 0.000 0.000 textwrap.py:414(dedent) - 342 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.add_docstring} - 378 0.000 0.000 0.000 0.000 socket.py:86() - 52/8 0.000 0.000 0.000 0.000 tensor.py:59(flatten_recursively) - 376 0.000 0.000 0.000 0.000 socket.py:76() - 379 0.000 0.000 0.000 0.000 socket.py:91() - 377 0.000 0.000 0.000 0.000 socket.py:81() - 192 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects} - 24 0.000 0.000 0.000 0.000 :159(_path_isdir) - 5 0.000 0.000 0.000 0.000 __init__.py:1671(_cpu_times_deltas) - 70 0.000 0.000 0.000 0.000 enum.py:631(__new__) - 8 0.000 0.000 0.000 0.000 hashlib.py:79(__get_builtin_constructor) - 50 0.000 0.000 0.000 0.000 _internal.py:869(_ufunc_doc_signature_formatter) - 17 0.000 0.000 0.000 0.000 {built-in method builtins.print} - 585 0.000 0.000 0.000 0.000 {method 'get' of 'dict' objects} - 18 0.000 0.000 0.000 0.000 core.py:997(__init__) - 103 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects} - 16 0.000 0.000 0.000 0.000 sre_compile.py:411(_mk_bitmap) - 297 0.000 0.000 0.000 0.000 sre_parse.py:249(match) - 1603 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects} - 37 0.000 0.000 0.000 0.000 enum.py:532(_get_mixins_) - 10 0.000 0.000 0.000 0.000 tensor.py:91(zeros_like) - 466 0.000 0.000 0.000 0.000 {built-in method posix.fspath} - 4 0.000 0.000 0.000 0.000 enum.py:932(__or__) - 1 0.000 0.000 0.000 0.000 pickle.py:407(_Pickler) - 1 0.000 0.000 0.000 0.000 legendre.py:1() - 14 0.000 0.000 0.000 0.000 enum.py:579(_find_new_) - 4 0.000 0.000 0.000 0.000 functions.py:80(backward) - 1 0.000 0.000 0.000 0.000 mixins.py:1() - 1 0.000 0.000 0.000 0.000 einsumfunc.py:1() - 4 0.000 0.000 0.000 0.000 re.py:203(sub) - 53 0.000 0.000 0.000 0.000 sre_compile.py:423(_simple) - 12 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects} - 291 0.000 0.000 0.000 0.000 sre_parse.py:172(append) - 58 0.000 0.000 0.000 0.000 sre_compile.py:249(_compile_charset) - 1 0.000 0.000 0.000 0.000 _iotools.py:1() - 3 0.000 0.000 0.000 0.000 ufunclike.py:58(_fix_and_maybe_deprecate_out_named_y) - 4 0.000 0.000 0.000 0.000 module.py:13(__init__) - 178 0.000 0.000 0.000 0.000 sre_parse.py:286(tell) - 4 0.000 0.000 0.000 0.000 optimizer.py:20(zero_grad) - 3 0.000 0.000 0.000 0.000 ufunclike.py:41(_fix_out_named_y) - 396 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock} - 40/28 0.000 0.000 0.000 0.000 sre_compile.py:461(_get_literal_prefix) - 16 0.000 0.000 0.000 0.000 {built-in method builtins.sorted} - 1 0.000 0.000 0.000 0.000 _compat_pickle.py:9() - 1 0.000 0.000 0.000 0.000 arraypad.py:1() - 240 0.000 0.000 0.000 0.000 sre_parse.py:160(__len__) - 112 0.000 0.000 0.000 0.000 {built-in method builtins.repr} - 11 0.000 0.000 0.000 0.000 abc.py:89(register) - 275 0.000 0.000 0.000 0.000 {method 'split' of 'bytes' objects} - 197 0.000 0.000 0.000 0.000 :143(__init__) - 36 0.000 0.000 0.000 0.000 getlimits.py:91(_float_to_float) - 192 0.000 0.000 0.000 0.000 enum.py:22(_is_dunder) - 1 0.000 0.000 0.000 0.000 contextlib.py:72(inner) - 17 0.000 0.000 0.000 0.000 :406(spec_from_loader) - 1 0.000 0.000 0.000 0.000 base64.py:3() - 152 0.000 0.000 0.000 0.000 enum.py:12(_is_descriptor) - 1 0.000 0.000 0.000 0.000 core.py:6527(__new__) - 1 0.000 0.000 0.000 0.000 umath.py:1() - 1 0.000 0.000 0.000 0.000 __future__.py:1() - 8 0.000 0.000 0.000 0.000 tensor.py:179(zero_grad) - 1 0.000 0.000 0.000 0.000 _string_helpers.py:1() - 3 0.000 0.000 0.000 0.000 tensor.py:196(__str__) - 433 0.000 0.000 0.000 0.000 {built-in method from_bytes} - 11 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register} - 192 0.000 0.000 0.000 0.000 enum.py:33(_is_sunder) - 1 0.000 0.000 0.000 0.000 mixins.py:59(NDArrayOperatorsMixin) - 31 0.000 0.000 0.000 0.000 sre_parse.py:224(__init__) - 2 0.000 0.000 0.000 0.000 enum.py:889(_missing_) - 1 0.000 0.000 0.000 0.000 _pslinux.py:600(per_cpu_times) - 73 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin} - 51 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects} - 14 0.000 0.000 0.000 0.000 {method 'split' of 're.Pattern' objects} - 2 0.000 0.000 0.000 0.000 enum.py:899(_create_pseudo_member_) - 109 0.000 0.000 0.000 0.000 {method 'match' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 defchararray.py:1908(chararray) - 1 0.000 0.000 0.000 0.000 _polybase.py:1() - 289 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects} - 1 0.000 0.000 0.000 0.000 __init__.py:298(Process) - 928 0.000 0.000 0.000 0.000 {method 'lstrip' of 'str' objects} - 613 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects} - 31 0.000 0.000 0.000 0.000 sre_parse.py:432(_uniq) - 1 0.000 0.000 0.000 0.000 struct.py:3() - 194 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects} - 37 0.000 0.000 0.000 0.000 enum.py:543(_find_data_type) - 144 0.000 0.000 0.000 0.000 :1004(__init__) - 1 0.000 0.000 0.000 0.000 _asarray.py:1() - 1 0.000 0.000 0.000 0.000 memmap.py:1() - 3 0.000 0.000 0.000 0.000 tokenize.py:83(_all_string_prefixes) - 1 0.000 0.000 0.000 0.000 {function SeedSequence.generate_state at 0x7f6318e8fd30} - 3 0.000 0.000 0.000 0.000 tensor.py:197(print_recursively) - 1 0.000 0.000 0.000 0.000 _string_helpers.py:9() - 2 0.000 0.000 0.000 0.000 enum.py:978(_decompose) - 177 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen} - 1 0.000 0.000 0.000 0.000 hermite.py:1() - 1 0.000 0.000 0.000 0.000 ast.py:405(NodeTransformer) - 1 0.000 0.000 0.000 0.000 laguerre.py:1() - 11 0.000 0.000 0.000 0.000 _pslinux.py:596() - 1 0.000 0.000 0.000 0.000 chebyshev.py:1() - 1 0.000 0.000 0.000 0.000 _type_aliases.py:211(_set_array_types) - 28 0.000 0.000 0.000 0.000 sre_parse.py:84(opengroup) - 22 0.000 0.000 0.000 0.000 {built-in method builtins.round} - 16 0.000 0.000 0.000 0.000 sre_compile.py:413() - 172 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects} - 1 0.000 0.000 0.000 0.000 hermite_e.py:1() - 1 0.000 0.000 0.000 0.000 selectors.py:80(BaseSelector) - 121 0.000 0.000 0.000 0.000 sre_parse.py:111(__init__) - 1 0.000 0.000 0.000 0.000 os.py:42(_get_exports_list) - 1 0.000 0.000 0.000 0.000 numerictypes.py:588(_register_types) - 1 0.000 0.000 0.000 0.000 core.py:2697(MaskedArray) - 218 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects} - 317 0.000 0.000 0.000 0.000 __init__.py:385() - 1 0.000 0.000 0.000 0.000 legendre.py:1619(Legendre) - 331 0.000 0.000 0.000 0.000 :68(_relax_case) - 52 0.000 0.000 0.000 0.000 _add_newdocs.py:6753(refer_to_array_attribute) - 317 0.000 0.000 0.000 0.000 {built-in method sys.intern} - 1 0.000 0.000 0.000 0.000 _endian.py:1() - 403 0.000 0.000 0.000 0.000 {built-in method builtins.globals} - 14 0.000 0.000 0.000 0.000 core.py:8239(_replace_return_type) - 1 0.000 0.000 0.000 0.000 _compression.py:1() - 47 0.000 0.000 0.000 0.000 sre_parse.py:355(_escape) - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:33(seterr) - 13 0.000 0.000 0.000 0.000 mixins.py:44(_numeric_methods) - 1 0.000 0.000 0.000 0.000 helper.py:1() - 98 0.000 0.000 0.000 0.000 types.py:171(__get__) - 1 0.000 0.000 0.000 0.000 traceback.py:1() - 1 0.000 0.000 0.000 0.000 sgd.py:9() - 1 0.000 0.000 0.000 0.000 numerictypes.py:440(_construct_lookups) - 4 0.000 0.000 0.000 0.000 tensor.py:539(sum) - 1 0.000 0.000 0.000 0.000 bisect.py:1() - 1 0.000 0.000 0.000 0.000 _psposix.py:66() - 118 0.000 0.000 0.000 0.000 sre_parse.py:81(groups) - 2 0.000 0.000 0.000 0.000 tensor.py:583(T) - 17 0.000 0.000 0.000 0.000 :754(exec_module) - 1 0.000 0.000 0.000 0.000 _datasource.py:1() - 1 0.000 0.000 0.000 0.000 pickle.py:1136(_Unpickler) - 1 0.000 0.000 0.000 0.000 activation.py:1() - 1 0.000 0.000 0.000 0.000 linalg.py:74(_determine_error_states) - 4/3 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.ndarray' objects} - 144 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename} - 1 0.000 0.000 0.000 0.000 core.py:2808(__new__) - 1 0.000 0.000 0.000 0.000 loss.py:1() - 76 0.000 0.000 0.000 0.000 signal.py:10() - 36 0.000 0.000 0.000 0.000 _string_helpers.py:16(english_lower) - 24 0.000 0.000 0.000 0.000 numerictypes.py:513(_scalar_type_key) - 6 0.000 0.000 0.000 0.000 core.py:1146(__init__) - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:100(dtype_from_ctypes_type) - 82 0.000 0.000 0.000 0.000 overrides.py:121(decorator) - 1 0.000 0.000 0.000 0.000 threading.py:1262(__init__) - 28 0.000 0.000 0.000 0.000 {method 'expandtabs' of 'str' objects} - 24 0.000 0.000 0.000 0.000 sre_parse.py:295(_class_escape) - 30 0.000 0.000 0.000 0.000 _type_aliases.py:203(_add_array_type) - 42 0.000 0.000 0.000 0.000 getlimits.py:101(_float_conv) - 2 0.000 0.000 0.000 0.000 core.py:2966(__array_finalize__) - 36 0.000 0.000 0.000 0.000 getlimits.py:24(_fr1) - 1 0.000 0.000 0.000 0.000 __init__.py:335(_sanity_check) - 7 0.000 0.000 0.000 0.000 getlimits.py:668(__init__) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:430(__enter__) - 1 0.000 0.000 0.000 0.000 token.py:1() - 2 0.000 0.000 0.000 0.000 enum.py:997() - 238 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects} - 3 0.000 0.000 0.000 0.000 tensor.py:184(__getitem__) - 1 0.000 0.000 0.000 0.000 opcode.py:37() - 3 0.000 0.000 0.000 0.000 contextlib.py:211(contextmanager) - 31 0.000 0.000 0.000 0.000 {built-in method _sre.compile} - 186 0.000 0.000 0.000 0.000 :397(has_location) - 1 0.000 0.000 0.000 0.000 _machar.py:1() - 82 0.000 0.000 0.000 0.000 overrides.py:110(set_module) - 62 0.000 0.000 0.000 0.000 sre_compile.py:595(isstring) - 215 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects} - 61 0.000 0.000 0.000 0.000 _inspect.py:144() - 1 0.000 0.000 0.000 0.000 datetime.py:2181(timezone) - 1 0.000 0.000 0.000 0.000 polyutils.py:1() - 83 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects} - 288 0.000 0.000 0.000 0.000 {built-in method builtins.chr} - 317 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects} - 7 0.000 0.000 0.000 0.000 _common.py:444(memoize_when_activated) - 321 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects} - 1 0.000 0.000 0.000 0.000 tensor.py:5(CTensor) - 2 0.000 0.000 0.000 0.000 posixpath.py:372(abspath) - 1 0.000 0.000 0.000 0.000 __init__.py:261(_reset_cache) - 41 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:83() - 1 0.000 0.000 0.000 0.000 _type_aliases.py:74(_add_types) - 5 0.000 0.000 0.000 0.000 _common.py:388(usage_percent) - 176 0.000 0.000 0.000 0.000 :1465() - 4 0.000 0.000 0.000 0.000 genericpath.py:16(exists) - 72 0.000 0.000 0.000 0.000 {method 'copy' of 'numpy.ndarray' objects} - 4 0.000 0.000 0.000 0.000 _common.py:400(memoize) - 14 0.000 0.000 0.000 0.000 enum.py:522(_check_for_existing_members) - 3 0.000 0.000 0.000 0.000 datetime.py:1567(__new__) - 3 0.000 0.000 0.000 0.000 __init__.py:498(PYFUNCTYPE) - 10 0.000 0.000 0.000 0.000 __init__.py:1636(_cpu_tot_time) - 31 0.000 0.000 0.000 0.000 {built-in method fromkeys} - 17 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin} - 192 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass} - 18 0.000 0.000 0.000 0.000 sre_compile.py:492(_get_charset_prefix) - 1 0.000 0.000 0.000 0.000 inspect.py:2428(_ParameterKind) - 6/2 0.000 0.000 0.000 0.000 utils.py:3(generate_random_list) - 2 0.000 0.000 0.000 0.000 functools.py:525(decorating_function) - 1 0.000 0.000 0.000 0.000 fnmatch.py:1() - 47 0.000 0.000 0.000 0.000 re.py:270(escape) - 1 0.000 0.000 0.000 0.000 core.py:3115(view) - 1 0.000 0.000 0.000 0.000 token.py:74() - 31 0.000 0.000 0.000 0.000 sre_parse.py:921(fix_flags) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:123(_add_integer_aliases) - 6 0.000 0.000 0.000 0.000 os.py:670(__getitem__) - 1 0.000 0.000 0.000 0.000 optimizer.py:1() - 55 0.000 0.000 0.000 0.000 sre_parse.py:168(__setitem__) - 9 0.000 0.000 0.000 0.000 overrides.py:23(set_array_function_like_doc) - 36 0.000 0.000 0.000 0.000 getlimits.py:16(_fr0) - 2 0.000 0.000 0.000 0.000 __init__.py:75(CFUNCTYPE) - 93 0.000 0.000 0.000 0.000 _inspect.py:131(strseq) - 144 0.000 0.000 0.000 0.000 :1029(get_filename) - 6 0.000 0.000 0.000 0.000 __init__.py:266(_assert_pid_not_reused) - 8 0.000 0.000 0.000 0.000 {method 'sub' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 _polybase.py:18(ABCPolyBase) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:435(__exit__) - 252 0.000 0.000 0.000 0.000 {built-in method builtins.ord} - 1 0.000 0.000 0.000 0.000 _pytesttester.py:1() - 2 0.000 0.000 0.000 0.000 core.py:6721(__init__) - 14 0.000 0.000 0.000 0.000 __init__.py:141(_check_size) - 4 0.000 0.000 0.000 0.000 _collections_abc.py:657(get) - 20 0.000 0.000 0.000 0.000 mixins.py:16(_binary_method) - 1 0.000 0.000 0.000 0.000 core.py:6545(__array_finalize__) - 4 0.000 0.000 0.000 0.000 sre_parse.py:267(getuntil) - 2 0.000 0.000 0.000 0.000 arrayprint.py:503(decorating_function) - 2 0.000 0.000 0.000 0.000 datetime.py:661(__neg__) - 10 0.000 0.000 0.000 0.000 sre_compile.py:432(_generate_overlap_table) - 144 0.000 0.000 0.000 0.000 :839(create_module) - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:18(numeric_type_aliases) - 1 0.000 0.000 0.000 0.000 _globals.py:93(_CopyMode) - 31 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__) - 257 0.000 0.000 0.000 0.000 hmac.py:17() - 1 0.000 0.000 0.000 0.000 format.py:1() - 2 0.000 0.000 0.000 0.000 contextlib.py:71(__call__) - 1 0.000 0.000 0.000 0.000 _dtype.py:1() - 1 0.000 0.000 0.000 0.000 pathlib.py:120(_WindowsFlavour) - 17 0.000 0.000 0.000 0.000 :232(_requires_builtin_wrapper) - 1 0.000 0.000 0.000 0.000 _version.py:20(get_versions) - 1 0.000 0.000 0.000 0.000 _internal.py:239(_missing_ctypes) - 14 0.000 0.000 0.000 0.000 enum.py:370(__getattr__) - 150 0.000 0.000 0.000 0.000 inspect.py:366() - 17 0.000 0.000 0.000 0.000 _common.py:836(get_procfs_path) - 257 0.000 0.000 0.000 0.000 hmac.py:18() - 14 0.000 0.000 0.000 0.000 enum.py:175() - 1 0.000 0.000 0.000 0.000 loss.py:18(__init__) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:151(_set_up_aliases) - 1 0.000 0.000 0.000 0.000 __init__.py:1276() - 1 0.000 0.000 0.000 0.000 _pslinux.py:118(IOPriority) - 12 0.000 0.000 0.000 0.000 os.py:748(encode) - 1 0.000 0.000 0.000 0.000 __init__.py:299(loads) - 14 0.000 0.000 0.000 0.000 enum.py:68(__init__) - 1 0.000 0.000 0.000 0.000 os.py:46() - 5 0.000 0.000 0.000 0.000 datetime.py:411(_check_date_fields) - 63 0.000 0.000 0.000 0.000 abc.py:7(abstractmethod) - 120 0.000 0.000 0.000 0.000 opcode.py:39(def_op) - 2 0.000 0.000 0.000 0.000 utils.py:14() - 2 0.000 0.000 0.000 0.000 random.py:94(__init__) - 2 0.000 0.000 0.000 0.000 os.py:684(__delitem__) - 46 0.000 0.000 0.000 0.000 sre_compile.py:65(_combine_flags) - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:132(geterr) - 1 0.000 0.000 0.000 0.000 pathlib.py:629(PurePath) - 8 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects} - 1 0.000 0.000 0.000 0.000 numbers.py:32(Complex) - 23 0.000 0.000 0.000 0.000 :1153(__init__) - 1 0.000 0.000 0.000 0.000 arrayterator.py:1() - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:19(type_aliases_gen) - 8 0.000 0.000 0.000 0.000 _pslinux.py:614() - 1 0.000 0.000 0.000 0.000 _common.py:140(NicDuplex) - 14 0.000 0.000 0.000 0.000 {built-in method builtins.any} - 1 0.000 0.000 0.000 0.000 random.py:123(seed) - 1 0.000 0.000 0.000 0.000 decoder.py:332(decode) - 2 0.000 0.000 0.000 0.000 datetime.py:1236(__new__) - 2 0.000 0.000 0.000 0.000 os.py:678(__setitem__) - 1 0.000 0.000 0.000 0.000 activation.py:16(__init__) - 35 0.000 0.000 0.000 0.000 datetime.py:379(_check_int_field) - 78 0.000 0.000 0.000 0.000 _internal.py:880() - 5 0.000 0.000 0.000 0.000 datetime.py:424(_check_time_fields) - 101 0.000 0.000 0.000 0.000 enum.py:506() - 2 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function} - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:71(_from_ctypes_scalar) - 1 0.000 0.000 0.000 0.000 _version.py:1() - 1 0.000 0.000 0.000 0.000 abc.py:1() - 1 0.000 0.000 0.000 0.000 loss.py:7(__init__) - 1 0.000 0.000 0.000 0.000 numbers.py:294(Integral) - 1 0.000 0.000 0.000 0.000 __config__.py:3() - 1 0.000 0.000 0.000 0.000 datetime.py:1559(datetime) - 4 0.000 0.000 0.000 0.000 warnings.py:181(_add_filter) - 2 0.000 0.000 0.000 0.000 _collections_abc.py:664(__contains__) - 5 0.000 0.000 0.000 0.000 __init__.py:1655(_cpu_busy_time) - 24 0.000 0.000 0.000 0.000 tokenize.py:94() - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(concatenate) - 1 0.000 0.000 0.000 0.000 threading.py:761(__init__) - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:54(_get_platform_and_machine) - 2 0.000 0.000 0.000 0.000 datetime.py:819(__new__) - 58 0.000 0.000 0.000 0.000 sre_compile.py:453(_get_iscased) - 1 0.000 0.000 0.000 0.000 activation.py:8(__init__) - 2 0.000 0.000 0.000 0.000 posixpath.py:334(normpath) - 2 0.000 0.000 0.000 0.000 {built-in method posix.uname} - 2 0.000 0.000 0.000 0.000 core.py:2940(_update_from) - 1 0.000 0.000 0.000 0.000 numeric.py:150(ones) - 1 0.000 0.000 0.000 0.000 core.py:191() - 1 0.000 0.000 0.000 0.000 pathlib.py:1025(Path) - 1 0.000 0.000 0.000 0.000 ufunclike.py:16(_deprecate_out_named_y) - 85 0.000 0.000 0.000 0.000 _compat_pickle.py:167() - 1 0.000 0.000 0.000 0.000 _common.py:152(BatteryTime) - 1 0.000 0.000 0.000 0.000 datetime.py:789(date) - 9 0.000 0.000 0.000 0.000 {built-in method numpy.seterrobj} - 1 0.000 0.000 0.000 0.000 threading.py:519(set) - 4 0.000 0.000 0.000 0.000 posixpath.py:71(join) - 6 0.000 0.000 0.000 0.000 _exceptions.py:17(_display_as_base) - 39 0.000 0.000 0.000 0.000 enum.py:223() - 1 0.000 0.000 0.000 0.000 {function Random.seed at 0x7f632dbb8160} - 16 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects} - 4 0.000 0.000 0.000 0.000 sre_parse.py:258(getwhile) - 23 0.000 0.000 0.000 0.000 overrides.py:217(array_function_from_dispatcher) - 1 0.000 0.000 0.000 0.000 subprocess.py:638(_use_posix_spawn) - 53 0.000 0.000 0.000 0.000 {built-in method sys._getframe} - 48 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects} - 2 0.000 0.000 0.000 0.000 :1238(__iter__) - 70 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects} - 1 0.000 0.000 0.000 0.000 polynomial.py:1472(Polynomial) - 96 0.000 0.000 0.000 0.000 {built-in method builtins.abs} - 1 0.000 0.000 0.000 0.000 _dtype_ctypes.py:1() - 4 0.000 0.000 0.000 0.000 {method 'findall' of 're.Pattern' objects} - 19 0.000 0.000 0.000 0.000 tokenize.py:58(group) - 10 0.000 0.000 0.000 0.000 {built-in method builtins.sum} - 14 0.000 0.000 0.000 0.000 mixins.py:26(_reflected_binary_method) - 1 0.000 0.000 0.000 0.000 defmatrix.py:72(matrix) - 13 0.000 0.000 0.000 0.000 mixins.py:36(_inplace_binary_method) - 1 0.000 0.000 0.000 0.000 socket.py:213(socket) - 1 0.000 0.000 0.000 0.000 __init__.py:187() - 1 0.000 0.000 0.000 0.000 _iotools.py:450(StringConverter) - 12 0.000 0.000 0.000 0.000 opcode.py:43(name_op) - 5 0.000 0.000 0.000 0.000 enum.py:1015(_power_of_two) - 20 0.000 0.000 0.000 0.000 {method 'encode' of 'str' objects} - 60 0.000 0.000 0.000 0.000 {built-in method builtins.divmod} - 1 0.000 0.000 0.000 0.000 datetime.py:469(timedelta) - 1 0.000 0.000 0.000 0.000 sre_compile.py:416(_bytes_to_codes) - 1 0.000 0.000 0.000 0.000 pathlib.py:399(_NormalAccessor) - 1 0.000 0.000 0.000 0.000 polynomial.py:1076(poly1d) - 1 0.000 0.000 0.000 0.000 numbers.py:147(Real) - 1 0.000 0.000 0.000 0.000 datetime.py:1211(time) - 4 0.000 0.000 0.000 0.000 :1221(_get_parent_path) - 1 0.000 0.000 0.000 0.000 {method 'dot' of 'numpy.ndarray' objects} - 55 0.000 0.000 0.000 0.000 enum.py:748(name) - 1 0.000 0.000 0.000 0.000 subprocess.py:688(Popen) - 13 0.000 0.000 0.000 0.000 _internal.py:917(npy_ctypes_check) - 43 0.000 0.000 0.000 0.000 _compat_pickle.py:165() - 1 0.000 0.000 0.000 0.000 decoder.py:284(__init__) - 78 0.000 0.000 0.000 0.000 signal.py:22() - 1 0.000 0.000 0.000 0.000 threading.py:903(_set_tstate_lock) - 1 0.000 0.000 0.000 0.000 hermite.py:1658(Hermite) - 2 0.000 0.000 0.000 0.000 :1205(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:750(Thread) - 2 0.000 0.000 0.000 0.000 {built-in method posix.unsetenv} - 1 0.000 0.000 0.000 0.000 _type_aliases.py:41() - 1 0.000 0.000 0.000 0.000 warnings.py:165(simplefilter) - 1 0.000 0.000 0.000 0.000 _inspect.py:1() - 7 0.000 0.000 0.000 0.000 core.py:2544(_arraymethod) - 1 0.000 0.000 0.000 0.000 random.py:78(Random) - 77 0.000 0.000 0.000 0.000 signal.py:17() - 81 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased} - 2 0.000 0.000 0.000 0.000 {built-in method posix.putenv} - 1 0.000 0.000 0.000 0.000 socket.py:626(SocketIO) - 1 0.000 0.000 0.000 0.000 getlimits.py:364(finfo) - 16 0.000 0.000 0.000 0.000 _dtype.py:24(_kind_name) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:441(_setdef) - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(copyto) - 18 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize} - 2 0.000 0.000 0.000 0.000 copyreg.py:12(pickle) - 33 0.000 0.000 0.000 0.000 enum.py:393() - 1 0.000 0.000 0.000 0.000 _exceptions.py:81(_UFuncInputCastingError) - 18 0.000 0.000 0.000 0.000 {built-in method numpy.geterrobj} - 1 0.000 0.000 0.000 0.000 _collections_abc.py:349(__subclasshook__) - 1 0.000 0.000 0.000 0.000 chebyshev.py:1995(Chebyshev) - 2 0.000 0.000 0.000 0.000 _collections_abc.py:72(_check_methods) - 10 0.000 0.000 0.000 0.000 __future__.py:83(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:364(notify_all) - 43 0.000 0.000 0.000 0.000 enum.py:753(value) - 1 0.000 0.000 0.000 0.000 os.py:766(getenv) - 4 0.000 0.000 0.000 0.000 getlimits.py:692(max) - 1 0.000 0.000 0.000 0.000 decoder.py:343(raw_decode) - 6 0.000 0.000 0.000 0.000 _type_aliases.py:92() - 25 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects} - 1 0.000 0.000 0.000 0.000 bz2.py:30(BZ2File) - 1 0.000 0.000 0.000 0.000 {built-in method math.exp} - 1 0.000 0.000 0.000 0.000 hermite_e.py:1650(HermiteE) - 1 0.000 0.000 0.000 0.000 random.py:721(getrandbits) - 1 0.000 0.000 0.000 0.000 random.py:709(SystemRandom) - 1 0.000 0.000 0.000 0.000 laguerre.py:1606(Laguerre) - 2 0.000 0.000 0.000 0.000 :1225(_recalculate) - 1 0.000 0.000 0.000 0.000 _common.py:634(outer) - 1 0.000 0.000 0.000 0.000 __init__.py:216() - 3 0.000 0.000 0.000 0.000 enum.py:957(_high_bit) - 1 0.000 0.000 0.000 0.000 threading.py:505(__init__) - 1 0.000 0.000 0.000 0.000 _internal.py:248(_ctypes) - 68 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_tolower} - 1 0.000 0.000 0.000 0.000 core.py:6517(MaskedConstant) - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:79() - 1 0.000 0.000 0.000 0.000 _internal.py:613(_Stream) - 10 0.000 0.000 0.000 0.000 enum.py:398(__members__) - 4 0.000 0.000 0.000 0.000 mixins.py:51(_unary_method) - 1 0.000 0.000 0.000 0.000 posixpath.py:150(dirname) - 1 0.000 0.000 0.000 0.000 _pslinux.py:337() - 14 0.000 0.000 0.000 0.000 {method 'mro' of 'type' objects} - 8 0.000 0.000 0.000 0.000 tensor.py:598(detach) - 9 0.000 0.000 0.000 0.000 _pytesttester.py:76(__init__) - 17 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 inspect.py:2457(Parameter) - 1 0.000 0.000 0.000 0.000 threading.py:900(_set_native_id) - 1 0.000 0.000 0.000 0.000 threading.py:341(notify) - 1 0.000 0.000 0.000 0.000 module.py:9(Module) - 1 0.000 0.000 0.000 0.000 core.py:903(_MaskedUnaryOperation) - 1 0.000 0.000 0.000 0.000 py3k.py:84(contextlib_nullcontext) - 20 0.000 0.000 0.000 0.000 _inspect.py:142() - 2 0.000 0.000 0.000 0.000 posixpath.py:60(isabs) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha1} - 1 0.000 0.000 0.000 0.000 inspect.py:2742(Signature) - 1 0.000 0.000 0.000 0.000 pathlib.py:136() - 5 0.000 0.000 0.000 0.000 _ufunc_config.py:426(__init__) - 1 0.000 0.000 0.000 0.000 core.py:6322(mvoid) - 1 0.000 0.000 0.000 0.000 threading.py:222(__init__) - 1 0.000 0.000 0.000 0.000 _datasource.py:196(DataSource) - 1 0.000 0.000 0.000 0.000 getlimits.py:32(MachArLike) - 1 0.000 0.000 0.000 0.000 hmac.py:26(HMAC) - 1 0.000 0.000 0.000 0.000 inspect.py:2612(BoundArguments) - 1 0.000 0.000 0.000 0.000 core.py:1329(make_mask_descr) - 21 0.000 0.000 0.000 0.000 _inspect.py:143() - 3 0.000 0.000 0.000 0.000 {built-in method posix.getpid} - 7 0.000 0.000 0.000 0.000 posixpath.py:41(_get_sep) - 36 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects} - 1 0.000 0.000 0.000 0.000 _iotools.py:229(NameValidator) - 13 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects} - 2 0.000 0.000 0.000 0.000 functools.py:487(lru_cache) - 1 0.000 0.000 0.000 0.000 parse.py:154(_NetlocResultMixinBase) - 6 0.000 0.000 0.000 0.000 opcode.py:47(jrel_op) - 1 0.000 0.000 0.000 0.000 _common.py:278(Error) - 1 0.000 0.000 0.000 0.000 pathlib.py:479(_Selector) - 4 0.000 0.000 0.000 0.000 :1211(_find_parent_path_names) - 1 0.000 0.000 0.000 0.000 traceback.py:440(TracebackException) - 1 0.000 0.000 0.000 0.000 threading.py:210(Condition) - 1 0.000 0.000 0.000 0.000 _exceptions.py:224(_ArrayMemoryError) - 1 0.000 0.000 0.000 0.000 parse.py:364(_fix_result_transcoding) - 1 0.000 0.000 0.000 0.000 core.py:1315(_replace_dtype_fields) - 3 0.000 0.000 0.000 0.000 datetime.py:2201(_create) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:204(_concrete_ndptr) - 1 0.000 0.000 0.000 0.000 pickle.py:200(_Framer) - 1 0.000 0.000 0.000 0.000 lzma.py:38(LZMAFile) - 15 0.000 0.000 0.000 0.000 {method 'startswith' of 'bytes' objects} - 1 0.000 0.000 0.000 0.000 records.py:223(record) - 4 0.000 0.000 0.000 0.000 functions.py:77(__init__) - 38 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof} - 5 0.000 0.000 0.000 0.000 opcode.py:51(jabs_op) - 3 0.000 0.000 0.000 0.000 inspect.py:72(isclass) - 7 0.000 0.000 0.000 0.000 {built-in method builtins.vars} - 1 0.000 0.000 0.000 0.000 os.py:1073(__subclasshook__) - 1 0.000 0.000 0.000 0.000 numbers.py:267(Rational) - 2 0.000 0.000 0.000 0.000 core.py:6620(__setattr__) - 1 0.000 0.000 0.000 0.000 npyio.py:42(BagObj) - 3 0.000 0.000 0.000 0.000 index_tricks.py:323(__init__) - 17 0.000 0.000 0.000 0.000 :771(is_package) - 1 0.000 0.000 0.000 0.000 _pslinux.py:789(__init__) - 8 0.000 0.000 0.000 0.000 getlimits.py:153(_register_type) - 1 0.000 0.000 0.000 0.000 pathlib.py:285(_PosixFlavour) - 1 0.000 0.000 0.000 0.000 getlimits.py:613(iinfo) - 18 0.000 0.000 0.000 0.000 {built-in method builtins.id} - 1 0.000 0.000 0.000 0.000 extras.py:1567(__init__) - 1 0.000 0.000 0.000 0.000 extras.py:214(_fromnxfunction) - 1 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.generic' objects} - 1 0.000 0.000 0.000 0.000 subprocess.py:99(CalledProcessError) - 1 0.000 0.000 0.000 0.000 {method 'tolist' of 'memoryview' objects} - 1 0.000 0.000 0.000 0.000 records.py:308(recarray) - 1 0.000 0.000 0.000 0.000 index_tricks.py:110(nd_grid) - 1 0.000 0.000 0.000 0.000 _machar.py:17(MachAr) - 1 0.000 0.000 0.000 0.000 memmap.py:22(memmap) - 1 0.000 0.000 0.000 0.000 decoder.py:254(JSONDecoder) - 1 0.000 0.000 0.000 0.000 encoder.py:73(JSONEncoder) - 1 0.000 0.000 0.000 0.000 pathlib.py:137() - 4 0.000 0.000 0.000 0.000 {method 'random' of '_random.Random' objects} - 1 0.000 0.000 0.000 0.000 {built-in method numpy.empty} - 3 0.000 0.000 0.000 0.000 datetime.py:41(_days_before_year) - 1 0.000 0.000 0.000 0.000 sre_parse.py:861(_parse_flags) - 12 0.000 0.000 0.000 0.000 {method 'islower' of 'str' objects} - 18 0.000 0.000 0.000 0.000 {method 'discard' of 'set' objects} - 1 0.000 0.000 0.000 0.000 __init__.py:255() - 1 0.000 0.000 0.000 0.000 _internal.py:216(_getintp_ctype) - 1 0.000 0.000 0.000 0.000 pickle.py:263(_Unframer) - 1 0.000 0.000 0.000 0.000 threading.py:1230(Timer) - 1 0.000 0.000 0.000 0.000 _compression.py:33(DecompressReader) - 1 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__) - 1 0.000 0.000 0.000 0.000 {method 'union' of 'set' objects} - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:30() - 2 0.000 0.000 0.000 0.000 {built-in method posix.register_at_fork} - 1 0.000 0.000 0.000 0.000 traceback.py:227(FrameSummary) - 1 0.000 0.000 0.000 0.000 extras.py:1519(MAxisConcatenator) - 3 0.000 0.000 0.000 0.000 __init__.py:405() - 5 0.000 0.000 0.000 0.000 datetime.py:46(_days_in_month) - 1 0.000 0.000 0.000 0.000 {built-in method posix.urandom} - 1 0.000 0.000 0.000 0.000 encoder.py:104(__init__) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1351(StructuredVoidFormat) - 1 0.000 0.000 0.000 0.000 test.py:79(MeuModulo) - 1 0.000 0.000 0.000 0.000 threading.py:573(Barrier) - 1 0.000 0.000 0.000 0.000 _internal.py:204(dummy_ctype) - 1 0.000 0.000 0.000 0.000 index_tricks.py:531(__init__) - 1 0.000 0.000 0.000 0.000 records.py:87(format_parser) - 1 0.000 0.000 0.000 0.000 arrayprint.py:905(FloatingFormat) - 1 0.000 0.000 0.000 0.000 npyio.py:106(NpzFile) - 1 0.000 0.000 0.000 0.000 random.py:103(__init_subclass__) - 1 0.000 0.000 0.000 0.000 index_tricks.py:257(__init__) - 1 0.000 0.000 0.000 0.000 {built-in method _thread.get_native_id} - 1 0.000 0.000 0.000 0.000 _pslinux.py:777(Connections) - 1 0.000 0.000 0.000 0.000 functions.py:32(MatmulBackward) - 1 0.000 0.000 0.000 0.000 arrayterator.py:16(Arrayterator) - 4 0.000 0.000 0.000 0.000 core.py:3405(dtype) - 1 0.000 0.000 0.000 0.000 _exceptions.py:38(_UFuncBinaryResolutionError) - 1 0.000 0.000 0.000 0.000 core.py:1283(_replace_dtype_fields_recursive) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1304(DatetimeFormat) - 2 0.000 0.000 0.000 0.000 pathlib.py:61(__init__) - 1 0.000 0.000 0.000 0.000 core.py:977(_MaskedBinaryOperation) - 1 0.000 0.000 0.000 0.000 _version.py:14(NumpyVersion) - 3 0.000 0.000 0.000 0.000 __init__.py:499(CFunctionType) - 1 0.000 0.000 0.000 0.000 _globals.py:80(__new__) - 1 0.000 0.000 0.000 0.000 selectors.py:290(SelectSelector) - 2 0.000 0.000 0.000 0.000 tokenize.py:60(maybe) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:367(errstate) - 1 0.000 0.000 0.000 0.000 _common.py:653(__init__) - 1 0.000 0.000 0.000 0.000 tokenize.py:59(any) - 1 0.000 0.000 0.000 0.000 index_tricks.py:313(AxisConcatenator) - 5 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects} - 1 0.000 0.000 0.000 0.000 threading.py:94(_RLock) - 1 0.000 0.000 0.000 0.000 selectors.py:206(_BaseSelectorImpl) - 1 0.000 0.000 0.000 0.000 parse.py:191(_NetlocResultMixinStr) - 1 0.000 0.000 0.000 0.000 {method 'find' of 'str' objects} - 1 0.000 0.000 0.000 0.000 _weakrefset.py:81(add) - 1 0.000 0.000 0.000 0.000 _exceptions.py:54(_UFuncNoLoopError) - 1 0.000 0.000 0.000 0.000 __init__.py:318(CDLL) - 1 0.000 0.000 0.000 0.000 pathlib.py:57(_Flavour) - 1 0.000 0.000 0.000 0.000 core.py:2372(_MaskedPrintOption) - 9 0.000 0.000 0.000 0.000 _globals.py:86(__repr__) - 1 0.000 0.000 0.000 0.000 datetime.py:1141(tzinfo) - 1 0.000 0.000 0.000 0.000 enum.py:389(__iter__) - 1 0.000 0.000 0.000 0.000 parse.py:221(_NetlocResultMixinBytes) - 1 0.000 0.000 0.000 0.000 decoder.py:20(JSONDecodeError) - 1 0.000 0.000 0.000 0.000 __init__.py:215() - 5 0.000 0.000 0.000 0.000 datetime.py:441(_check_tzinfo_arg) - 1 0.000 0.000 0.000 0.000 _datasource.py:536(Repository) - 1 0.000 0.000 0.000 0.000 parse.py:797(Quoter) - 1 0.000 0.000 0.000 0.000 traceback.py:318(StackSummary) - 1 0.000 0.000 0.000 0.000 core.py:6712(_extrema_operation) - 1 0.000 0.000 0.000 0.000 test.py:96() - 1 0.000 0.000 0.000 0.000 __init__.py:1287(Popen) - 1 0.000 0.000 0.000 0.000 selectors.py:442(EpollSelector) - 1 0.000 0.000 0.000 0.000 subprocess.py:136(TimeoutExpired) - 2 0.000 0.000 0.000 0.000 __init__.py:367(_FuncPtr) - 1 0.000 0.000 0.000 0.000 pathlib.py:601(_PathParents) - 1 0.000 0.000 0.000 0.000 __future__.py:81(_Feature) - 1 0.000 0.000 0.000 0.000 _exceptions.py:99(_UFuncOutputCastingError) - 1 0.000 0.000 0.000 0.000 ast.py:347(NodeVisitor) - 1 0.000 0.000 0.000 0.000 tokenize.py:45(TokenInfo) - 6 0.000 0.000 0.000 0.000 core.py:846(__init__) - 1 0.000 0.000 0.000 0.000 index_tricks.py:563(__init__) - 1 0.000 0.000 0.000 0.000 dis.py:479(Bytecode) - 1 0.000 0.000 0.000 0.000 stride_tricks.py:15(DummyArray) - 3 0.000 0.000 0.000 0.000 core.py:806(__init__) - 1 0.000 0.000 0.000 0.000 _exceptions.py:132(AxisError) - 3 0.000 0.000 0.000 0.000 core.py:1362(getmask) - 1 0.000 0.000 0.000 0.000 selectors.py:341(_PollLikeSelector) - 1 0.000 0.000 0.000 0.000 threading.py:249(__exit__) - 1 0.000 0.000 0.000 0.000 _pslinux.py:1189(RootFsDeviceFinder) - 1 0.000 0.000 0.000 0.000 threading.py:246(__enter__) - 1 0.000 0.000 0.000 0.000 parse.py:146(_ResultMixinBytes) - 1 0.000 0.000 0.000 0.000 core.py:1125(_DomainedBinaryOperation) - 1 0.000 0.000 0.000 0.000 function_base.py:2117(vectorize) - 1 0.000 0.000 0.000 0.000 numerictypes.py:424(_typedict) - 1 0.000 0.000 0.000 0.000 _datasource.py:99(__init__) - 1 0.000 0.000 0.000 0.000 core.py:8209(_convert2ma) - 1 0.000 0.000 0.000 0.000 core.py:2589(MaskedIterator) - 1 0.000 0.000 0.000 0.000 threading.py:261(_is_owned) - 2 0.000 0.000 0.000 0.000 arrayprint.py:493(_recursive_guard) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1245(ComplexFloatingFormat) - 1 0.000 0.000 0.000 0.000 _iotools.py:133(LineSplitter) - 1 0.000 0.000 0.000 0.000 _pytesttester.py:46(PytestTester) - 1 0.000 0.000 0.000 0.000 parse.py:326(DefragResult) - 1 0.000 0.000 0.000 0.000 {built-in method posix.confstr} - 1 0.000 0.000 0.000 0.000 _compression.py:9(BaseStream) - 1 0.000 0.000 0.000 0.000 core.py:190() - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_md5} - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.set_typeDict} - 1 0.000 0.000 0.000 0.000 _exceptions.py:72(_UFuncCastingError) - 1 0.000 0.000 0.000 0.000 _exceptions.py:32(UFuncTypeError) - 1 0.000 0.000 0.000 0.000 parse.py:138(_ResultMixinStr) - 1 0.000 0.000 0.000 0.000 activation.py:4(Activation) - 4 0.000 0.000 0.000 0.000 core.py:6521(__has_singleton) - 1 0.000 0.000 0.000 0.000 _common.py:648(_WrapNumbers) - 1 0.000 0.000 0.000 0.000 loss.py:4(Loss) - 1 0.000 0.000 0.000 0.000 optimizer.py:4(Optimizer) - 1 0.000 0.000 0.000 0.000 _globals.py:60(_NoValueType) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1222(IntegerFormat) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1278(_TimelikeFormat) - 4 0.000 0.000 0.000 0.000 {built-in method _warnings._filters_mutated} - 1 0.000 0.000 0.000 0.000 threading.py:1177(_make_invoke_excepthook) - 1 0.000 0.000 0.000 0.000 core.py:195() - 2 0.000 0.000 0.000 0.000 __init__.py:101(CFunctionType) - 1 0.000 0.000 0.000 0.000 index_tricks.py:306(__init__) - 1 0.000 0.000 0.000 0.000 linear.py:4(Linear) - 2 0.000 0.000 0.000 0.000 core.py:3421(shape) - 1 0.000 0.000 0.000 0.000 parse.py:334(SplitResult) - 1 0.000 0.000 0.000 0.000 parse.py:345(DefragResultBytes) - 1 0.000 0.000 0.000 0.000 numeric.py:61(ComplexWarning) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:183(_ndptr) - 1 0.000 0.000 0.000 0.000 pathlib.py:1569(WindowsPath) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1235(BoolFormat) - 5 0.000 0.000 0.000 0.000 enum.py:1009() - 1 0.000 0.000 0.000 0.000 _datasource.py:74(_FileOpeners) - 3 0.000 0.000 0.000 0.000 {built-in method builtins.callable} - 1 0.000 0.000 0.000 0.000 {built-in method posix.sysconf} - 2 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 linalg.py:44(LinAlgError) - 1 0.000 0.000 0.000 0.000 parse.py:339(ParseResult) - 1 0.000 0.000 0.000 0.000 {method 'cast' of 'memoryview' objects} - 2 0.000 0.000 0.000 0.000 index_tricks.py:145(__init__) - 1 0.000 0.000 0.000 0.000 selectors.py:60(_SelectorMapping) - 1 0.000 0.000 0.000 0.000 selectors.py:433(PollSelector) - 1 0.000 0.000 0.000 0.000 threading.py:494(Event) - 1 0.000 0.000 0.000 0.000 sgd.py:4(SGD) - 1 0.000 0.000 0.000 0.000 tokenize.py:162(Untokenizer) - 2 0.000 0.000 0.000 0.000 {built-in method maketrans} - 1 0.000 0.000 0.000 0.000 parameter.py:5(Parameter) - 1 0.000 0.000 0.000 0.000 _internal.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 threading.py:376(Semaphore) - 2 0.000 0.000 0.000 0.000 __init__.py:437(__init__) - 1 0.000 0.000 0.000 0.000 copyreg.py:22(constructor) - 1 0.000 0.000 0.000 0.000 index_tricks.py:619(ndindex) - 1 0.000 0.000 0.000 0.000 core.py:6821(_frommethod) - 1 0.000 0.000 0.000 0.000 pathlib.py:1002(PurePosixPath) - 1 0.000 0.000 0.000 0.000 :1() - 1 0.000 0.000 0.000 0.000 index_tricks.py:570(ndenumerate) - 1 0.000 0.000 0.000 0.000 _globals.py:33(ModuleDeprecationWarning) - 2 0.000 0.000 0.000 0.000 {method 'end' of 're.Match' objects} - 1 0.000 0.000 0.000 0.000 functions.py:3(AddBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:153(py_object) - 1 0.000 0.000 0.000 0.000 threading.py:1281(_DummyThread) - 1 0.000 0.000 0.000 0.000 threading.py:896(_set_ident) - 1 0.000 0.000 0.000 0.000 pathlib.py:557(_RecursiveWildcardSelector) - 3 0.000 0.000 0.000 0.000 core.py:867(__init__) - 1 0.000 0.000 0.000 0.000 {built-in method psutil._psutil_posix.getpagesize} - 1 0.000 0.000 0.000 0.000 test.py:101() - 1 0.000 0.000 0.000 0.000 activation.py:15(Sigmoid) - 1 0.000 0.000 0.000 0.000 parse.py:353(SplitResultBytes) - 1 0.000 0.000 0.000 0.000 __init__.py:436(LibraryLoader) - 1 0.000 0.000 0.000 0.000 _endian.py:23(_swapped_meta) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1341(SubArrayFormat) - 1 0.000 0.000 0.000 0.000 core.py:194() - 1 0.000 0.000 0.000 0.000 subprocess.py:419(CompletedProcess) - 1 0.000 0.000 0.000 0.000 utils.py:126(_Deprecate) - 1 0.000 0.000 0.000 0.000 numbers.py:12(Number) - 2 0.000 0.000 0.000 0.000 core.py:883(__init__) - 3 0.000 0.000 0.000 0.000 {method 'bit_length' of 'int' objects} - 1 0.000 0.000 0.000 0.000 index_tricks.py:212(MGridClass) - 1 0.000 0.000 0.000 0.000 pathlib.py:510(_PreciseSelector) - 2 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 loss.py:17(MSELoss) - 1 0.000 0.000 0.000 0.000 _exceptions.py:118(TooHardError) - 1 0.000 0.000 0.000 0.000 ast.py:476(_ABC) - 1 0.000 0.000 0.000 0.000 pickle.py:73(PickleError) - 2 0.000 0.000 0.000 0.000 index_tricks.py:762(__init__) - 1 0.000 0.000 0.000 0.000 index_tricks.py:264(OGridClass) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:360(_unspecified) - 1 0.000 0.000 0.000 0.000 parse.py:358(ParseResultBytes) - 1 0.000 0.000 0.000 0.000 ast.py:505(Num) - 1 0.000 0.000 0.000 0.000 core.py:2378(__init__) - 1 0.000 0.000 0.000 0.000 __init__.py:396(PyDLL) - 1 0.000 0.000 0.000 0.000 dis.py:209(Instruction) - 1 0.000 0.000 0.000 0.000 extras.py:1549(mr_class) - 1 0.000 0.000 0.000 0.000 pathlib.py:526(_WildcardSelector) - 1 0.000 0.000 0.000 0.000 core.py:797(_DomainCheckInterval) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencoding} - 1 0.000 0.000 0.000 0.000 pickle.py:97(_Stop) - 1 0.000 0.000 0.000 0.000 _common.py:311(NoSuchProcess) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1336(TimedeltaFormat) - 1 0.000 0.000 0.000 0.000 pathlib.py:1012(PureWindowsPath) - 1 0.000 0.000 0.000 0.000 functions.py:25(ElementwiseMulBackward) - 1 0.000 0.000 0.000 0.000 core.py:822(_DomainTan) - 1 0.000 0.000 0.000 0.000 pathlib.py:504(_TerminatingSelector) - 1 0.000 0.000 0.000 0.000 pickle.py:77(PicklingError) - 1 0.000 0.000 0.000 0.000 ast.py:520(Ellipsis) - 1 0.000 0.000 0.000 0.000 shutil.py:69(Error) - 1 0.000 0.000 0.000 0.000 extras.py:264(_fromnxfunction_single) - 1 0.000 0.000 0.000 0.000 inspect.py:897(BlockFinder) - 1 0.000 0.000 0.000 0.000 ast.py:509(Str) - 1 0.000 0.000 0.000 0.000 tokenize.py:157(TokenError) - 1 0.000 0.000 0.000 0.000 polyutils.py:47(RankWarning) - 1 0.000 0.000 0.000 0.000 {built-in method math.sqrt} - 1 0.000 0.000 0.000 0.000 _endian.py:46(BigEndianStructure) - 1 0.000 0.000 0.000 0.000 inspect.py:2420(_void) - 1 0.000 0.000 0.000 0.000 {built-in method _thread._set_sentinel} - 1 0.000 0.000 0.000 0.000 pathlib.py:394(_Accessor) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha224} - 1 0.000 0.000 0.000 0.000 _pslinux.py:773(_Ipv6UnsupportedError) - 1 0.000 0.000 0.000 0.000 subprocess.py:96(SubprocessError) - 1 0.000 0.000 0.000 0.000 core.py:840(_DomainSafeDivide) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha384} - 2 0.000 0.000 0.000 0.000 {method 'clear' of 'dict' objects} - 2 0.000 0.000 0.000 0.000 {built-in method builtins.iter} - 1 0.000 0.000 0.000 0.000 socket.py:210(_GiveupOnSendfile) - 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} - 1 0.000 0.000 0.000 0.000 ast.py:513(Bytes) - 1 0.000 0.000 0.000 0.000 functions.py:10(SubBackward) - 1 0.000 0.000 0.000 0.000 pathlib.py:1562(PosixPath) - 1 0.000 0.000 0.000 0.000 polynomial.py:28(RankWarning) - 1 0.000 0.000 0.000 0.000 core.py:84(MaskedArrayFutureWarning) - 1 0.000 0.000 0.000 0.000 _iotools.py:429(ConverterLockError) - 1 0.000 0.000 0.000 0.000 pickle.py:84(UnpicklingError) - 1 0.000 0.000 0.000 0.000 ast.py:517(NameConstant) - 1 0.000 0.000 0.000 0.000 {built-in method numpy._set_promotion_state} - 1 0.000 0.000 0.000 0.000 threading.py:456(BoundedSemaphore) - 1 0.000 0.000 0.000 0.000 _common.py:339(AccessDenied) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha256} - 1 0.000 0.000 0.000 0.000 core.py:893(_MaskedUFunc) - 1 0.000 0.000 0.000 0.000 __init__.py:166(c_ushort) - 2 0.000 0.000 0.000 0.000 :1286(exec_module) - 1 0.000 0.000 0.000 0.000 index_tricks.py:718(IndexExpression) - 1 0.000 0.000 0.000 0.000 core.py:830(__init__) - 1 0.000 0.000 0.000 0.000 _common.py:324(ZombieProcess) - 1 0.000 0.000 0.000 0.000 shutil.py:82(ReadError) - 1 0.000 0.000 0.000 0.000 core.py:148(MAError) - 1 0.000 0.000 0.000 0.000 inspect.py:895(EndOfBlock) - 1 0.000 0.000 0.000 0.000 index_tricks.py:436(RClass) - 1 0.000 0.000 0.000 0.000 __init__.py:237(c_char_p) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._reload_guard} - 1 0.000 0.000 0.000 0.000 shutil.py:75(SpecialFileError) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha512} - 1 0.000 0.000 0.000 0.000 _common.py:630(deprecated_method) - 1 0.000 0.000 0.000 0.000 _common.py:350(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 threading.py:1260(_MainThread) - 1 0.000 0.000 0.000 0.000 _globals.py:47(VisibleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 __init__.py:248(c_bool) - 1 0.000 0.000 0.000 0.000 core.py:877(_DomainGreaterEqual) - 1 0.000 0.000 0.000 0.000 core.py:861(_DomainGreater) - 1 0.000 0.000 0.000 0.000 functions.py:17(ScalarMulBackward) - 1 0.000 0.000 0.000 0.000 inspect.py:2424(_empty) - 1 0.000 0.000 0.000 0.000 functions.py:66(LogBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:162(c_short) - 1 0.000 0.000 0.000 0.000 functions.py:76(SumBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:174(c_ulong) - 1 0.000 0.000 0.000 0.000 __init__.py:253(c_wchar_p) - 1 0.000 0.000 0.000 0.000 shutil.py:72(SameFileError) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencodeerrors} - 1 0.000 0.000 0.000 0.000 index_tricks.py:538(CClass) - 1 0.000 0.000 0.000 0.000 contextlib.py:59(_recreate_cm) - 1 0.000 0.000 0.000 0.000 extras.py:320(_fromnxfunction_allargs) - 1 0.000 0.000 0.000 0.000 functions.py:100(DivisionBackward) - 1 0.000 0.000 0.000 0.000 threading.py:1095(daemon) - 1 0.000 0.000 0.000 0.000 core.py:156(MaskError) - 1 0.000 0.000 0.000 0.000 extras.py:282(_fromnxfunction_seq) - 1 0.000 0.000 0.000 0.000 functions.py:48(PowBackward) - 1 0.000 0.000 0.000 0.000 shutil.py:79(ExecError) - 1 0.000 0.000 0.000 0.000 functions.py:84(ReshapeBackward) - 1 0.000 0.000 0.000 0.000 _iotools.py:421(ConverterError) - 1 0.000 0.000 0.000 0.000 __init__.py:232(c_char) - 1 0.000 0.000 0.000 0.000 shutil.py:85(RegistryError) - 1 0.000 0.000 0.000 0.000 functions.py:91(TransposeBackward) - 1 0.000 0.000 0.000 0.000 extras.py:295(_fromnxfunction_args) - 1 0.000 0.000 0.000 0.000 random.py:729(seed) - 1 0.000 0.000 0.000 0.000 multiarray.py:152(concatenate) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._set_madvise_hugepage} - 1 0.000 0.000 0.000 0.000 _iotools.py:437(ConversionWarning) - 1 0.000 0.000 0.000 0.000 multiarray.py:1079(copyto) - 1 0.000 0.000 0.000 0.000 _distributor_init.py:1() - 1 0.000 0.000 0.000 0.000 __init__.py:258(c_wchar) - 1 0.000 0.000 0.000 0.000 __init__.py:170(c_long) - 1 0.000 0.000 0.000 0.000 threading.py:727(BrokenBarrierError) - 1 0.000 0.000 0.000 0.000 __init__.py:199(c_longdouble) - 1 0.000 0.000 0.000 0.000 shutil.py:89(_GiveupOnFastCopy) - 1 0.000 0.000 0.000 0.000 tokenize.py:159(StopTokenizing) - 1 0.000 0.000 0.000 0.000 __init__.py:183(c_int) - 1 0.000 0.000 0.000 0.000 __init__.py:220(c_ubyte) - 1 0.000 0.000 0.000 0.000 __init__.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 __init__.py:187(c_uint) - 1 0.000 0.000 0.000 0.000 __init__.py:195(c_double) - 1 0.000 0.000 0.000 0.000 __init__.py:191(c_float) - 1 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 __init__.py:227(c_byte) - 1 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects} - - diff --git a/profile2.txt b/profile2.txt deleted file mode 100644 index 1a5abf1..0000000 --- a/profile2.txt +++ /dev/null @@ -1,1084 +0,0 @@ -CPU Usage: 8.1% -Memory Usage: 87.0% -tensor([[ -[45.0, 45.0,], - [50.0, 50.0,], - [55.0, 55.0,]], -[ -[45.0, 45.0,], - [50.0, 50.0,], - [55.0, 55.0,]], -[ -[45.0, 45.0,], - [50.0, 50.0,], - [55.0, 55.0,]], -[ -[45.0, 45.0,], - [50.0, 50.0,], - [55.0, 55.0,]], -[ -[45.0, 45.0,], - [50.0, 50.0,], - [55.0, 55.0,]]], device="cpu", requires_grad=None) - 94073 function calls (91822 primitive calls) in 1.314 seconds - - Ordered by: cumulative time - - ncalls tottime percall cumtime percall filename:lineno(function) - 197/1 0.006 0.000 1.314 1.314 {built-in method builtins.exec} - 1 0.000 0.000 1.314 1.314 test.py:2() - 1 0.000 0.000 1.002 1.002 __init__.py:1692(cpu_percent) - 1 1.001 1.001 1.001 1.001 {built-in method time.sleep} - 18 0.002 0.000 0.557 0.031 __init__.py:1() - 197/5 0.003 0.000 0.309 0.062 :986(_find_and_load) - 197/5 0.002 0.000 0.309 0.062 :956(_find_and_load_unlocked) - 186/5 0.002 0.000 0.308 0.062 :650(_load_unlocked) - 144/5 0.001 0.000 0.307 0.061 :842(exec_module) - 291/5 0.000 0.000 0.304 0.061 :211(_call_with_frames_removed) - 217/25 0.002 0.000 0.270 0.011 :1017(_handle_fromlist) - 384/12 0.002 0.000 0.269 0.022 {built-in method builtins.__import__} - 144 0.003 0.000 0.065 0.000 :914(get_code) - 1 0.000 0.000 0.058 0.058 multiarray.py:1() - 1 0.000 0.000 0.056 0.056 overrides.py:1() - 186/184 0.001 0.000 0.047 0.000 :549(module_from_spec) - 194 0.003 0.000 0.042 0.000 :890(_find_spec) - 1 0.000 0.000 0.041 0.041 __init__.py:7() - 144 0.001 0.000 0.037 0.000 :638(_compile_bytecode) - 177 0.000 0.000 0.037 0.000 :1399(find_spec) - 177 0.002 0.000 0.036 0.000 :1367(_get_spec) - 144 0.036 0.000 0.036 0.000 {built-in method marshal.loads} - 23 0.000 0.000 0.033 0.001 :1164(create_module) - 23 0.025 0.001 0.033 0.001 {built-in method _imp.create_dynamic} - 331 0.008 0.000 0.031 0.000 :1498(find_spec) - 1 0.001 0.001 0.028 0.028 numeric.py:1() - 1 0.000 0.000 0.026 0.026 py3k.py:1() - 293/291 0.011 0.000 0.026 0.000 {built-in method builtins.__build_class__} - 314 0.003 0.000 0.024 0.000 overrides.py:170(decorator) - 2 0.000 0.000 0.019 0.009 shape_base.py:1() - 153 0.001 0.000 0.016 0.000 re.py:289(_compile) - 1 0.000 0.000 0.015 0.015 _pickle.py:1() - 144 0.003 0.000 0.015 0.000 :1034(get_data) - 31 0.000 0.000 0.015 0.000 sre_compile.py:759(compile) - 1 0.003 0.003 0.015 0.015 fromnumeric.py:1() - 1 0.001 0.001 0.015 0.015 core.py:1() - 28 0.000 0.000 0.015 0.001 re.py:250(compile) - 1 0.000 0.000 0.015 0.015 index_tricks.py:1() - 1 0.000 0.000 0.014 0.014 pathlib.py:1() - 284 0.003 0.000 0.014 0.000 overrides.py:88(verify_matching_signatures) - 1 0.000 0.000 0.013 0.013 _pslinux.py:5() - 23/18 0.000 0.000 0.013 0.001 :1172(exec_module) - 23/18 0.004 0.000 0.013 0.001 {built-in method _imp.exec_dynamic} - 1 0.000 0.000 0.012 0.012 _common.py:5() - 755 0.001 0.000 0.012 0.000 :135(_path_stat) - 51 0.005 0.000 0.011 0.000 __init__.py:313(namedtuple) - 186 0.002 0.000 0.011 0.000 :477(_init_module_attrs) - 317 0.003 0.000 0.011 0.000 function_base.py:483(add_newdoc) - 759 0.011 0.000 0.011 0.000 {built-in method posix.stat} - 1 0.000 0.000 0.010 0.010 _add_newdocs.py:1() - 618 0.002 0.000 0.010 0.000 _inspect.py:96(getargspec) - 1740 0.004 0.000 0.009 0.000 :121(_path_join) - 1 0.000 0.000 0.008 0.008 defmatrix.py:1() - 31 0.000 0.000 0.008 0.000 sre_parse.py:937(parse) - 1 0.000 0.000 0.008 0.008 inspect.py:1() - 1 0.000 0.000 0.008 0.008 tensor.py:1() - 1 0.000 0.000 0.008 0.008 numerictypes.py:1() - 288 0.003 0.000 0.008 0.000 :354(cache_from_source) - 62/31 0.000 0.000 0.008 0.000 sre_parse.py:435(_parse_sub) - 65/31 0.003 0.000 0.007 0.000 sre_parse.py:493(_parse) - 385 0.004 0.000 0.007 0.000 functools.py:34(update_wrapper) - 144 0.007 0.000 0.007 0.000 {built-in method io.open_code} - 7 0.000 0.000 0.007 0.001 enum.py:483(_convert_) - 1 0.000 0.000 0.007 0.007 _internal.py:1() - 1 0.000 0.000 0.006 0.006 _methods.py:1() - 1 0.000 0.000 0.006 0.006 pickle.py:1() - 1 0.000 0.000 0.006 0.006 version.py:1() - 311 0.001 0.000 0.006 0.000 :376(cached) - 347 0.001 0.000 0.006 0.000 :194(_lock_unlock_module) - 79 0.000 0.000 0.006 0.000 enum.py:313(__call__) - 1 0.000 0.000 0.006 0.006 linalg.py:1() - 1 0.000 0.000 0.006 0.006 defchararray.py:1() - 31 0.000 0.000 0.006 0.000 sre_compile.py:598(_code) - 1 0.000 0.000 0.006 0.006 socket.py:4() - 144 0.006 0.000 0.006 0.000 {method 'read' of '_io.BufferedReader' objects} - 9 0.000 0.000 0.006 0.001 enum.py:430(_create_) - 167 0.001 0.000 0.006 0.000 :484(_get_cached) - 1 0.000 0.000 0.005 0.005 _version.py:7() - 614 0.005 0.000 0.005 0.000 _inspect.py:65(getargs) - 1 0.000 0.000 0.005 0.005 datetime.py:1() - 1 0.000 0.000 0.005 0.005 _compat.py:5() - 1 0.000 0.000 0.005 0.005 scimath.py:1() - 14 0.002 0.000 0.005 0.000 enum.py:157(__new__) - 4828 0.005 0.000 0.005 0.000 {built-in method builtins.getattr} - 1 0.000 0.000 0.005 0.005 _pslinux.py:1667(Process) - 17 0.000 0.000 0.005 0.000 :746(create_module) - 1740 0.003 0.000 0.004 0.000 :123() - 17 0.004 0.000 0.004 0.000 {built-in method _imp.create_builtin} - 197 0.001 0.000 0.004 0.000 :147(__enter__) - 544 0.003 0.000 0.004 0.000 :157(_get_module_lock) - 1 0.000 0.000 0.004 0.004 shutil.py:1() - 118/31 0.002 0.000 0.004 0.000 sre_compile.py:71(_compile) - 1 0.000 0.000 0.004 0.004 npyio.py:1() - 234 0.000 0.000 0.004 0.000 :154(_path_isfile) - 1 0.000 0.000 0.004 0.004 secrets.py:1() - 258 0.001 0.000 0.004 0.000 :145(_path_is_mode_type) - 1 0.000 0.000 0.004 0.004 ntpath.py:2() - 1 0.000 0.000 0.003 0.003 linecache.py:1() - 1 0.000 0.000 0.003 0.003 _ufunc_config.py:1() - 1 0.000 0.000 0.003 0.003 parse.py:1() - 8401 0.003 0.000 0.003 0.000 {built-in method builtins.isinstance} - 2 0.000 0.000 0.003 0.002 polynomial.py:1() - 544 0.003 0.000 0.003 0.000 :78(acquire) - 14 0.000 0.000 0.003 0.000 core.py:115(doc_note) - 1 0.000 0.000 0.003 0.003 decoder.py:1() - 386 0.001 0.000 0.003 0.000 :1330(_path_importer_cache) - 167 0.001 0.000 0.003 0.000 :1493(_get_spec) - 1 0.000 0.000 0.003 0.003 type_check.py:1() - 1 0.000 0.000 0.003 0.003 tokenize.py:1() - 1 0.000 0.000 0.003 0.003 getlimits.py:158(_register_known_types) - 288 0.001 0.000 0.003 0.000 :127(_path_split) - 2 0.000 0.000 0.003 0.001 function_base.py:1() - 544 0.002 0.000 0.003 0.000 :103(release) - 317 0.001 0.000 0.003 0.000 function_base.py:469(_add_docstring) - 809 0.003 0.000 0.003 0.000 {built-in method __new__ of type object at 0x902780} - 1 0.000 0.000 0.003 0.003 tensor.py:15(Tensor) - 1 0.000 0.000 0.003 0.003 extras.py:1() - 2 0.000 0.000 0.003 0.001 __init__.py:339(__init__) - 2 0.003 0.001 0.003 0.001 {built-in method _ctypes.dlopen} - 1 0.000 0.000 0.003 0.003 hmac.py:1() - 144 0.000 0.000 0.003 0.000 :1075(path_stats) - 6 0.000 0.000 0.002 0.000 getlimits.py:34(__init__) - 1 0.000 0.000 0.002 0.002 _add_newdocs_scalars.py:1() - 1 0.000 0.000 0.002 0.002 _type_aliases.py:1() - 1 0.000 0.000 0.002 0.002 subprocess.py:10() - 28 0.001 0.000 0.002 0.000 inspect.py:625(cleandoc) - 36 0.000 0.000 0.002 0.000 abc.py:84(__new__) - 167 0.001 0.000 0.002 0.000 :689(spec_from_file_location) - 1 0.000 0.000 0.002 0.002 signal.py:1() - 7 0.001 0.000 0.002 0.000 enum.py:500() - 1 0.000 0.000 0.002 0.002 twodim_base.py:1() - 2334 0.002 0.000 0.002 0.000 {method 'join' of 'str' objects} - 22 0.000 0.000 0.002 0.000 :1317(_path_hooks) - 1 0.000 0.000 0.002 0.002 pickle.py:197() - 22 0.000 0.000 0.002 0.000 :1549(_fill_cache) - 1 0.000 0.000 0.002 0.002 linear.py:1() - 58 0.001 0.000 0.002 0.000 sre_compile.py:276(_optimize_charset) - 36 0.000 0.000 0.002 0.000 getlimits.py:111(_float_to_str) - 1 0.000 0.000 0.002 0.002 _pocketfft.py:1() - 1 0.000 0.000 0.002 0.002 scanner.py:1() - 10 0.000 0.000 0.002 0.000 extras.py:234(__init__) - 107 0.000 0.000 0.002 0.000 re.py:188(match) - 10 0.000 0.000 0.002 0.000 extras.py:238(getdoc) - 1867 0.002 0.000 0.002 0.000 :222(_verbose_message) - 2241 0.002 0.000 0.002 0.000 {built-in method builtins.hasattr} - 197 0.000 0.000 0.002 0.000 :151(__exit__) - 1 0.000 0.000 0.002 0.002 dis.py:1() - 22 0.002 0.000 0.002 0.000 {built-in method posix.listdir} - 2188 0.001 0.000 0.002 0.000 {built-in method builtins.setattr} - 304 0.001 0.000 0.002 0.000 {built-in method builtins.max} - 192 0.001 0.000 0.001 0.000 enum.py:75(__setitem__) - 31 0.000 0.000 0.001 0.000 sre_compile.py:536(_compile_info) - 317 0.001 0.000 0.001 0.000 function_base.py:451(_needs_add_docstring) - 11 0.001 0.000 0.001 0.000 tensor.py:20(__init__) - 1 0.000 0.000 0.001 0.001 ast.py:1() - 144 0.001 0.000 0.001 0.000 :553(_classify_pyc) - 1 0.000 0.000 0.001 0.001 bz2.py:1() - 18 0.000 0.000 0.001 0.000 arrayprint.py:1571(_array_str_implementation) - 24 0.000 0.000 0.001 0.000 _add_newdocs_scalars.py:71(add_newdoc_for_scalar_type) -4788/4664 0.001 0.000 0.001 0.000 {built-in method builtins.len} - 1 0.000 0.000 0.001 0.001 arrayprint.py:1() - 23 0.000 0.000 0.001 0.000 overrides.py:221(decorator) - 1 0.000 0.000 0.001 0.001 _psposix.py:5() - 18 0.000 0.000 0.001 0.000 arrayprint.py:506(wrapper) - 568 0.001 0.000 0.001 0.000 :1(__new__) - 432 0.001 0.000 0.001 0.000 :79(_unpack_uint32) - 1 0.000 0.000 0.001 0.001 module.py:1() - 144 0.001 0.000 0.001 0.000 :586(_validate_timestamp_pyc) - 618 0.001 0.000 0.001 0.000 _inspect.py:13(ismethod) - 18 0.001 0.000 0.001 0.000 arrayprint.py:1564(_guarded_repr_or_str) - 3770 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects} - 50 0.000 0.000 0.001 0.000 core.py:131(get_object_signature) - 2 0.000 0.000 0.001 0.001 utils.py:1() - 516 0.001 0.000 0.001 0.000 :389(parent) - 1255 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects} - 1 0.000 0.000 0.001 0.001 random.py:1() - 1 0.000 0.000 0.001 0.001 contextvars.py:1() - 22 0.000 0.000 0.001 0.000 :1590(path_hook_for_FileFinder) - 757 0.001 0.000 0.001 0.000 sre_parse.py:164(__getitem__) - 196 0.001 0.000 0.001 0.000 :176(cb) - 14 0.001 0.000 0.001 0.000 enum.py:200() - 3 0.000 0.000 0.001 0.000 warnings.py:130(filterwarnings) - 483 0.000 0.000 0.001 0.000 sre_parse.py:254(get) - 146/59 0.001 0.000 0.001 0.000 sre_parse.py:174(getwidth) - 383 0.001 0.000 0.001 0.000 functools.py:64(wraps) - 1 0.000 0.000 0.001 0.001 encoder.py:1() - 4 0.000 0.000 0.001 0.000 __init__.py:1595(cpu_times) - 196 0.001 0.000 0.001 0.000 :58(__init__) - 1 0.000 0.000 0.001 0.001 _exceptions.py:1() - 3145 0.001 0.000 0.001 0.000 {method 'append' of 'list' objects} - 1 0.000 0.000 0.001 0.001 lzma.py:1() - 618 0.001 0.000 0.001 0.000 _inspect.py:26(isfunction) - 26 0.000 0.000 0.001 0.000 core.py:6832(__init__) - 1 0.000 0.000 0.001 0.001 numbers.py:4() - 3 0.000 0.000 0.001 0.000 {built-in method builtins.print} - 548 0.001 0.000 0.001 0.000 :867(__exit__) - 2154 0.001 0.000 0.001 0.000 {method 'startswith' of 'str' objects} - 1 0.000 0.000 0.001 0.001 parameter.py:1() - 26 0.000 0.000 0.001 0.000 core.py:6837(getdoc) - 1 0.000 0.000 0.001 0.001 selectors.py:1() - 576 0.001 0.000 0.001 0.000 :129() - 621 0.001 0.000 0.001 0.000 sre_parse.py:233(__next) - 614 0.001 0.000 0.001 0.000 _inspect.py:41(iscode) - 314 0.001 0.000 0.001 0.000 {method 'replace' of 'code' objects} - 1 0.000 0.000 0.001 0.001 tensor.py:196(__str__) - 52 0.000 0.000 0.001 0.000 core.py:894(__init__) - 548 0.001 0.000 0.001 0.000 :863(__enter__) - 21/1 0.000 0.000 0.001 0.001 tensor.py:197(print_recursively) - 194 0.000 0.000 0.001 0.000 :725(find_spec) - 1 0.000 0.000 0.001 0.001 opcode.py:2() - 1 0.000 0.000 0.001 0.001 ufunclike.py:1() - 1 0.000 0.000 0.001 0.001 nanfunctions.py:1() - 12 0.000 0.000 0.001 0.000 datetime.py:488(__new__) - 285 0.001 0.000 0.001 0.000 {method 'format' of 'str' objects} - 362 0.001 0.000 0.001 0.000 {method 'strip' of 'str' objects} - 3 0.000 0.000 0.001 0.000 _pslinux.py:584(cpu_times) - 22 0.000 0.000 0.001 0.000 :63(__init__) - 1 0.000 0.000 0.001 0.001 tensor.py:138(backward) - 1 0.000 0.000 0.001 0.001 _type_aliases.py:94(_add_aliases) - 238 0.001 0.000 0.001 0.000 enum.py:417(__setattr__) - 14 0.000 0.000 0.001 0.000 re.py:223(split) - 1288 0.001 0.000 0.001 0.000 {built-in method _imp.acquire_lock} - 14 0.000 0.000 0.001 0.000 core.py:8222(__init__) - 1 0.000 0.000 0.001 0.001 glob.py:1() - 22 0.000 0.000 0.001 0.000 :1459(__init__) - 1288 0.001 0.000 0.001 0.000 {built-in method _imp.release_lock} - 1 0.000 0.000 0.001 0.001 getlimits.py:1() - 6 0.000 0.000 0.001 0.000 numeric.py:2536(extend_all) - 14 0.000 0.000 0.001 0.000 core.py:8227(getdoc) - 1107 0.001 0.000 0.001 0.000 {built-in method _thread.get_ident} - 1 0.000 0.000 0.001 0.001 ctypeslib.py:1() - 46 0.000 0.000 0.001 0.000 _inspect.py:140(formatargspec) - 36 0.001 0.000 0.001 0.000 {built-in method _abc._abc_init} - 342 0.001 0.000 0.001 0.000 {built-in method numpy.core._multiarray_umath.add_docstring} - 28 0.000 0.000 0.001 0.000 sre_parse.py:96(closegroup) - 144 0.000 0.000 0.000 0.000 :516(_check_name_wrapper) - 1 0.000 0.000 0.000 0.000 sgd.py:1() - 1 0.000 0.000 0.000 0.000 mixins.py:1() - 1 0.000 0.000 0.000 0.000 threading.py:1() - 34 0.000 0.000 0.000 0.000 _pslinux.py:1646(wrap_exceptions) - 1 0.000 0.000 0.000 0.000 _globals.py:1() - 14 0.000 0.000 0.000 0.000 enum.py:143(__prepare__) - 1 0.000 0.000 0.000 0.000 hashlib.py:5() - 3 0.000 0.000 0.000 0.000 tensor.py:58(flatten) - 16 0.000 0.000 0.000 0.000 _type_aliases.py:58(bitname) - 189 0.000 0.000 0.000 0.000 :175(_path_isabs) - 30 0.000 0.000 0.000 0.000 tensor.py:184(__getitem__) - 422 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects} - 74/3 0.000 0.000 0.000 0.000 tensor.py:59(flatten_recursively) - 5 0.000 0.000 0.000 0.000 _common.py:423(wrapper) - 1 0.000 0.000 0.000 0.000 records.py:1() - 31 0.000 0.000 0.000 0.000 enum.py:938(__and__) - 984 0.000 0.000 0.000 0.000 {built-in method builtins.min} - 196 0.000 0.000 0.000 0.000 :342(__init__) - 1 0.000 0.000 0.000 0.000 _compat_pickle.py:9() - 14 0.000 0.000 0.000 0.000 hashlib.py:123(__get_openssl_constructor) - 58 0.000 0.000 0.000 0.000 {built-in method posix.getcwd} - 3 0.000 0.000 0.000 0.000 ufunclike.py:58(_fix_and_maybe_deprecate_out_named_y) - 314 0.000 0.000 0.000 0.000 overrides.py:128(array_function_dispatch) - 1 0.000 0.000 0.000 0.000 arraysetops.py:1() - 1 0.000 0.000 0.000 0.000 __init__.py:1920(virtual_memory) - 146 0.000 0.000 0.000 0.000 :35(_new_module) - 177 0.000 0.000 0.000 0.000 :800(find_spec) - 1 0.000 0.000 0.000 0.000 _string_helpers.py:1() - 3 0.000 0.000 0.000 0.000 ufunclike.py:41(_fix_out_named_y) - 1 0.000 0.000 0.000 0.000 _pslinux.py:259(set_scputimes_ntuple) - 1 0.000 0.000 0.000 0.000 mixins.py:59(NDArrayOperatorsMixin) - 1 0.000 0.000 0.000 0.000 stride_tricks.py:1() - 1 0.000 0.000 0.000 0.000 _pslinux.py:406(virtual_memory) - 233 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects} - 24 0.000 0.000 0.000 0.000 :159(_path_isdir) - 26 0.000 0.000 0.000 0.000 core.py:921(__init__) - 8 0.000 0.000 0.000 0.000 hashlib.py:79(__get_builtin_constructor) - 4 0.000 0.000 0.000 0.000 textwrap.py:414(dedent) - 376 0.000 0.000 0.000 0.000 socket.py:76() - 379 0.000 0.000 0.000 0.000 socket.py:91() - 377 0.000 0.000 0.000 0.000 socket.py:81() - 378 0.000 0.000 0.000 0.000 socket.py:86() - 1 0.000 0.000 0.000 0.000 histograms.py:1() - 1 0.000 0.000 0.000 0.000 ctypeslib.py:362(_get_scalar_type_map) - 297 0.000 0.000 0.000 0.000 sre_parse.py:249(match) - 1 0.000 0.000 0.000 0.000 functions.py:1() - 50 0.000 0.000 0.000 0.000 _internal.py:869(_ufunc_doc_signature_formatter) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:373() - 18 0.000 0.000 0.000 0.000 core.py:997(__init__) - 6 0.000 0.000 0.000 0.000 _common.py:764(open_binary) - 118 0.000 0.000 0.000 0.000 {built-in method numpy.array} - 1 0.000 0.000 0.000 0.000 _string_helpers.py:9() - 581 0.000 0.000 0.000 0.000 {method 'get' of 'dict' objects} - 109 0.000 0.000 0.000 0.000 {method 'match' of 're.Pattern' objects} - 103 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects} - 6 0.000 0.000 0.000 0.000 {built-in method io.open} - 36 0.000 0.000 0.000 0.000 getlimits.py:91(_float_to_float) - 37 0.000 0.000 0.000 0.000 enum.py:532(_get_mixins_) - 16 0.000 0.000 0.000 0.000 sre_compile.py:411(_mk_bitmap) - 1 0.000 0.000 0.000 0.000 einsumfunc.py:1() - 1603 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects} - 16 0.000 0.000 0.000 0.000 _type_aliases.py:44(_bits_of) - 53 0.000 0.000 0.000 0.000 sre_compile.py:423(_simple) - 1 0.000 0.000 0.000 0.000 pickle.py:407(_Pickler) - 291 0.000 0.000 0.000 0.000 sre_parse.py:172(append) - 17 0.000 0.000 0.000 0.000 :406(spec_from_loader) - 93 0.000 0.000 0.000 0.000 {built-in method _ctypes.POINTER} - 178 0.000 0.000 0.000 0.000 sre_parse.py:286(tell) - 1 0.000 0.000 0.000 0.000 ast.py:405(NodeTransformer) - 1 0.000 0.000 0.000 0.000 _iotools.py:1() - 14 0.000 0.000 0.000 0.000 enum.py:579(_find_new_) - 1 0.000 0.000 0.000 0.000 contextlib.py:72(inner) - 4 0.000 0.000 0.000 0.000 re.py:203(sub) - 47 0.000 0.000 0.000 0.000 sre_parse.py:355(_escape) - 40/28 0.000 0.000 0.000 0.000 sre_compile.py:461(_get_literal_prefix) - 197 0.000 0.000 0.000 0.000 :143(__init__) - 289 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects} - 58 0.000 0.000 0.000 0.000 sre_compile.py:249(_compile_charset) - 240 0.000 0.000 0.000 0.000 sre_parse.py:160(__len__) - 396 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock} - 11 0.000 0.000 0.000 0.000 abc.py:89(register) - 5 0.000 0.000 0.000 0.000 {method 'readline' of '_io.BufferedReader' objects} - 1 0.000 0.000 0.000 0.000 arraypad.py:1() - 192 0.000 0.000 0.000 0.000 enum.py:22(_is_dunder) - 70 0.000 0.000 0.000 0.000 enum.py:631(__new__) - 1 0.000 0.000 0.000 0.000 umath.py:1() - 112 0.000 0.000 0.000 0.000 {built-in method builtins.repr} - 13 0.000 0.000 0.000 0.000 mixins.py:44(_numeric_methods) - 1 0.000 0.000 0.000 0.000 base64.py:3() - 1 0.000 0.000 0.000 0.000 core.py:6527(__new__) - 433 0.000 0.000 0.000 0.000 {built-in method from_bytes} - 11 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register} - 1 0.000 0.000 0.000 0.000 legendre.py:1() - 73 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin} - 8 0.000 0.000 0.000 0.000 {built-in method builtins.sorted} - 192 0.000 0.000 0.000 0.000 enum.py:33(_is_sunder) - 1 0.000 0.000 0.000 0.000 laguerre.py:1() - 152 0.000 0.000 0.000 0.000 enum.py:12(_is_descriptor) - 52 0.000 0.000 0.000 0.000 _add_newdocs.py:6753(refer_to_array_attribute) - 31 0.000 0.000 0.000 0.000 sre_parse.py:224(__init__) - 5 0.000 0.000 0.000 0.000 {built-in method builtins.dir} - 1 0.000 0.000 0.000 0.000 defchararray.py:1908(chararray) - 1 0.000 0.000 0.000 0.000 _asarray.py:1() - 8 0.000 0.000 0.000 0.000 __init__.py:383(__getattr__) - 403 0.000 0.000 0.000 0.000 {built-in method builtins.globals} - 194 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects} - 1 0.000 0.000 0.000 0.000 _pslinux.py:600(per_cpu_times) - 1 0.000 0.000 0.000 0.000 functions.py:36(backward) - 466 0.000 0.000 0.000 0.000 {built-in method posix.fspath} - 22/12 0.000 0.000 0.000 0.000 abc.py:100(__subclasscheck__) - 14 0.000 0.000 0.000 0.000 {method 'split' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 {function SeedSequence.generate_state at 0x7fcee013cd30} - 1 0.000 0.000 0.000 0.000 __init__.py:298(Process) - 1 0.000 0.000 0.000 0.000 memmap.py:1() - 3 0.000 0.000 0.000 0.000 tensor.py:370(__matmul__) - 1 0.000 0.000 0.000 0.000 _polybase.py:1() - 51 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects} - 1 0.000 0.000 0.000 0.000 struct.py:3() - 1 0.000 0.000 0.000 0.000 hermite.py:1() - 22/12 0.000 0.000 0.000 0.000 {built-in method _abc._abc_subclasscheck} - 144 0.000 0.000 0.000 0.000 :1004(__init__) - 177 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen} - 928 0.000 0.000 0.000 0.000 {method 'lstrip' of 'str' objects} - 37 0.000 0.000 0.000 0.000 enum.py:543(_find_data_type) - 28 0.000 0.000 0.000 0.000 sre_parse.py:84(opengroup) - 4 0.000 0.000 0.000 0.000 enum.py:932(__or__) - 31 0.000 0.000 0.000 0.000 sre_parse.py:432(_uniq) - 1 0.000 0.000 0.000 0.000 chebyshev.py:1() - 3 0.000 0.000 0.000 0.000 datetime.py:1567(__new__) - 3 0.000 0.000 0.000 0.000 tokenize.py:83(_all_string_prefixes) - 1 0.000 0.000 0.000 0.000 functions.py:80(backward) - 1 0.000 0.000 0.000 0.000 hermite_e.py:1() - 1 0.000 0.000 0.000 0.000 _type_aliases.py:211(_set_array_types) - 41 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:83() - 1 0.000 0.000 0.000 0.000 os.py:42(_get_exports_list) - 121 0.000 0.000 0.000 0.000 sre_parse.py:111(__init__) - 16 0.000 0.000 0.000 0.000 sre_compile.py:413() - 17 0.000 0.000 0.000 0.000 :754(exec_module) - 331 0.000 0.000 0.000 0.000 :68(_relax_case) - 1 0.000 0.000 0.000 0.000 selectors.py:80(BaseSelector) - 317 0.000 0.000 0.000 0.000 __init__.py:385() - 8 0.000 0.000 0.000 0.000 __init__.py:390(__getitem__) - 218 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 _endian.py:1() - 1 0.000 0.000 0.000 0.000 datetime.py:2181(timezone) - 1 0.000 0.000 0.000 0.000 helper.py:1() - 1 0.000 0.000 0.000 0.000 numerictypes.py:588(_register_types) - 288 0.000 0.000 0.000 0.000 {built-in method builtins.chr} - 1 0.000 0.000 0.000 0.000 _datasource.py:1() - 1 0.000 0.000 0.000 0.000 core.py:2697(MaskedArray) - 317 0.000 0.000 0.000 0.000 {built-in method sys.intern} - 24 0.000 0.000 0.000 0.000 numerictypes.py:513(_scalar_type_key) - 118 0.000 0.000 0.000 0.000 sre_parse.py:81(groups) - 1 0.000 0.000 0.000 0.000 __init__.py:1733(calculate) - 1 0.000 0.000 0.000 0.000 _compression.py:1() - 2 0.000 0.000 0.000 0.000 enum.py:889(_missing_) - 172 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects} - 1 0.000 0.000 0.000 0.000 _psposix.py:66() - 1 0.000 0.000 0.000 0.000 traceback.py:1() - 36 0.000 0.000 0.000 0.000 _string_helpers.py:16(english_lower) - 1 0.000 0.000 0.000 0.000 numerictypes.py:440(_construct_lookups) - 2 0.000 0.000 0.000 0.000 enum.py:899(_create_pseudo_member_) - 36 0.000 0.000 0.000 0.000 getlimits.py:24(_fr1) - 1 0.000 0.000 0.000 0.000 token.py:1() - 42 0.000 0.000 0.000 0.000 getlimits.py:101(_float_conv) - 1 0.000 0.000 0.000 0.000 pickle.py:1136(_Unpickler) - 1 0.000 0.000 0.000 0.000 bisect.py:1() - 32 0.000 0.000 0.000 0.000 _type_aliases.py:46() - 14 0.000 0.000 0.000 0.000 core.py:8239(_replace_return_type) - 144 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename} - 1 0.000 0.000 0.000 0.000 loss.py:1() - 463 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects} - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:33(seterr) - 1 0.000 0.000 0.000 0.000 core.py:2808(__new__) - 16 0.000 0.000 0.000 0.000 {built-in method builtins.next} - 4/3 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.ndarray' objects} - 1 0.000 0.000 0.000 0.000 activation.py:1() - 6 0.000 0.000 0.000 0.000 core.py:1146(__init__) - 3 0.000 0.000 0.000 0.000 contextlib.py:211(contextmanager) - 76 0.000 0.000 0.000 0.000 signal.py:10() - 2 0.000 0.000 0.000 0.000 enum.py:978(_decompose) - 5 0.000 0.000 0.000 0.000 datetime.py:411(_check_date_fields) - 9 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects} - 98 0.000 0.000 0.000 0.000 types.py:171(__get__) - 1 0.000 0.000 0.000 0.000 __init__.py:335(_sanity_check) - 30 0.000 0.000 0.000 0.000 _type_aliases.py:203(_add_array_type) - 4 0.000 0.000 0.000 0.000 sre_parse.py:267(getuntil) - 186 0.000 0.000 0.000 0.000 :397(has_location) - 28 0.000 0.000 0.000 0.000 {method 'expandtabs' of 'str' objects} - 1 0.000 0.000 0.000 0.000 _machar.py:1() - 72 0.000 0.000 0.000 0.000 {method 'copy' of 'numpy.ndarray' objects} - 2 0.000 0.000 0.000 0.000 datetime.py:661(__neg__) - 82 0.000 0.000 0.000 0.000 overrides.py:121(decorator) - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:18(numeric_type_aliases) - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:100(dtype_from_ctypes_type) - 1 0.000 0.000 0.000 0.000 threading.py:1262(__init__) - 36 0.000 0.000 0.000 0.000 getlimits.py:16(_fr0) - 20 0.000 0.000 0.000 0.000 mixins.py:16(_binary_method) - 2 0.000 0.000 0.000 0.000 core.py:2966(__array_finalize__) - 2 0.000 0.000 0.000 0.000 tensor.py:557(transpose) - 1 0.000 0.000 0.000 0.000 token.py:74() - 82 0.000 0.000 0.000 0.000 overrides.py:110(set_module) - 1 0.000 0.000 0.000 0.000 opcode.py:37() - 83 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects} - 31 0.000 0.000 0.000 0.000 {built-in method _sre.compile} - 7 0.000 0.000 0.000 0.000 _common.py:444(memoize_when_activated) - 1 0.000 0.000 0.000 0.000 fnmatch.py:1() - 176 0.000 0.000 0.000 0.000 :1465() - 1 0.000 0.000 0.000 0.000 polyutils.py:1() - 2 0.000 0.000 0.000 0.000 functools.py:525(decorating_function) - 238 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects} - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:430(__enter__) - 2 0.000 0.000 0.000 0.000 posixpath.py:372(abspath) - 62 0.000 0.000 0.000 0.000 sre_compile.py:595(isstring) - 4 0.000 0.000 0.000 0.000 _common.py:400(memoize) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:74(_add_types) - 317 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects} - 1 0.000 0.000 0.000 0.000 pathlib.py:120(_WindowsFlavour) - 321 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects} - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:19(type_aliases_gen) - 14 0.000 0.000 0.000 0.000 enum.py:522(_check_for_existing_members) - 4 0.000 0.000 0.000 0.000 genericpath.py:16(exists) - 17 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin} - 1 0.000 0.000 0.000 0.000 optimizer.py:1() - 3 0.000 0.000 0.000 0.000 __init__.py:498(PYFUNCTYPE) - 1 0.000 0.000 0.000 0.000 inspect.py:2428(_ParameterKind) - 1 0.000 0.000 0.000 0.000 core.py:3115(view) - 1 0.000 0.000 0.000 0.000 __init__.py:261(_reset_cache) - 192 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass} - 144 0.000 0.000 0.000 0.000 :1029(get_filename) - 61 0.000 0.000 0.000 0.000 _inspect.py:144() - 1 0.000 0.000 0.000 0.000 __init__.py:1671(_cpu_times_deltas) - 6 0.000 0.000 0.000 0.000 os.py:670(__getitem__) - 24 0.000 0.000 0.000 0.000 sre_parse.py:295(_class_escape) - 2 0.000 0.000 0.000 0.000 __init__.py:75(CFUNCTYPE) - 10 0.000 0.000 0.000 0.000 sre_compile.py:432(_generate_overlap_table) - 1 0.000 0.000 0.000 0.000 linalg.py:74(_determine_error_states) - 1 0.000 0.000 0.000 0.000 tensor.py:361(__rmul__) - 1 0.000 0.000 0.000 0.000 tensor.py:5(CTensor) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:123(_add_integer_aliases) - 5 0.000 0.000 0.000 0.000 datetime.py:424(_check_time_fields) - 18 0.000 0.000 0.000 0.000 sre_compile.py:492(_get_charset_prefix) - 9 0.000 0.000 0.000 0.000 overrides.py:23(set_array_function_like_doc) - 85 0.000 0.000 0.000 0.000 _compat_pickle.py:167() - 252 0.000 0.000 0.000 0.000 {built-in method builtins.ord} - 47 0.000 0.000 0.000 0.000 re.py:270(escape) - 31 0.000 0.000 0.000 0.000 sre_parse.py:921(fix_flags) - 4 0.000 0.000 0.000 0.000 _collections_abc.py:657(get) - 1 0.000 0.000 0.000 0.000 tensor.py:321(__mul__) - 93 0.000 0.000 0.000 0.000 _inspect.py:131(strseq) - 1 0.000 0.000 0.000 0.000 _polybase.py:18(ABCPolyBase) - 31 0.000 0.000 0.000 0.000 {built-in method fromkeys} - 2 0.000 0.000 0.000 0.000 enum.py:997() - 2 0.000 0.000 0.000 0.000 arrayprint.py:503(decorating_function) - 14 0.000 0.000 0.000 0.000 __init__.py:141(_check_size) - 1 0.000 0.000 0.000 0.000 format.py:1() - 6 0.000 0.000 0.000 0.000 __init__.py:266(_assert_pid_not_reused) - 35 0.000 0.000 0.000 0.000 datetime.py:379(_check_int_field) - 1 0.000 0.000 0.000 0.000 pathlib.py:629(PurePath) - 1 0.000 0.000 0.000 0.000 tensor.py:75(ones_like) - 207 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects} - 2 0.000 0.000 0.000 0.000 datetime.py:1236(__new__) - 1 0.000 0.000 0.000 0.000 core.py:6545(__array_finalize__) - 1 0.000 0.000 0.000 0.000 _globals.py:93(_CopyMode) - 2 0.000 0.000 0.000 0.000 core.py:6721(__init__) - 1 0.000 0.000 0.000 0.000 tensor.py:539(sum) - 17 0.000 0.000 0.000 0.000 :232(_requires_builtin_wrapper) - 144 0.000 0.000 0.000 0.000 :839(create_module) - 63 0.000 0.000 0.000 0.000 abc.py:7(abstractmethod) - 8 0.000 0.000 0.000 0.000 {method 'sub' of 're.Pattern' objects} - 63 0.000 0.000 0.000 0.000 {method 'split' of 'bytes' objects} - 1 0.000 0.000 0.000 0.000 numbers.py:32(Complex) - 14 0.000 0.000 0.000 0.000 {built-in method builtins.round} - 1 0.000 0.000 0.000 0.000 _dtype.py:1() - 257 0.000 0.000 0.000 0.000 hmac.py:17() - 13 0.000 0.000 0.000 0.000 mixins.py:36(_inplace_binary_method) - 31 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__) - 1 0.000 0.000 0.000 0.000 __future__.py:1() - 257 0.000 0.000 0.000 0.000 hmac.py:18() - 7 0.000 0.000 0.000 0.000 getlimits.py:668(__init__) - 14 0.000 0.000 0.000 0.000 enum.py:370(__getattr__) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:435(__exit__) - 2 0.000 0.000 0.000 0.000 datetime.py:819(__new__) - 1 0.000 0.000 0.000 0.000 os.py:46() - 1 0.000 0.000 0.000 0.000 numbers.py:294(Integral) - 2 0.000 0.000 0.000 0.000 contextlib.py:71(__call__) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:151(_set_up_aliases) - 2 0.000 0.000 0.000 0.000 os.py:684(__delitem__) - 46 0.000 0.000 0.000 0.000 sre_compile.py:65(_combine_flags) - 14 0.000 0.000 0.000 0.000 enum.py:175() - 12 0.000 0.000 0.000 0.000 os.py:748(encode) - 1 0.000 0.000 0.000 0.000 _pslinux.py:118(IOPriority) - 2 0.000 0.000 0.000 0.000 random.py:94(__init__) - 1 0.000 0.000 0.000 0.000 datetime.py:1559(datetime) - 1 0.000 0.000 0.000 0.000 __init__.py:1276() - 1 0.000 0.000 0.000 0.000 ufunclike.py:16(_deprecate_out_named_y) - 14 0.000 0.000 0.000 0.000 enum.py:68(__init__) - 1 0.000 0.000 0.000 0.000 _common.py:140(NicDuplex) - 8 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects} - 1 0.000 0.000 0.000 0.000 _pytesttester.py:1() - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:54(_get_platform_and_machine) - 55 0.000 0.000 0.000 0.000 sre_parse.py:168(__setitem__) - 1 0.000 0.000 0.000 0.000 _internal.py:239(_missing_ctypes) - 120 0.000 0.000 0.000 0.000 opcode.py:39(def_op) - 14 0.000 0.000 0.000 0.000 mixins.py:26(_reflected_binary_method) - 43 0.000 0.000 0.000 0.000 _compat_pickle.py:165() - 1 0.000 0.000 0.000 0.000 socket.py:213(socket) - 8 0.000 0.000 0.000 0.000 _pslinux.py:614() - 96 0.000 0.000 0.000 0.000 {built-in method builtins.abs} - 1 0.000 0.000 0.000 0.000 pathlib.py:1025(Path) - 1 0.000 0.000 0.000 0.000 datetime.py:789(date) - 1 0.000 0.000 0.000 0.000 abc.py:1() - 2 0.000 0.000 0.000 0.000 {built-in method posix.uname} - 1 0.000 0.000 0.000 0.000 random.py:123(seed) - 78 0.000 0.000 0.000 0.000 _internal.py:880() - 1 0.000 0.000 0.000 0.000 arrayterator.py:1() - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:132(geterr) - 14 0.000 0.000 0.000 0.000 {built-in method builtins.any} - 1 0.000 0.000 0.000 0.000 _dtype_ctypes.py:1() - 2 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function} - 2 0.000 0.000 0.000 0.000 posixpath.py:334(normpath) - 1 0.000 0.000 0.000 0.000 __config__.py:3() - 1 0.000 0.000 0.000 0.000 threading.py:761(__init__) - 1 0.000 0.000 0.000 0.000 _version.py:1() - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:71(_from_ctypes_scalar) - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(concatenate) - 1 0.000 0.000 0.000 0.000 polynomial.py:1472(Polynomial) - 60 0.000 0.000 0.000 0.000 {built-in method builtins.divmod} - 4 0.000 0.000 0.000 0.000 warnings.py:181(_add_filter) - 58 0.000 0.000 0.000 0.000 sre_compile.py:453(_get_iscased) - 3 0.000 0.000 0.000 0.000 _pslinux.py:596() - 1 0.000 0.000 0.000 0.000 numbers.py:147(Real) - 1 0.000 0.000 0.000 0.000 numeric.py:150(ones) - 1 0.000 0.000 0.000 0.000 _version.py:20(get_versions) - 2 0.000 0.000 0.000 0.000 core.py:2940(_update_from) - 24 0.000 0.000 0.000 0.000 tokenize.py:94() - 1 0.000 0.000 0.000 0.000 datetime.py:1211(time) - 1 0.000 0.000 0.000 0.000 abc.py:96(__instancecheck__) - 16 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects} - 1 0.000 0.000 0.000 0.000 datetime.py:469(timedelta) - 1 0.000 0.000 0.000 0.000 __init__.py:299(loads) - 101 0.000 0.000 0.000 0.000 enum.py:506() - 1 0.000 0.000 0.000 0.000 pathlib.py:399(_NormalAccessor) - 1 0.000 0.000 0.000 0.000 _common.py:152(BatteryTime) - 1 0.000 0.000 0.000 0.000 {function Random.seed at 0x7fcef4e410d0} - 23 0.000 0.000 0.000 0.000 overrides.py:217(array_function_from_dispatcher) - 39 0.000 0.000 0.000 0.000 enum.py:223() - 6 0.000 0.000 0.000 0.000 _exceptions.py:17(_display_as_base) - 9 0.000 0.000 0.000 0.000 {built-in method numpy.seterrobj} - 4 0.000 0.000 0.000 0.000 posixpath.py:71(join) - 53 0.000 0.000 0.000 0.000 {built-in method sys._getframe} - 2 0.000 0.000 0.000 0.000 _collections_abc.py:664(__contains__) - 4 0.000 0.000 0.000 0.000 {method 'findall' of 're.Pattern' objects} - 70 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects} - 1 0.000 0.000 0.000 0.000 decoder.py:332(decode) - 1 0.000 0.000 0.000 0.000 defmatrix.py:72(matrix) - 1 0.000 0.000 0.000 0.000 legendre.py:1619(Legendre) - 1 0.000 0.000 0.000 0.000 threading.py:519(set) - 2 0.000 0.000 0.000 0.000 os.py:678(__setitem__) - 1 0.000 0.000 0.000 0.000 _iotools.py:450(StringConverter) - 19 0.000 0.000 0.000 0.000 tokenize.py:58(group) - 1 0.000 0.000 0.000 0.000 polynomial.py:1076(poly1d) - 2 0.000 0.000 0.000 0.000 __init__.py:1636(_cpu_tot_time) - 23 0.000 0.000 0.000 0.000 :1153(__init__) - 1 0.000 0.000 0.000 0.000 os.py:766(getenv) - 1 0.000 0.000 0.000 0.000 getlimits.py:364(finfo) - 1 0.000 0.000 0.000 0.000 __init__.py:187() - 1 0.000 0.000 0.000 0.000 subprocess.py:638(_use_posix_spawn) - 1 0.000 0.000 0.000 0.000 sre_compile.py:416(_bytes_to_codes) - 1 0.000 0.000 0.000 0.000 random.py:78(Random) - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:79() - 48 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects} - 12 0.000 0.000 0.000 0.000 opcode.py:43(name_op) - 1 0.000 0.000 0.000 0.000 pathlib.py:136() - 1 0.000 0.000 0.000 0.000 {method 'dot' of 'numpy.ndarray' objects} - 1 0.000 0.000 0.000 0.000 parse.py:364(_fix_result_transcoding) - 25 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects} - 2 0.000 0.000 0.000 0.000 :1238(__iter__) - 52 0.000 0.000 0.000 0.000 {method 'pop' of 'list' objects} - 1 0.000 0.000 0.000 0.000 _inspect.py:1() - 4 0.000 0.000 0.000 0.000 mixins.py:51(_unary_method) - 1 0.000 0.000 0.000 0.000 subprocess.py:688(Popen) - 16 0.000 0.000 0.000 0.000 _dtype.py:24(_kind_name) - 1 0.000 0.000 0.000 0.000 {built-in method _abc._abc_instancecheck} - 1 0.000 0.000 0.000 0.000 random.py:721(getrandbits) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:441(_setdef) - 2 0.000 0.000 0.000 0.000 {built-in method posix.unsetenv} - 4 0.000 0.000 0.000 0.000 :1221(_get_parent_path) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:41() - 1 0.000 0.000 0.000 0.000 _common.py:388(usage_percent) - 1 0.000 0.000 0.000 0.000 warnings.py:165(simplefilter) - 81 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased} - 1 0.000 0.000 0.000 0.000 laguerre.py:1606(Laguerre) - 7 0.000 0.000 0.000 0.000 core.py:2544(_arraymethod) - 1 0.000 0.000 0.000 0.000 threading.py:750(Thread) - 33 0.000 0.000 0.000 0.000 enum.py:393() - 18 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize} - 78 0.000 0.000 0.000 0.000 signal.py:22() - 2 0.000 0.000 0.000 0.000 :1205(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:505(__init__) - 4 0.000 0.000 0.000 0.000 sre_parse.py:258(getwhile) - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(copyto) - 77 0.000 0.000 0.000 0.000 signal.py:17() - 1 0.000 0.000 0.000 0.000 hermite.py:1658(Hermite) - 13 0.000 0.000 0.000 0.000 _internal.py:917(npy_ctypes_check) - 1 0.000 0.000 0.000 0.000 _exceptions.py:224(_ArrayMemoryError) - 55 0.000 0.000 0.000 0.000 enum.py:748(name) - 1 0.000 0.000 0.000 0.000 chebyshev.py:1995(Chebyshev) - 1 0.000 0.000 0.000 0.000 {built-in method math.exp} - 1 0.000 0.000 0.000 0.000 core.py:6322(mvoid) - 1 0.000 0.000 0.000 0.000 core.py:1329(make_mask_descr) - 43 0.000 0.000 0.000 0.000 enum.py:753(value) - 1 0.000 0.000 0.000 0.000 threading.py:364(notify_all) - 5 0.000 0.000 0.000 0.000 enum.py:1015(_power_of_two) - 1 0.000 0.000 0.000 0.000 threading.py:903(_set_tstate_lock) - 1 0.000 0.000 0.000 0.000 _common.py:634(outer) - 1 0.000 0.000 0.000 0.000 bz2.py:30(BZ2File) - 18 0.000 0.000 0.000 0.000 {built-in method numpy.geterrobj} - 1 0.000 0.000 0.000 0.000 hermite_e.py:1650(HermiteE) - 2 0.000 0.000 0.000 0.000 copyreg.py:12(pickle) - 68 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_tolower} - 15 0.000 0.000 0.000 0.000 {method 'encode' of 'str' objects} - 1 0.000 0.000 0.000 0.000 py3k.py:84(contextlib_nullcontext) - 2 0.000 0.000 0.000 0.000 :1225(_recalculate) - 1 0.000 0.000 0.000 0.000 __init__.py:216() - 2 0.000 0.000 0.000 0.000 _collections_abc.py:72(_check_methods) - 1 0.000 0.000 0.000 0.000 decoder.py:284(__init__) - 2 0.000 0.000 0.000 0.000 functools.py:487(lru_cache) - 9 0.000 0.000 0.000 0.000 _pytesttester.py:76(__init__) - 10 0.000 0.000 0.000 0.000 enum.py:398(__members__) - 1 0.000 0.000 0.000 0.000 lzma.py:38(LZMAFile) - 5 0.000 0.000 0.000 0.000 _common.py:836(get_procfs_path) - 3 0.000 0.000 0.000 0.000 datetime.py:2201(_create) - 1 0.000 0.000 0.000 0.000 numbers.py:267(Rational) - 17 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 getlimits.py:32(MachArLike) - 1 0.000 0.000 0.000 0.000 threading.py:341(notify) - 1 0.000 0.000 0.000 0.000 threading.py:900(_set_native_id) - 1 0.000 0.000 0.000 0.000 enum.py:389(__iter__) - 1 0.000 0.000 0.000 0.000 posixpath.py:150(dirname) - 14 0.000 0.000 0.000 0.000 {method 'mro' of 'type' objects} - 1 0.000 0.000 0.000 0.000 os.py:1073(__subclasshook__) - 1 0.000 0.000 0.000 0.000 _internal.py:613(_Stream) - 1 0.000 0.000 0.000 0.000 inspect.py:2612(BoundArguments) - 2 0.000 0.000 0.000 0.000 {built-in method posix.putenv} - 1 0.000 0.000 0.000 0.000 module.py:9(Module) - 20 0.000 0.000 0.000 0.000 _inspect.py:142() - 1 0.000 0.000 0.000 0.000 inspect.py:2457(Parameter) - 18 0.000 0.000 0.000 0.000 {method 'discard' of 'set' objects} - 1 0.000 0.000 0.000 0.000 parse.py:154(_NetlocResultMixinBase) - 1 0.000 0.000 0.000 0.000 _internal.py:248(_ctypes) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha1} - 1 0.000 0.000 0.000 0.000 pathlib.py:137() - 1 0.000 0.000 0.000 0.000 threading.py:222(__init__) - 1 0.000 0.000 0.000 0.000 random.py:709(SystemRandom) - 8 0.000 0.000 0.000 0.000 getlimits.py:153(_register_type) - 5 0.000 0.000 0.000 0.000 datetime.py:46(_days_in_month) - 2 0.000 0.000 0.000 0.000 posixpath.py:60(isabs) - 1 0.000 0.000 0.000 0.000 inspect.py:2742(Signature) - 1 0.000 0.000 0.000 0.000 _pslinux.py:337() - 4 0.000 0.000 0.000 0.000 getlimits.py:692(max) - 3 0.000 0.000 0.000 0.000 {built-in method posix.getpid} - 1 0.000 0.000 0.000 0.000 __init__.py:1655(_cpu_busy_time) - 1 0.000 0.000 0.000 0.000 decoder.py:343(raw_decode) - 13 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects} - 7 0.000 0.000 0.000 0.000 posixpath.py:41(_get_sep) - 1 0.000 0.000 0.000 0.000 _collections_abc.py:349(__subclasshook__) - 12 0.000 0.000 0.000 0.000 {method 'islower' of 'str' objects} - 38 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof} - 1 0.000 0.000 0.000 0.000 _datasource.py:196(DataSource) - 1 0.000 0.000 0.000 0.000 _iotools.py:229(NameValidator) - 1 0.000 0.000 0.000 0.000 pathlib.py:285(_PosixFlavour) - 21 0.000 0.000 0.000 0.000 _inspect.py:143() - 1 0.000 0.000 0.000 0.000 core.py:1315(_replace_dtype_fields) - 18 0.000 0.000 0.000 0.000 {built-in method builtins.id} - 5 0.000 0.000 0.000 0.000 _ufunc_config.py:426(__init__) - 3 0.000 0.000 0.000 0.000 enum.py:957(_high_bit) - 36 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects} - 2 0.000 0.000 0.000 0.000 core.py:6620(__setattr__) - 1 0.000 0.000 0.000 0.000 traceback.py:440(TracebackException) - 3 0.000 0.000 0.000 0.000 datetime.py:41(_days_before_year) - 1 0.000 0.000 0.000 0.000 {method 'tolist' of 'memoryview' objects} - 6 0.000 0.000 0.000 0.000 opcode.py:47(jrel_op) - 4 0.000 0.000 0.000 0.000 :1211(_find_parent_path_names) - 1 0.000 0.000 0.000 0.000 records.py:223(record) - 1 0.000 0.000 0.000 0.000 records.py:308(recarray) - 15 0.000 0.000 0.000 0.000 {method 'startswith' of 'bytes' objects} - 1 0.000 0.000 0.000 0.000 core.py:6517(MaskedConstant) - 1 0.000 0.000 0.000 0.000 {built-in method posix.urandom} - 6 0.000 0.000 0.000 0.000 _type_aliases.py:92() - 1 0.000 0.000 0.000 0.000 getlimits.py:613(iinfo) - 17 0.000 0.000 0.000 0.000 :771(is_package) - 5 0.000 0.000 0.000 0.000 opcode.py:51(jabs_op) - 1 0.000 0.000 0.000 0.000 _pslinux.py:789(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:210(Condition) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:204(_concrete_ndptr) - 1 0.000 0.000 0.000 0.000 extras.py:214(_fromnxfunction) - 1 0.000 0.000 0.000 0.000 memmap.py:22(memmap) - 1 0.000 0.000 0.000 0.000 pickle.py:200(_Framer) - 7 0.000 0.000 0.000 0.000 {built-in method builtins.vars} - 10 0.000 0.000 0.000 0.000 __future__.py:83(__init__) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.empty} - 3 0.000 0.000 0.000 0.000 index_tricks.py:323(__init__) - 1 0.000 0.000 0.000 0.000 _machar.py:17(MachAr) - 1 0.000 0.000 0.000 0.000 npyio.py:42(BagObj) - 1 0.000 0.000 0.000 0.000 __init__.py:255() - 2 0.000 0.000 0.000 0.000 pathlib.py:61(__init__) - 1 0.000 0.000 0.000 0.000 extras.py:1567(__init__) - 1 0.000 0.000 0.000 0.000 _internal.py:216(_getintp_ctype) - 1 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.generic' objects} - 1 0.000 0.000 0.000 0.000 socket.py:626(SocketIO) - 1 0.000 0.000 0.000 0.000 _common.py:653(__init__) - 1 0.000 0.000 0.000 0.000 datetime.py:1141(tzinfo) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1351(StructuredVoidFormat) - 1 0.000 0.000 0.000 0.000 _exceptions.py:38(_UFuncBinaryResolutionError) - 1 0.000 0.000 0.000 0.000 sre_parse.py:861(_parse_flags) - 5 0.000 0.000 0.000 0.000 datetime.py:441(_check_tzinfo_arg) - 1 0.000 0.000 0.000 0.000 _internal.py:204(dummy_ctype) - 2 0.000 0.000 0.000 0.000 {built-in method builtins.sum} - 1 0.000 0.000 0.000 0.000 ast.py:347(NodeVisitor) - 1 0.000 0.000 0.000 0.000 functions.py:32(MatmulBackward) - 6 0.000 0.000 0.000 0.000 {method 'copy' of 'list' objects} - 1 0.000 0.000 0.000 0.000 subprocess.py:99(CalledProcessError) - 1 0.000 0.000 0.000 0.000 core.py:191() - 1 0.000 0.000 0.000 0.000 arrayprint.py:905(FloatingFormat) - 1 0.000 0.000 0.000 0.000 core.py:903(_MaskedUnaryOperation) - 1 0.000 0.000 0.000 0.000 pickle.py:263(_Unframer) - 3 0.000 0.000 0.000 0.000 __init__.py:405() - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:30() - 2 0.000 0.000 0.000 0.000 {built-in method posix.register_at_fork} - 1 0.000 0.000 0.000 0.000 records.py:87(format_parser) - 1 0.000 0.000 0.000 0.000 hmac.py:26(HMAC) - 1 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:1230(Timer) - 1 0.000 0.000 0.000 0.000 traceback.py:227(FrameSummary) - 1 0.000 0.000 0.000 0.000 npyio.py:106(NpzFile) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1304(DatetimeFormat) - 1 0.000 0.000 0.000 0.000 _compression.py:33(DecompressReader) - 1 0.000 0.000 0.000 0.000 random.py:103(__init_subclass__) - 1 0.000 0.000 0.000 0.000 __init__.py:215() - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:367(errstate) - 1 0.000 0.000 0.000 0.000 {built-in method _thread.get_native_id} - 1 0.000 0.000 0.000 0.000 _pslinux.py:777(Connections) - 1 0.000 0.000 0.000 0.000 {method 'union' of 'set' objects} - 1 0.000 0.000 0.000 0.000 index_tricks.py:531(__init__) - 3 0.000 0.000 0.000 0.000 core.py:806(__init__) - 1 0.000 0.000 0.000 0.000 arrayterator.py:16(Arrayterator) - 1 0.000 0.000 0.000 0.000 pathlib.py:601(_PathParents) - 1 0.000 0.000 0.000 0.000 parse.py:797(Quoter) - 1 0.000 0.000 0.000 0.000 threading.py:573(Barrier) - 4 0.000 0.000 0.000 0.000 core.py:3405(dtype) - 1 0.000 0.000 0.000 0.000 tokenize.py:59(any) - 1 0.000 0.000 0.000 0.000 pathlib.py:57(_Flavour) - 1 0.000 0.000 0.000 0.000 parse.py:221(_NetlocResultMixinBytes) - 1 0.000 0.000 0.000 0.000 index_tricks.py:313(AxisConcatenator) - 1 0.000 0.000 0.000 0.000 core.py:1283(_replace_dtype_fields_recursive) - 1 0.000 0.000 0.000 0.000 _version.py:14(NumpyVersion) - 1 0.000 0.000 0.000 0.000 index_tricks.py:257(__init__) - 1 0.000 0.000 0.000 0.000 parse.py:191(_NetlocResultMixinStr) - 2 0.000 0.000 0.000 0.000 functions.py:33(__init__) - 1 0.000 0.000 0.000 0.000 _datasource.py:536(Repository) - 2 0.000 0.000 0.000 0.000 tokenize.py:60(maybe) - 3 0.000 0.000 0.000 0.000 core.py:1362(getmask) - 1 0.000 0.000 0.000 0.000 _globals.py:80(__new__) - 3 0.000 0.000 0.000 0.000 __init__.py:499(CFunctionType) - 1 0.000 0.000 0.000 0.000 extras.py:1519(MAxisConcatenator) - 1 0.000 0.000 0.000 0.000 selectors.py:290(SelectSelector) - 1 0.000 0.000 0.000 0.000 {method 'find' of 'str' objects} - 1 0.000 0.000 0.000 0.000 encoder.py:73(JSONEncoder) - 1 0.000 0.000 0.000 0.000 _pslinux.py:1189(RootFsDeviceFinder) - 6 0.000 0.000 0.000 0.000 core.py:846(__init__) - 1 0.000 0.000 0.000 0.000 __init__.py:318(CDLL) - 1 0.000 0.000 0.000 0.000 functions.py:92(__init__) - 1 0.000 0.000 0.000 0.000 pathlib.py:557(_RecursiveWildcardSelector) - 1 0.000 0.000 0.000 0.000 index_tricks.py:563(__init__) - 1 0.000 0.000 0.000 0.000 pathlib.py:1569(WindowsPath) - 1 0.000 0.000 0.000 0.000 _common.py:648(_WrapNumbers) - 1 0.000 0.000 0.000 0.000 _weakrefset.py:81(add) - 1 0.000 0.000 0.000 0.000 traceback.py:318(StackSummary) - 1 0.000 0.000 0.000 0.000 threading.py:94(_RLock) - 1 0.000 0.000 0.000 0.000 core.py:6712(_extrema_operation) - 1 0.000 0.000 0.000 0.000 core.py:2372(_MaskedPrintOption) - 2 0.000 0.000 0.000 0.000 __init__.py:367(_FuncPtr) - 1 0.000 0.000 0.000 0.000 dis.py:479(Bytecode) - 5 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects} - 1 0.000 0.000 0.000 0.000 subprocess.py:136(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 selectors.py:206(_BaseSelectorImpl) - 1 0.000 0.000 0.000 0.000 __init__.py:1287(Popen) - 1 0.000 0.000 0.000 0.000 decoder.py:254(JSONDecoder) - 1 0.000 0.000 0.000 0.000 encoder.py:104(__init__) - 1 0.000 0.000 0.000 0.000 _exceptions.py:81(_UFuncInputCastingError) - 1 0.000 0.000 0.000 0.000 _exceptions.py:54(_UFuncNoLoopError) - 1 0.000 0.000 0.000 0.000 pathlib.py:479(_Selector) - 9 0.000 0.000 0.000 0.000 _globals.py:86(__repr__) - 1 0.000 0.000 0.000 0.000 _exceptions.py:132(AxisError) - 1 0.000 0.000 0.000 0.000 _datasource.py:99(__init__) - 1 0.000 0.000 0.000 0.000 pathlib.py:1012(PureWindowsPath) - 1 0.000 0.000 0.000 0.000 numerictypes.py:424(_typedict) - 1 0.000 0.000 0.000 0.000 parse.py:138(_ResultMixinStr) - 1 0.000 0.000 0.000 0.000 core.py:2589(MaskedIterator) - 4 0.000 0.000 0.000 0.000 core.py:6521(__has_singleton) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1278(_TimelikeFormat) - 1 0.000 0.000 0.000 0.000 index_tricks.py:306(__init__) - 1 0.000 0.000 0.000 0.000 selectors.py:341(_PollLikeSelector) - 1 0.000 0.000 0.000 0.000 selectors.py:60(_SelectorMapping) - 1 0.000 0.000 0.000 0.000 threading.py:249(__exit__) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1245(ComplexFloatingFormat) - 1 0.000 0.000 0.000 0.000 core.py:8209(_convert2ma) - 1 0.000 0.000 0.000 0.000 parse.py:146(_ResultMixinBytes) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_md5} - 1 0.000 0.000 0.000 0.000 parse.py:339(ParseResult) - 1 0.000 0.000 0.000 0.000 tokenize.py:45(TokenInfo) - 1 0.000 0.000 0.000 0.000 {built-in method posix.confstr} - 1 0.000 0.000 0.000 0.000 threading.py:246(__enter__) - 1 0.000 0.000 0.000 0.000 loss.py:4(Loss) - 1 0.000 0.000 0.000 0.000 numbers.py:12(Number) - 1 0.000 0.000 0.000 0.000 function_base.py:2117(vectorize) - 2 0.000 0.000 0.000 0.000 arrayprint.py:493(_recursive_guard) - 1 0.000 0.000 0.000 0.000 selectors.py:442(EpollSelector) - 1 0.000 0.000 0.000 0.000 _common.py:278(Error) - 2 0.000 0.000 0.000 0.000 core.py:3421(shape) - 1 0.000 0.000 0.000 0.000 _compression.py:9(BaseStream) - 1 0.000 0.000 0.000 0.000 stride_tricks.py:15(DummyArray) - 1 0.000 0.000 0.000 0.000 core.py:190() - 1 0.000 0.000 0.000 0.000 threading.py:261(_is_owned) - 1 0.000 0.000 0.000 0.000 parse.py:326(DefragResult) - 1 0.000 0.000 0.000 0.000 threading.py:1177(_make_invoke_excepthook) - 1 0.000 0.000 0.000 0.000 ast.py:505(Num) - 1 0.000 0.000 0.000 0.000 _exceptions.py:99(_UFuncOutputCastingError) - 1 0.000 0.000 0.000 0.000 pathlib.py:510(_PreciseSelector) - 1 0.000 0.000 0.000 0.000 pathlib.py:526(_WildcardSelector) - 1 0.000 0.000 0.000 0.000 pathlib.py:1002(PurePosixPath) - 1 0.000 0.000 0.000 0.000 _exceptions.py:72(_UFuncCastingError) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1222(IntegerFormat) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1235(BoolFormat) - 1 0.000 0.000 0.000 0.000 core.py:195() - 1 0.000 0.000 0.000 0.000 ast.py:520(Ellipsis) - 1 0.000 0.000 0.000 0.000 _exceptions.py:32(UFuncTypeError) - 1 0.000 0.000 0.000 0.000 :1() - 1 0.000 0.000 0.000 0.000 {built-in method posix.sysconf} - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.set_typeDict} - 1 0.000 0.000 0.000 0.000 linear.py:4(Linear) - 1 0.000 0.000 0.000 0.000 {method 'cast' of 'memoryview' objects} - 1 0.000 0.000 0.000 0.000 _iotools.py:133(LineSplitter) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1341(SubArrayFormat) - 1 0.000 0.000 0.000 0.000 numeric.py:61(ComplexWarning) - 1 0.000 0.000 0.000 0.000 pickle.py:73(PickleError) - 1 0.000 0.000 0.000 0.000 selectors.py:433(PollSelector) - 1 0.000 0.000 0.000 0.000 _datasource.py:74(_FileOpeners) - 1 0.000 0.000 0.000 0.000 pathlib.py:504(_TerminatingSelector) - 4 0.000 0.000 0.000 0.000 {built-in method _warnings._filters_mutated} - 2 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.lock' objects} - 2 0.000 0.000 0.000 0.000 {built-in method math.log} - 2 0.000 0.000 0.000 0.000 __init__.py:101(CFunctionType) - 1 0.000 0.000 0.000 0.000 tokenize.py:162(Untokenizer) - 1 0.000 0.000 0.000 0.000 core.py:977(_MaskedBinaryOperation) - 1 0.000 0.000 0.000 0.000 __future__.py:81(_Feature) - 1 0.000 0.000 0.000 0.000 activation.py:4(Activation) - 2 0.000 0.000 0.000 0.000 index_tricks.py:145(__init__) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:183(_ndptr) - 1 0.000 0.000 0.000 0.000 threading.py:494(Event) - 1 0.000 0.000 0.000 0.000 ast.py:513(Bytes) - 2 0.000 0.000 0.000 0.000 {built-in method maketrans} - 2 0.000 0.000 0.000 0.000 __init__.py:437(__init__) - 1 0.000 0.000 0.000 0.000 _globals.py:60(_NoValueType) - 1 0.000 0.000 0.000 0.000 ast.py:476(_ABC) - 1 0.000 0.000 0.000 0.000 ast.py:509(Str) - 1 0.000 0.000 0.000 0.000 threading.py:376(Semaphore) - 1 0.000 0.000 0.000 0.000 _pytesttester.py:46(PytestTester) - 1 0.000 0.000 0.000 0.000 parse.py:334(SplitResult) - 1 0.000 0.000 0.000 0.000 index_tricks.py:619(ndindex) - 1 0.000 0.000 0.000 0.000 optimizer.py:4(Optimizer) - 1 0.000 0.000 0.000 0.000 index_tricks.py:110(nd_grid) - 1 0.000 0.000 0.000 0.000 _internal.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 pickle.py:97(_Stop) - 1 0.000 0.000 0.000 0.000 functions.py:77(__init__) - 1 0.000 0.000 0.000 0.000 parse.py:353(SplitResultBytes) - 1 0.000 0.000 0.000 0.000 pathlib.py:1562(PosixPath) - 2 0.000 0.000 0.000 0.000 core.py:883(__init__) - 1 0.000 0.000 0.000 0.000 sgd.py:4(SGD) - 1 0.000 0.000 0.000 0.000 core.py:194() - 1 0.000 0.000 0.000 0.000 __init__.py:153(py_object) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:360(_unspecified) - 1 0.000 0.000 0.000 0.000 {built-in method psutil._psutil_posix.getpagesize} - 1 0.000 0.000 0.000 0.000 _exceptions.py:118(TooHardError) - 1 0.000 0.000 0.000 0.000 threading.py:896(_set_ident) - 1 0.000 0.000 0.000 0.000 {built-in method numpy._set_promotion_state} - 1 0.000 0.000 0.000 0.000 core.py:797(_DomainCheckInterval) - 1 0.000 0.000 0.000 0.000 __init__.py:436(LibraryLoader) - 1 0.000 0.000 0.000 0.000 utils.py:126(_Deprecate) - 3 0.000 0.000 0.000 0.000 core.py:867(__init__) - 1 0.000 0.000 0.000 0.000 parameter.py:5(Parameter) - 3 0.000 0.000 0.000 0.000 {built-in method builtins.callable} - 1 0.000 0.000 0.000 0.000 core.py:6821(_frommethod) - 1 0.000 0.000 0.000 0.000 parse.py:345(DefragResultBytes) - 1 0.000 0.000 0.000 0.000 subprocess.py:419(CompletedProcess) - 1 0.000 0.000 0.000 0.000 index_tricks.py:570(ndenumerate) - 1 0.000 0.000 0.000 0.000 functions.py:3(AddBackward) - 1 0.000 0.000 0.000 0.000 ast.py:517(NameConstant) - 2 0.000 0.000 0.000 0.000 index_tricks.py:762(__init__) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencoding} - 1 0.000 0.000 0.000 0.000 decoder.py:20(JSONDecodeError) - 1 0.000 0.000 0.000 0.000 index_tricks.py:212(MGridClass) - 1 0.000 0.000 0.000 0.000 dis.py:209(Instruction) - 2 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 core.py:2378(__init__) - 1 0.000 0.000 0.000 0.000 random.py:729(seed) - 1 0.000 0.000 0.000 0.000 loss.py:17(MSELoss) - 1 0.000 0.000 0.000 0.000 socket.py:210(_GiveupOnSendfile) - 1 0.000 0.000 0.000 0.000 copyreg.py:22(constructor) - 1 0.000 0.000 0.000 0.000 __init__.py:396(PyDLL) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1336(TimedeltaFormat) - 1 0.000 0.000 0.000 0.000 _endian.py:23(_swapped_meta) - 1 0.000 0.000 0.000 0.000 threading.py:1281(_DummyThread) - 1 0.000 0.000 0.000 0.000 _common.py:311(NoSuchProcess) - 5 0.000 0.000 0.000 0.000 enum.py:1009() - 1 0.000 0.000 0.000 0.000 activation.py:15(Sigmoid) - 2 0.000 0.000 0.000 0.000 {built-in method builtins.iter} - 1 0.000 0.000 0.000 0.000 parse.py:358(ParseResultBytes) - 1 0.000 0.000 0.000 0.000 core.py:1125(_DomainedBinaryOperation) - 1 0.000 0.000 0.000 0.000 linalg.py:44(LinAlgError) - 1 0.000 0.000 0.000 0.000 inspect.py:897(BlockFinder) - 1 0.000 0.000 0.000 0.000 pickle.py:77(PicklingError) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha384} - 1 0.000 0.000 0.000 0.000 pathlib.py:394(_Accessor) - 1 0.000 0.000 0.000 0.000 {built-in method _thread._set_sentinel} - 1 0.000 0.000 0.000 0.000 index_tricks.py:264(OGridClass) - 1 0.000 0.000 0.000 0.000 __init__.py:237(c_char_p) - 3 0.000 0.000 0.000 0.000 {method 'bit_length' of 'int' objects} - 1 0.000 0.000 0.000 0.000 _pslinux.py:773(_Ipv6UnsupportedError) - 1 0.000 0.000 0.000 0.000 core.py:84(MaskedArrayFutureWarning) - 1 0.000 0.000 0.000 0.000 extras.py:1549(mr_class) - 1 0.000 0.000 0.000 0.000 inspect.py:2420(_void) - 1 0.000 0.000 0.000 0.000 index_tricks.py:538(CClass) - 1 0.000 0.000 0.000 0.000 core.py:822(_DomainTan) - 1 0.000 0.000 0.000 0.000 core.py:840(_DomainSafeDivide) - 1 0.000 0.000 0.000 0.000 extras.py:264(_fromnxfunction_single) - 1 0.000 0.000 0.000 0.000 polyutils.py:47(RankWarning) - 1 0.000 0.000 0.000 0.000 _globals.py:47(VisibleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha256} - 1 0.000 0.000 0.000 0.000 index_tricks.py:718(IndexExpression) - 1 0.000 0.000 0.000 0.000 _endian.py:46(BigEndianStructure) - 1 0.000 0.000 0.000 0.000 _common.py:324(ZombieProcess) - 1 0.000 0.000 0.000 0.000 pickle.py:84(UnpicklingError) - 2 0.000 0.000 0.000 0.000 {method 'end' of 're.Match' objects} - 1 0.000 0.000 0.000 0.000 functions.py:66(LogBackward) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha224} - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._reload_guard} - 1 0.000 0.000 0.000 0.000 __init__.py:253(c_wchar_p) - 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} - 1 0.000 0.000 0.000 0.000 core.py:830(__init__) - 1 0.000 0.000 0.000 0.000 _globals.py:33(ModuleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 polynomial.py:28(RankWarning) - 1 0.000 0.000 0.000 0.000 core.py:893(_MaskedUFunc) - 1 0.000 0.000 0.000 0.000 threading.py:456(BoundedSemaphore) - 1 0.000 0.000 0.000 0.000 {built-in method math.sqrt} - 1 0.000 0.000 0.000 0.000 multiarray.py:152(concatenate) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha512} - 2 0.000 0.000 0.000 0.000 :1286(exec_module) - 1 0.000 0.000 0.000 0.000 tokenize.py:157(TokenError) - 1 0.000 0.000 0.000 0.000 functions.py:25(ElementwiseMulBackward) - 1 0.000 0.000 0.000 0.000 threading.py:1260(_MainThread) - 1 0.000 0.000 0.000 0.000 inspect.py:895(EndOfBlock) - 1 0.000 0.000 0.000 0.000 shutil.py:69(Error) - 1 0.000 0.000 0.000 0.000 shutil.py:72(SameFileError) - 1 0.000 0.000 0.000 0.000 core.py:148(MAError) - 1 0.000 0.000 0.000 0.000 _common.py:350(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 core.py:877(_DomainGreaterEqual) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencodeerrors} - 2 0.000 0.000 0.000 0.000 {method 'clear' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 core.py:861(_DomainGreater) - 1 0.000 0.000 0.000 0.000 index_tricks.py:436(RClass) - 1 0.000 0.000 0.000 0.000 _common.py:339(AccessDenied) - 1 0.000 0.000 0.000 0.000 extras.py:320(_fromnxfunction_allargs) - 1 0.000 0.000 0.000 0.000 extras.py:282(_fromnxfunction_seq) - 1 0.000 0.000 0.000 0.000 functions.py:17(ScalarMulBackward) - 1 0.000 0.000 0.000 0.000 threading.py:1095(daemon) - 1 0.000 0.000 0.000 0.000 functions.py:10(SubBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:166(c_ushort) - 1 0.000 0.000 0.000 0.000 _common.py:630(deprecated_method) - 1 0.000 0.000 0.000 0.000 subprocess.py:96(SubprocessError) - 1 0.000 0.000 0.000 0.000 inspect.py:2424(_empty) - 1 0.000 0.000 0.000 0.000 extras.py:295(_fromnxfunction_args) - 1 0.000 0.000 0.000 0.000 multiarray.py:1079(copyto) - 1 0.000 0.000 0.000 0.000 functions.py:76(SumBackward) - 1 0.000 0.000 0.000 0.000 functions.py:48(PowBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:174(c_ulong) - 1 0.000 0.000 0.000 0.000 __init__.py:232(c_char) - 1 0.000 0.000 0.000 0.000 __init__.py:258(c_wchar) - 1 0.000 0.000 0.000 0.000 shutil.py:89(_GiveupOnFastCopy) - 1 0.000 0.000 0.000 0.000 __init__.py:162(c_short) - 1 0.000 0.000 0.000 0.000 _iotools.py:421(ConverterError) - 1 0.000 0.000 0.000 0.000 functions.py:84(ReshapeBackward) - 1 0.000 0.000 0.000 0.000 functions.py:91(TransposeBackward) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._set_madvise_hugepage} - 1 0.000 0.000 0.000 0.000 functions.py:100(DivisionBackward) - 1 0.000 0.000 0.000 0.000 shutil.py:75(SpecialFileError) - 1 0.000 0.000 0.000 0.000 shutil.py:79(ExecError) - 1 0.000 0.000 0.000 0.000 core.py:156(MaskError) - 1 0.000 0.000 0.000 0.000 _distributor_init.py:1() - 1 0.000 0.000 0.000 0.000 _iotools.py:429(ConverterLockError) - 1 0.000 0.000 0.000 0.000 contextlib.py:59(_recreate_cm) - 1 0.000 0.000 0.000 0.000 shutil.py:85(RegistryError) - 1 0.000 0.000 0.000 0.000 __init__.py:170(c_long) - 1 0.000 0.000 0.000 0.000 shutil.py:82(ReadError) - 1 0.000 0.000 0.000 0.000 threading.py:727(BrokenBarrierError) - 1 0.000 0.000 0.000 0.000 __init__.py:191(c_float) - 1 0.000 0.000 0.000 0.000 __init__.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 __init__.py:227(c_byte) - 1 0.000 0.000 0.000 0.000 __init__.py:248(c_bool) - 1 0.000 0.000 0.000 0.000 __init__.py:220(c_ubyte) - 1 0.000 0.000 0.000 0.000 __init__.py:195(c_double) - 1 0.000 0.000 0.000 0.000 tokenize.py:159(StopTokenizing) - 1 0.000 0.000 0.000 0.000 __init__.py:187(c_uint) - 1 0.000 0.000 0.000 0.000 __init__.py:183(c_int) - 1 0.000 0.000 0.000 0.000 __init__.py:199(c_longdouble) - 1 0.000 0.000 0.000 0.000 _iotools.py:437(ConversionWarning) - 1 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects} - - diff --git a/profile3.txt b/profile3.txt deleted file mode 100644 index e69de29..0000000 diff --git a/profile4.txt b/profile4.txt deleted file mode 100644 index 4ee9886..0000000 --- a/profile4.txt +++ /dev/null @@ -1,1149 +0,0 @@ -CPU Usage: 13.0% -Memory Usage: 85.0% -CPU Usage: 12.0% -Memory Usage: 85.0% -0 -tensor([0.8512586355209351,], device="cpu", requires_grad=True) -CPU Usage: 4.0% -Memory Usage: 85.0% -1 -tensor([0.7912472486495972,], device="cpu", requires_grad=True) -CPU Usage: 1.5% -Memory Usage: 85.0% -2 -tensor([0.7884318828582764,], device="cpu", requires_grad=True) -CPU Usage: 0.6% -Memory Usage: 85.1% -3 - 10658179 function calls (10655778 primitive calls) in 39.114 seconds - - Ordered by: cumulative time - - ncalls tottime percall cumtime percall filename:lineno(function) - 197/1 0.006 0.000 39.114 39.114 {built-in method builtins.exec} - 1 0.001 0.001 39.114 39.114 test.py:2() - 4 3.475 0.869 33.786 8.447 tensor.py:138(backward) - 371612 8.500 0.000 14.205 0.000 tensor.py:321(__mul__) - 451114 5.233 0.000 9.337 0.000 tensor.py:225(__add__) - 68790 0.100 0.000 6.631 0.000 functions.py:22(backward) - 1171137 5.888 0.000 5.889 0.000 tensor.py:20(__init__) - 42308 0.311 0.000 5.677 0.000 functions.py:52(backward) - 5 0.000 0.000 5.009 1.002 __init__.py:1692(cpu_percent) - 5 5.005 1.001 5.005 1.001 {built-in method time.sleep} - 451118 3.092 0.000 3.092 0.000 functions.py:4(__init__) - 34968 0.082 0.000 3.039 0.000 functions.py:29(backward) - 38638 0.157 0.000 2.502 0.000 functions.py:36(backward) - 16315 0.085 0.000 2.224 0.000 functions.py:104(backward) - 34253 0.423 0.000 1.648 0.000 tensor.py:273(__sub__) - 68490 0.842 0.000 1.322 0.000 tensor.py:443(__rpow__) - 77276 1.022 0.000 1.226 0.000 tensor.py:557(transpose) - 77280 0.912 0.000 1.120 0.000 tensor.py:370(__matmul__) - 50578 0.045 0.000 0.898 0.000 tensor.py:361(__rmul__) - 18 0.002 0.000 0.547 0.030 __init__.py:1() - 3116504 0.538 0.000 0.538 0.000 {built-in method _ctypes.POINTER} - 14685 0.029 0.000 0.488 0.000 functions.py:14(backward) - 14689 0.015 0.000 0.459 0.000 tensor.py:364(__neg__) - 34251 0.384 0.000 0.456 0.000 tensor.py:75(ones_like) - 1662335 0.445 0.000 0.446 0.000 {built-in method builtins.isinstance} - 84624 0.368 0.000 0.368 0.000 functions.py:49(__init__) - 197/5 0.002 0.000 0.306 0.061 :986(_find_and_load) - 197/5 0.002 0.000 0.306 0.061 :956(_find_and_load_unlocked) - 1093846 0.306 0.000 0.306 0.000 {method 'copy' of 'list' objects} - 186/5 0.002 0.000 0.305 0.061 :650(_load_unlocked) - 144/5 0.001 0.000 0.304 0.061 :842(exec_module) - 292/5 0.000 0.000 0.302 0.060 :211(_call_with_frames_removed) - 217/25 0.002 0.000 0.261 0.010 :1017(_handle_fromlist) - 384/12 0.002 0.000 0.260 0.022 {built-in method builtins.__import__} - 16315 0.186 0.000 0.245 0.000 tensor.py:462(__truediv__) - 16134 0.192 0.000 0.238 0.000 tensor.py:424(__pow__) - 16319 0.185 0.000 0.236 0.000 tensor.py:500(__rtruediv__) - 195247 0.215 0.000 0.215 0.000 functions.py:26(__init__) - 142107 0.138 0.000 0.138 0.000 functions.py:18(__init__) - 8065 0.093 0.000 0.114 0.000 tensor.py:521(log) - 454798 0.100 0.000 0.100 0.000 {method 'append' of 'list' objects} - 451524 0.095 0.000 0.095 0.000 {method 'pop' of 'list' objects} - 73745 0.090 0.000 0.090 0.000 functions.py:7(backward) - 77280 0.074 0.000 0.074 0.000 functions.py:33(__init__) - 144 0.003 0.000 0.072 0.000 :914(get_code) - 38638 0.061 0.000 0.061 0.000 functions.py:92(__init__) - 1 0.000 0.000 0.056 0.056 multiarray.py:1() - 1 0.000 0.000 0.054 0.054 overrides.py:1() - 186/184 0.001 0.000 0.044 0.000 :549(module_from_spec) - 194 0.003 0.000 0.042 0.000 :890(_find_spec) - 1 0.000 0.000 0.038 0.038 __init__.py:7() - 34253 0.038 0.000 0.038 0.000 functions.py:11(__init__) - 143 0.001 0.000 0.037 0.000 :638(_compile_bytecode) - 177 0.000 0.000 0.036 0.000 :1399(find_spec) - 177 0.002 0.000 0.036 0.000 :1367(_get_spec) - 143 0.035 0.000 0.035 0.000 {built-in method marshal.loads} - 32634 0.034 0.000 0.034 0.000 functions.py:101(__init__) - 34245 0.033 0.000 0.033 0.000 {built-in method math.log} - 23 0.000 0.000 0.031 0.001 :1164(create_module) - 23 0.023 0.001 0.031 0.001 {built-in method _imp.create_dynamic} - 331 0.007 0.000 0.030 0.000 :1498(find_spec) - 1 0.001 0.001 0.027 0.027 numeric.py:1() - 1 0.000 0.000 0.025 0.025 py3k.py:1() - 314 0.003 0.000 0.024 0.000 overrides.py:170(decorator) - 294/292 0.011 0.000 0.024 0.000 {built-in method builtins.__build_class__} - 2 0.000 0.000 0.018 0.009 shape_base.py:1() - 153 0.001 0.000 0.016 0.000 re.py:289(_compile) - 1 0.000 0.000 0.015 0.015 _pickle.py:1() - 145 0.002 0.000 0.015 0.000 :1034(get_data) - 1 0.001 0.001 0.014 0.014 core.py:1() - 31 0.000 0.000 0.014 0.000 sre_compile.py:759(compile) - 1 0.000 0.000 0.014 0.014 fromnumeric.py:1() - 284 0.003 0.000 0.014 0.000 overrides.py:88(verify_matching_signatures) - 28 0.000 0.000 0.014 0.001 re.py:250(compile) - 1 0.000 0.000 0.014 0.014 index_tricks.py:1() - 1 0.000 0.000 0.014 0.014 pathlib.py:1() - 23/18 0.000 0.000 0.013 0.001 :1172(exec_module) - 23/18 0.004 0.000 0.013 0.001 {built-in method _imp.exec_dynamic} - 1 0.000 0.000 0.012 0.012 _pslinux.py:5() - 757 0.001 0.000 0.011 0.000 :135(_path_stat) - 1 0.000 0.000 0.011 0.011 _common.py:5() - 317 0.003 0.000 0.011 0.000 function_base.py:483(add_newdoc) - 51 0.004 0.000 0.011 0.000 __init__.py:313(namedtuple) - 761 0.011 0.000 0.011 0.000 {built-in method posix.stat} - 186 0.002 0.000 0.011 0.000 :477(_init_module_attrs) - 1 0.001 0.001 0.010 0.010 _add_newdocs.py:1() - 1740 0.004 0.000 0.009 0.000 :121(_path_join) - 618 0.002 0.000 0.009 0.000 _inspect.py:96(getargspec) - 1 0.000 0.000 0.008 0.008 inspect.py:1() - 31 0.000 0.000 0.008 0.000 sre_parse.py:937(parse) - 288 0.003 0.000 0.008 0.000 :354(cache_from_source) - 1 0.000 0.000 0.008 0.008 numerictypes.py:1() - 1 0.000 0.000 0.008 0.008 tensor.py:1() - 1 0.000 0.000 0.008 0.008 defmatrix.py:1() - 1 0.000 0.000 0.007 0.007 :906(source_to_code) - 1 0.007 0.007 0.007 0.007 {built-in method builtins.compile} - 62/31 0.000 0.000 0.007 0.000 sre_parse.py:435(_parse_sub) - 8065 0.007 0.000 0.007 0.000 functions.py:67(__init__) - 1 0.000 0.000 0.007 0.007 _internal.py:1() - 65/31 0.003 0.000 0.007 0.000 sre_parse.py:493(_parse) - 385 0.004 0.000 0.007 0.000 functools.py:34(update_wrapper) - 7 0.000 0.000 0.007 0.001 enum.py:483(_convert_) - 1 0.000 0.000 0.007 0.007 _methods.py:1() - 145 0.006 0.000 0.006 0.000 {built-in method io.open_code} - 1 0.000 0.000 0.006 0.006 pickle.py:1() - 1 0.000 0.000 0.006 0.006 version.py:1() - 311 0.001 0.000 0.006 0.000 :376(cached) - 31 0.000 0.000 0.006 0.000 sre_compile.py:598(_code) - 79 0.000 0.000 0.006 0.000 enum.py:313(__call__) - 1 0.000 0.000 0.006 0.006 defchararray.py:1() - 145 0.006 0.000 0.006 0.000 {method 'read' of '_io.BufferedReader' objects} - 347 0.001 0.000 0.006 0.000 :194(_lock_unlock_module) - 1 0.000 0.000 0.005 0.005 socket.py:4() - 9 0.000 0.000 0.005 0.001 enum.py:430(_create_) - 1 0.000 0.000 0.005 0.005 _version.py:7() - 1 0.000 0.000 0.005 0.005 _compat.py:5() - 167 0.001 0.000 0.005 0.000 :484(_get_cached) - 1 0.000 0.000 0.005 0.005 datetime.py:1() - 14 0.002 0.000 0.005 0.000 enum.py:157(__new__) - 614 0.004 0.000 0.005 0.000 _inspect.py:65(getargs) - 1 0.000 0.000 0.005 0.005 scimath.py:1() - 5078 0.005 0.000 0.005 0.000 {built-in method builtins.getattr} - 1740 0.003 0.000 0.005 0.000 :123() - 1 0.000 0.000 0.004 0.004 linalg.py:1() - 1 0.000 0.000 0.004 0.004 npyio.py:1() - 197 0.001 0.000 0.004 0.000 :147(__enter__) - 1 0.000 0.000 0.004 0.004 shutil.py:1() - 17 0.000 0.000 0.004 0.000 :746(create_module) - 544 0.003 0.000 0.004 0.000 :157(_get_module_lock) - 118/31 0.001 0.000 0.004 0.000 sre_compile.py:71(_compile) - 17 0.004 0.000 0.004 0.000 {built-in method _imp.create_builtin} - 234 0.000 0.000 0.004 0.000 :154(_path_isfile) - 259 0.001 0.000 0.004 0.000 :145(_path_is_mode_type) - 1 0.000 0.000 0.004 0.004 secrets.py:1() - 1 0.000 0.000 0.004 0.004 ntpath.py:2() - 12 0.000 0.000 0.004 0.000 __init__.py:1595(cpu_times) - 1 0.000 0.000 0.004 0.004 _pslinux.py:1667(Process) - 1 0.000 0.000 0.003 0.003 _ufunc_config.py:1() - 11 0.001 0.000 0.003 0.000 _pslinux.py:584(cpu_times) - 14 0.000 0.000 0.003 0.000 core.py:115(doc_note) - 568 0.003 0.000 0.003 0.000 :1(__new__) - 1 0.000 0.000 0.003 0.003 linecache.py:1() - 1 0.000 0.000 0.003 0.003 sgd.py:5(__init__) - 1 0.000 0.000 0.003 0.003 parse.py:1() - 386 0.001 0.000 0.003 0.000 :1330(_path_importer_cache) - 1 0.000 0.000 0.003 0.003 extras.py:1() - 167 0.001 0.000 0.003 0.000 :1493(_get_spec) - 1 0.000 0.000 0.003 0.003 optimizer.py:9(__init__) - 544 0.003 0.000 0.003 0.000 :78(acquire) - 7/3 0.000 0.000 0.003 0.001 module.py:35(parameters) - 2 0.000 0.000 0.003 0.001 polynomial.py:1() - 317 0.001 0.000 0.003 0.000 function_base.py:469(_add_docstring) - 2 0.000 0.000 0.003 0.001 function_base.py:1() - 1 0.000 0.000 0.003 0.003 type_check.py:1() - 826 0.003 0.000 0.003 0.000 {built-in method __new__ of type object at 0x902780} - 289 0.001 0.000 0.003 0.000 :127(_path_split) - 1 0.000 0.000 0.003 0.003 tokenize.py:1() - 1 0.000 0.000 0.003 0.003 decoder.py:1() - 1 0.000 0.000 0.003 0.003 hmac.py:1() - 1 0.000 0.000 0.002 0.002 _add_newdocs_scalars.py:1() - 1 0.000 0.000 0.002 0.002 _type_aliases.py:1() - 544 0.002 0.000 0.002 0.000 :103(release) - 28 0.001 0.000 0.002 0.000 inspect.py:625(cleandoc) - 144 0.000 0.000 0.002 0.000 :1075(path_stats) - 1 0.000 0.000 0.002 0.002 tensor.py:15(Tensor) - 5 0.000 0.000 0.002 0.000 __init__.py:1920(virtual_memory) - 2 0.000 0.000 0.002 0.001 __init__.py:339(__init__) - 12/4 0.000 0.000 0.002 0.001 module.py:22(__call__) - 2 0.002 0.001 0.002 0.001 {built-in method _ctypes.dlopen} - 5 0.002 0.000 0.002 0.000 _pslinux.py:406(virtual_memory) - 1 0.000 0.000 0.002 0.002 subprocess.py:10() - 4 0.000 0.000 0.002 0.001 test.py:87(forward) - 1 0.000 0.000 0.002 0.002 getlimits.py:158(_register_known_types) - 37 0.000 0.000 0.002 0.000 abc.py:84(__new__) - 1 0.000 0.000 0.002 0.002 signal.py:1() - 167 0.001 0.000 0.002 0.000 :689(spec_from_file_location) - 7 0.001 0.000 0.002 0.000 enum.py:500() - 2334 0.002 0.000 0.002 0.000 {method 'join' of 'str' objects} - 10 0.000 0.000 0.002 0.000 extras.py:234(__init__) - 22 0.000 0.000 0.002 0.000 :1317(_path_hooks) - 10 0.000 0.000 0.002 0.000 extras.py:238(getdoc) - 6 0.000 0.000 0.002 0.000 getlimits.py:34(__init__) - 58 0.001 0.000 0.002 0.000 sre_compile.py:276(_optimize_charset) - 1 0.000 0.000 0.002 0.002 linear.py:1() - 22 0.000 0.000 0.002 0.000 :1549(_fill_cache) - 1 0.000 0.000 0.002 0.002 pickle.py:197() - 2203 0.001 0.000 0.002 0.000 {built-in method builtins.setattr} - 1 0.000 0.000 0.002 0.002 dis.py:1() - 1868 0.002 0.000 0.002 0.000 :222(_verbose_message) - 1 0.000 0.000 0.002 0.002 scanner.py:1() - 107 0.000 0.000 0.002 0.000 re.py:188(match) - 197 0.000 0.000 0.002 0.000 :151(__exit__) - 2241 0.002 0.000 0.002 0.000 {built-in method builtins.hasattr} - 345 0.001 0.000 0.002 0.000 {built-in method builtins.max} - 317 0.001 0.000 0.002 0.000 function_base.py:451(_needs_add_docstring) - 22 0.001 0.000 0.001 0.000 {built-in method posix.listdir} - 192 0.001 0.000 0.001 0.000 enum.py:75(__setitem__) - 1 0.000 0.000 0.001 0.001 twodim_base.py:1() - 31 0.000 0.000 0.001 0.000 sre_compile.py:536(_compile_info) - 18 0.000 0.000 0.001 0.000 _common.py:764(open_binary) - 1 0.000 0.000 0.001 0.001 test.py:80(__init__) - 3 0.001 0.000 0.001 0.000 inspect.py:325(getmembers) - 1 0.000 0.000 0.001 0.001 bz2.py:1() - 144 0.001 0.000 0.001 0.000 :553(_classify_pyc) - 24 0.000 0.000 0.001 0.000 _add_newdocs_scalars.py:71(add_newdoc_for_scalar_type) - 18 0.001 0.000 0.001 0.000 {built-in method io.open} - 36 0.000 0.000 0.001 0.000 getlimits.py:111(_float_to_str) -4760/4636 0.001 0.000 0.001 0.000 {built-in method builtins.len} - 1 0.000 0.000 0.001 0.001 ast.py:1() - 1 0.000 0.000 0.001 0.001 arrayprint.py:1() - 1 0.000 0.000 0.001 0.001 module.py:1() - 23 0.000 0.000 0.001 0.000 overrides.py:221(decorator) - 431 0.001 0.000 0.001 0.000 :79(_unpack_uint32) - 1 0.000 0.000 0.001 0.001 _psposix.py:5() - 144 0.001 0.000 0.001 0.000 :586(_validate_timestamp_pyc) - 177 0.000 0.000 0.001 0.000 abc.py:96(__instancecheck__) - 50 0.000 0.000 0.001 0.000 core.py:131(get_object_signature) - 1 0.000 0.000 0.001 0.001 linear.py:5(__init__) - 4 0.000 0.000 0.001 0.000 activation.py:19(forward) - 3770 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects} - 2 0.000 0.000 0.001 0.001 utils.py:1() - 516 0.001 0.000 0.001 0.000 :389(parent) - 618 0.001 0.000 0.001 0.000 _inspect.py:13(ismethod) - 1 0.000 0.000 0.001 0.001 _pocketfft.py:1() - 22 0.000 0.000 0.001 0.000 :1590(path_hook_for_FileFinder) - 18 0.000 0.000 0.001 0.000 arrayprint.py:1571(_array_str_implementation) - 757 0.001 0.000 0.001 0.000 sre_parse.py:164(__getitem__) - 1 0.000 0.000 0.001 0.001 random.py:1() - 1 0.000 0.000 0.001 0.001 contextvars.py:1() - 1255 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects} - 18 0.000 0.000 0.001 0.000 arrayprint.py:506(wrapper) - 1 0.000 0.000 0.001 0.001 _exceptions.py:1() - 177 0.000 0.000 0.001 0.000 {built-in method _abc._abc_instancecheck} - 4 0.000 0.000 0.001 0.000 linear.py:12(forward) - 196 0.001 0.000 0.001 0.000 :176(cb) - 1 0.000 0.000 0.001 0.001 encoder.py:1() - 13 0.001 0.000 0.001 0.000 {method 'readline' of '_io.BufferedReader' objects} - 2 0.000 0.000 0.001 0.000 parameter.py:9(__init__) - 146/59 0.001 0.000 0.001 0.000 sre_parse.py:174(getwidth) - 129/29 0.000 0.000 0.001 0.000 abc.py:100(__subclasscheck__) - 3 0.000 0.000 0.001 0.000 warnings.py:130(filterwarnings) - 18 0.001 0.000 0.001 0.000 arrayprint.py:1564(_guarded_repr_or_str) - 483 0.000 0.000 0.001 0.000 sre_parse.py:254(get) - 129/29 0.001 0.000 0.001 0.000 {built-in method _abc._abc_subclasscheck} - 196 0.001 0.000 0.001 0.000 :58(__init__) - 548 0.001 0.000 0.001 0.000 :867(__exit__) - 1 0.000 0.000 0.001 0.001 parameter.py:1() - 618 0.001 0.000 0.001 0.000 _inspect.py:26(isfunction) - 1 0.000 0.000 0.001 0.001 lzma.py:1() - 1 0.000 0.000 0.001 0.001 selectors.py:1() - 14 0.001 0.000 0.001 0.000 enum.py:200() - 26 0.000 0.000 0.001 0.000 core.py:6832(__init__) - 2163 0.001 0.000 0.001 0.000 {method 'startswith' of 'str' objects} - 22 0.000 0.000 0.001 0.000 :63(__init__) - 26 0.000 0.000 0.001 0.000 core.py:6837(getdoc) - 614 0.001 0.000 0.001 0.000 _inspect.py:41(iscode) - 621 0.001 0.000 0.001 0.000 sre_parse.py:233(__next) - 578 0.001 0.000 0.001 0.000 :129() - 52 0.000 0.000 0.001 0.000 core.py:894(__init__) - 17 0.000 0.000 0.001 0.000 __init__.py:383(__getattr__) - 548 0.001 0.000 0.001 0.000 :863(__enter__) - 314 0.001 0.000 0.001 0.000 {method 'replace' of 'code' objects} - 5 0.000 0.000 0.001 0.000 __init__.py:1733(calculate) - 13 0.000 0.000 0.001 0.000 _common.py:423(wrapper) - 194 0.000 0.000 0.001 0.000 :725(find_spec) - 1 0.000 0.000 0.001 0.001 ufunclike.py:1() - 1 0.000 0.000 0.001 0.001 opcode.py:2() - 1 0.000 0.000 0.001 0.001 nanfunctions.py:1() - 1 0.000 0.000 0.001 0.001 numbers.py:4() - 286 0.001 0.000 0.001 0.000 {method 'format' of 'str' objects} - 344 0.001 0.000 0.001 0.000 {method 'strip' of 'str' objects} - 3 0.000 0.000 0.001 0.000 sgd.py:11(step) - 12 0.000 0.000 0.001 0.000 datetime.py:488(__new__) - 14 0.000 0.000 0.001 0.000 re.py:223(split) - 238 0.001 0.000 0.001 0.000 enum.py:417(__setattr__) - 1 0.000 0.000 0.001 0.001 sgd.py:1() - 14 0.000 0.000 0.001 0.000 core.py:8222(__init__) - 22 0.000 0.000 0.001 0.000 :1459(__init__) - 1288 0.001 0.000 0.001 0.000 {built-in method _imp.acquire_lock} - 1 0.000 0.000 0.001 0.001 glob.py:1() - 1288 0.001 0.000 0.001 0.000 {built-in method _imp.release_lock} - 383 0.001 0.000 0.001 0.000 functools.py:64(wraps) - 17 0.001 0.000 0.001 0.000 __init__.py:390(__getitem__) - 14 0.000 0.000 0.001 0.000 core.py:8227(getdoc) - 6 0.000 0.000 0.001 0.000 numeric.py:2536(extend_all) - 4 0.000 0.000 0.001 0.000 loss.py:13(__call__) - 1 0.000 0.000 0.001 0.001 _type_aliases.py:94(_add_aliases) - 1107 0.001 0.000 0.001 0.000 {built-in method _thread.get_ident} - 37 0.001 0.000 0.001 0.000 {built-in method _abc._abc_init} - 4 0.000 0.000 0.001 0.000 loss.py:21(forward) - 1 0.000 0.000 0.001 0.001 ctypeslib.py:1() - 46 0.000 0.000 0.001 0.000 _inspect.py:140(formatargspec) - 342 0.001 0.000 0.001 0.000 {built-in method numpy.core._multiarray_umath.add_docstring} - 28 0.000 0.000 0.001 0.000 sre_parse.py:96(closegroup) - 8 0.000 0.000 0.000 0.000 {built-in method builtins.dir} - 144 0.000 0.000 0.000 0.000 :516(_check_name_wrapper) - 1 0.000 0.000 0.000 0.000 threading.py:1() - 1 0.000 0.000 0.000 0.000 records.py:1() - 28 0.000 0.000 0.000 0.000 module.py:99(__setattr__) - 1 0.000 0.000 0.000 0.000 arraysetops.py:1() - 189 0.000 0.000 0.000 0.000 :175(_path_isabs) - 1 0.000 0.000 0.000 0.000 hashlib.py:5() - 8 0.000 0.000 0.000 0.000 tensor.py:58(flatten) - 1 0.000 0.000 0.000 0.000 _globals.py:1() - 31 0.000 0.000 0.000 0.000 enum.py:938(__and__) - 1 0.000 0.000 0.000 0.000 _compat_pickle.py:9() - 14 0.000 0.000 0.000 0.000 enum.py:143(__prepare__) - 1 0.000 0.000 0.000 0.000 mixins.py:1() - 1 0.000 0.000 0.000 0.000 :1080(_cache_bytecode) - 422 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects} - 984 0.000 0.000 0.000 0.000 {built-in method builtins.min} - 196 0.000 0.000 0.000 0.000 :342(__init__) - 4 0.000 0.000 0.000 0.000 tensor.py:249(__radd__) - 58 0.000 0.000 0.000 0.000 {built-in method posix.getcwd} - 1 0.000 0.000 0.000 0.000 getlimits.py:1() - 3 0.000 0.000 0.000 0.000 ufunclike.py:58(_fix_and_maybe_deprecate_out_named_y) - 52/8 0.000 0.000 0.000 0.000 tensor.py:59(flatten_recursively) - 10 0.000 0.000 0.000 0.000 tensor.py:91(zeros_like) - 3 0.000 0.000 0.000 0.000 ufunclike.py:41(_fix_out_named_y) - 34 0.000 0.000 0.000 0.000 _pslinux.py:1646(wrap_exceptions) - 177 0.000 0.000 0.000 0.000 :800(find_spec) - 5 0.000 0.000 0.000 0.000 __init__.py:1671(_cpu_times_deltas) - 14 0.000 0.000 0.000 0.000 hashlib.py:123(__get_openssl_constructor) - 16 0.000 0.000 0.000 0.000 _type_aliases.py:58(bitname) - 1 0.000 0.000 0.000 0.000 :1085(set_data) - 1 0.000 0.000 0.000 0.000 _pslinux.py:259(set_scputimes_ntuple) - 314 0.000 0.000 0.000 0.000 overrides.py:128(array_function_dispatch) - 25 0.000 0.000 0.000 0.000 :159(_path_isdir) - 146 0.000 0.000 0.000 0.000 :35(_new_module) - 1 0.000 0.000 0.000 0.000 _string_helpers.py:1() - 4 0.000 0.000 0.000 0.000 textwrap.py:414(dedent) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:362(_get_scalar_type_map) - 377 0.000 0.000 0.000 0.000 socket.py:81() - 379 0.000 0.000 0.000 0.000 socket.py:91() - 1 0.000 0.000 0.000 0.000 ctypeslib.py:373() - 376 0.000 0.000 0.000 0.000 socket.py:76() - 378 0.000 0.000 0.000 0.000 socket.py:86() - 1 0.000 0.000 0.000 0.000 mixins.py:59(NDArrayOperatorsMixin) - 1 0.000 0.000 0.000 0.000 :180(_write_atomic) - 192 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects} - 17 0.000 0.000 0.000 0.000 {built-in method builtins.print} - 18 0.000 0.000 0.000 0.000 core.py:997(__init__) - 297 0.000 0.000 0.000 0.000 sre_parse.py:249(match) - 8 0.000 0.000 0.000 0.000 hashlib.py:79(__get_builtin_constructor) - 26 0.000 0.000 0.000 0.000 core.py:921(__init__) - 50 0.000 0.000 0.000 0.000 _internal.py:869(_ufunc_doc_signature_formatter) - 585 0.000 0.000 0.000 0.000 {method 'get' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 histograms.py:1() - 103 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects} - 12 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects} - 1 0.000 0.000 0.000 0.000 arraypad.py:1() - 1 0.000 0.000 0.000 0.000 _string_helpers.py:9() - 4 0.000 0.000 0.000 0.000 functions.py:80(backward) - 16 0.000 0.000 0.000 0.000 sre_compile.py:411(_mk_bitmap) - 37 0.000 0.000 0.000 0.000 enum.py:532(_get_mixins_) - 4 0.000 0.000 0.000 0.000 optimizer.py:20(zero_grad) - 1 0.000 0.000 0.000 0.000 einsumfunc.py:1() - 1 0.000 0.000 0.000 0.000 functions.py:1() - 1603 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects} - 275 0.000 0.000 0.000 0.000 {method 'split' of 'bytes' objects} - 1 0.000 0.000 0.000 0.000 pickle.py:407(_Pickler) - 53 0.000 0.000 0.000 0.000 sre_compile.py:423(_simple) - 291 0.000 0.000 0.000 0.000 sre_parse.py:172(append) - 14 0.000 0.000 0.000 0.000 enum.py:579(_find_new_) - 396 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock} - 118 0.000 0.000 0.000 0.000 {built-in method numpy.array} - 197 0.000 0.000 0.000 0.000 :143(__init__) - 8 0.000 0.000 0.000 0.000 tensor.py:179(zero_grad) - 178 0.000 0.000 0.000 0.000 sre_parse.py:286(tell) - 1 0.000 0.000 0.000 0.000 _iotools.py:1() - 58 0.000 0.000 0.000 0.000 sre_compile.py:249(_compile_charset) - 16 0.000 0.000 0.000 0.000 {built-in method builtins.sorted} - 4 0.000 0.000 0.000 0.000 module.py:13(__init__) - 11 0.000 0.000 0.000 0.000 abc.py:89(register) - 51 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects} - 928 0.000 0.000 0.000 0.000 {method 'lstrip' of 'str' objects} - 4 0.000 0.000 0.000 0.000 re.py:203(sub) - 192 0.000 0.000 0.000 0.000 enum.py:22(_is_dunder) - 240 0.000 0.000 0.000 0.000 sre_parse.py:160(__len__) - 17 0.000 0.000 0.000 0.000 :406(spec_from_loader) - 16 0.000 0.000 0.000 0.000 _type_aliases.py:44(_bits_of) - 40/28 0.000 0.000 0.000 0.000 sre_compile.py:461(_get_literal_prefix) - 403 0.000 0.000 0.000 0.000 {built-in method builtins.globals} - 1 0.000 0.000 0.000 0.000 base64.py:3() - 613 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects} - 70 0.000 0.000 0.000 0.000 enum.py:631(__new__) - 1 0.000 0.000 0.000 0.000 contextlib.py:72(inner) - 36 0.000 0.000 0.000 0.000 getlimits.py:91(_float_to_float) - 1 0.000 0.000 0.000 0.000 umath.py:1() - 11 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register} - 432 0.000 0.000 0.000 0.000 {built-in method from_bytes} - 52 0.000 0.000 0.000 0.000 _add_newdocs.py:6753(refer_to_array_attribute) - 152 0.000 0.000 0.000 0.000 enum.py:12(_is_descriptor) - 1 0.000 0.000 0.000 0.000 stride_tricks.py:1() - 73 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin} - 13 0.000 0.000 0.000 0.000 mixins.py:44(_numeric_methods) - 112 0.000 0.000 0.000 0.000 {built-in method builtins.repr} - 1 0.000 0.000 0.000 0.000 core.py:6527(__new__) - 192 0.000 0.000 0.000 0.000 enum.py:33(_is_sunder) - 290 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects} - 144 0.000 0.000 0.000 0.000 :1004(__init__) - 1 0.000 0.000 0.000 0.000 sgd.py:9() - 22 0.000 0.000 0.000 0.000 {built-in method builtins.round} - 3 0.000 0.000 0.000 0.000 tensor.py:196(__str__) - 1 0.000 0.000 0.000 0.000 memmap.py:1() - 31 0.000 0.000 0.000 0.000 sre_parse.py:224(__init__) - 1 0.000 0.000 0.000 0.000 _pslinux.py:600(per_cpu_times) - 14 0.000 0.000 0.000 0.000 {method 'split' of 're.Pattern' objects} - 109 0.000 0.000 0.000 0.000 {method 'match' of 're.Pattern' objects} - 194 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects} - 1 0.000 0.000 0.000 0.000 _asarray.py:1() - 1 0.000 0.000 0.000 0.000 traceback.py:1() - 1 0.000 0.000 0.000 0.000 defchararray.py:1908(chararray) - 1 0.000 0.000 0.000 0.000 _polybase.py:1() - 1 0.000 0.000 0.000 0.000 __init__.py:298(Process) - 466 0.000 0.000 0.000 0.000 {built-in method posix.fspath} - 1 0.000 0.000 0.000 0.000 numerictypes.py:588(_register_types) - 1 0.000 0.000 0.000 0.000 struct.py:3() - 37 0.000 0.000 0.000 0.000 enum.py:543(_find_data_type) - 1 0.000 0.000 0.000 0.000 {function SeedSequence.generate_state at 0x7f73dfc6dd30} - 31 0.000 0.000 0.000 0.000 sre_parse.py:432(_uniq) - 11 0.000 0.000 0.000 0.000 _pslinux.py:596() - 177 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen} - 3 0.000 0.000 0.000 0.000 tensor.py:197(print_recursively) - 4 0.000 0.000 0.000 0.000 enum.py:932(__or__) - 3 0.000 0.000 0.000 0.000 tokenize.py:83(_all_string_prefixes) - 1 0.000 0.000 0.000 0.000 hermite.py:1() - 1 0.000 0.000 0.000 0.000 chebyshev.py:1() - 28 0.000 0.000 0.000 0.000 sre_parse.py:84(opengroup) - 1 0.000 0.000 0.000 0.000 legendre.py:1() - 16 0.000 0.000 0.000 0.000 sre_compile.py:413() - 1 0.000 0.000 0.000 0.000 _endian.py:1() - 1 0.000 0.000 0.000 0.000 hermite_e.py:1() - 41 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:83() - 1 0.000 0.000 0.000 0.000 laguerre.py:1() - 1 0.000 0.000 0.000 0.000 _type_aliases.py:211(_set_array_types) - 4 0.000 0.000 0.000 0.000 tensor.py:539(sum) - 331 0.000 0.000 0.000 0.000 :68(_relax_case) - 121 0.000 0.000 0.000 0.000 sre_parse.py:111(__init__) - 36 0.000 0.000 0.000 0.000 _string_helpers.py:16(english_lower) - 1 0.000 0.000 0.000 0.000 {built-in method posix.replace} - 1 0.000 0.000 0.000 0.000 selectors.py:80(BaseSelector) - 1 0.000 0.000 0.000 0.000 os.py:42(_get_exports_list) - 2 0.000 0.000 0.000 0.000 tensor.py:583(T) - 47 0.000 0.000 0.000 0.000 sre_parse.py:355(_escape) - 317 0.000 0.000 0.000 0.000 __init__.py:385() - 1 0.000 0.000 0.000 0.000 core.py:2697(MaskedArray) - 218 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects} - 17 0.000 0.000 0.000 0.000 :754(exec_module) - 172 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects} - 1 0.000 0.000 0.000 0.000 :651(_code_to_timestamp_pyc) - 1 0.000 0.000 0.000 0.000 numerictypes.py:440(_construct_lookups) - 1 0.000 0.000 0.000 0.000 _psposix.py:66() - 1 0.000 0.000 0.000 0.000 datetime.py:2181(timezone) - 3 0.000 0.000 0.000 0.000 datetime.py:1567(__new__) - 1 0.000 0.000 0.000 0.000 _compression.py:1() - 288 0.000 0.000 0.000 0.000 {built-in method builtins.chr} - 1 0.000 0.000 0.000 0.000 __init__.py:335(_sanity_check) - 317 0.000 0.000 0.000 0.000 {built-in method sys.intern} - 1 0.000 0.000 0.000 0.000 helper.py:1() - 1 0.000 0.000 0.000 0.000 _datasource.py:1() - 2 0.000 0.000 0.000 0.000 enum.py:889(_missing_) - 14 0.000 0.000 0.000 0.000 core.py:8239(_replace_return_type) - 1 0.000 0.000 0.000 0.000 activation.py:1() - 76 0.000 0.000 0.000 0.000 signal.py:10() - 143 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename} - 118 0.000 0.000 0.000 0.000 sre_parse.py:81(groups) - 2 0.000 0.000 0.000 0.000 enum.py:899(_create_pseudo_member_) - 1 0.000 0.000 0.000 0.000 pickle.py:1136(_Unpickler) - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:100(dtype_from_ctypes_type) - 1 0.000 0.000 0.000 0.000 core.py:2808(__new__) - 16 0.000 0.000 0.000 0.000 {built-in method builtins.next} - 4/3 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.ndarray' objects} - 6 0.000 0.000 0.000 0.000 core.py:1146(__init__) - 5 0.000 0.000 0.000 0.000 _common.py:388(usage_percent) - 24 0.000 0.000 0.000 0.000 numerictypes.py:513(_scalar_type_key) - 1 0.000 0.000 0.000 0.000 bisect.py:1() - 32 0.000 0.000 0.000 0.000 _type_aliases.py:46() - 1 0.000 0.000 0.000 0.000 loss.py:1() - 98 0.000 0.000 0.000 0.000 types.py:171(__get__) - 82 0.000 0.000 0.000 0.000 overrides.py:121(decorator) - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:18(numeric_type_aliases) - 28 0.000 0.000 0.000 0.000 {method 'expandtabs' of 'str' objects} - 30 0.000 0.000 0.000 0.000 _type_aliases.py:203(_add_array_type) - 4 0.000 0.000 0.000 0.000 sre_parse.py:267(getuntil) - 36 0.000 0.000 0.000 0.000 getlimits.py:24(_fr1) - 1 0.000 0.000 0.000 0.000 token.py:1() - 2 0.000 0.000 0.000 0.000 datetime.py:661(__neg__) - 1 0.000 0.000 0.000 0.000 {built-in method marshal.dumps} - 42 0.000 0.000 0.000 0.000 getlimits.py:101(_float_conv) - 3 0.000 0.000 0.000 0.000 contextlib.py:211(contextmanager) - 2 0.000 0.000 0.000 0.000 enum.py:978(_decompose) - 1 0.000 0.000 0.000 0.000 threading.py:1262(__init__) - 186 0.000 0.000 0.000 0.000 :397(has_location) - 82 0.000 0.000 0.000 0.000 overrides.py:110(set_module) - 1 0.000 0.000 0.000 0.000 _machar.py:1() - 10 0.000 0.000 0.000 0.000 __init__.py:1636(_cpu_tot_time) - 3 0.000 0.000 0.000 0.000 tensor.py:184(__getitem__) - 1 0.000 0.000 0.000 0.000 opcode.py:37() - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:33(seterr) - 2 0.000 0.000 0.000 0.000 functools.py:525(decorating_function) - 2 0.000 0.000 0.000 0.000 core.py:2966(__array_finalize__) - 83 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects} - 20 0.000 0.000 0.000 0.000 mixins.py:16(_binary_method) - 7 0.000 0.000 0.000 0.000 _common.py:444(memoize_when_activated) - 176 0.000 0.000 0.000 0.000 :1465() - 1 0.000 0.000 0.000 0.000 _type_aliases.py:74(_add_types) - 62 0.000 0.000 0.000 0.000 sre_compile.py:595(isstring) - 238 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects} - 1 0.000 0.000 0.000 0.000 fnmatch.py:1() - 31 0.000 0.000 0.000 0.000 {built-in method _sre.compile} - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:19(type_aliases_gen) - 17 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin} - 321 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects} - 1 0.000 0.000 0.000 0.000 polyutils.py:1() - 1 0.000 0.000 0.000 0.000 pathlib.py:120(_WindowsFlavour) - 72 0.000 0.000 0.000 0.000 {method 'copy' of 'numpy.ndarray' objects} - 6/2 0.000 0.000 0.000 0.000 utils.py:3(generate_random_list) - 4 0.000 0.000 0.000 0.000 _common.py:400(memoize) - 192 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass} - 61 0.000 0.000 0.000 0.000 _inspect.py:144() - 317 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects} - 14 0.000 0.000 0.000 0.000 enum.py:522(_check_for_existing_members) - 1 0.000 0.000 0.000 0.000 __init__.py:261(_reset_cache) - 1 0.000 0.000 0.000 0.000 inspect.py:2428(_ParameterKind) - 1 0.000 0.000 0.000 0.000 core.py:3115(view) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:430(__enter__) - 150 0.000 0.000 0.000 0.000 inspect.py:366() - 4 0.000 0.000 0.000 0.000 genericpath.py:16(exists) - 144 0.000 0.000 0.000 0.000 :1029(get_filename) - 47 0.000 0.000 0.000 0.000 re.py:270(escape) - 5 0.000 0.000 0.000 0.000 datetime.py:411(_check_date_fields) - 18 0.000 0.000 0.000 0.000 sre_compile.py:492(_get_charset_prefix) - 215 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 token.py:74() - 2 0.000 0.000 0.000 0.000 posixpath.py:372(abspath) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:123(_add_integer_aliases) - 31 0.000 0.000 0.000 0.000 {built-in method fromkeys} - 1 0.000 0.000 0.000 0.000 format.py:1() - 24 0.000 0.000 0.000 0.000 sre_parse.py:295(_class_escape) - 1 0.000 0.000 0.000 0.000 {built-in method posix.open} - 252 0.000 0.000 0.000 0.000 {built-in method builtins.ord} - 31 0.000 0.000 0.000 0.000 sre_parse.py:921(fix_flags) - 36 0.000 0.000 0.000 0.000 getlimits.py:16(_fr0) - 5 0.000 0.000 0.000 0.000 datetime.py:424(_check_time_fields) - 1 0.000 0.000 0.000 0.000 tensor.py:5(CTensor) - 2 0.000 0.000 0.000 0.000 arrayprint.py:503(decorating_function) - 1 0.000 0.000 0.000 0.000 optimizer.py:1() - 14 0.000 0.000 0.000 0.000 enum.py:370(__getattr__) - 1 0.000 0.000 0.000 0.000 _pytesttester.py:1() - 2 0.000 0.000 0.000 0.000 datetime.py:1236(__new__) - 93 0.000 0.000 0.000 0.000 _inspect.py:131(strseq) - 14 0.000 0.000 0.000 0.000 __init__.py:141(_check_size) - 1 0.000 0.000 0.000 0.000 _polybase.py:18(ABCPolyBase) - 2 0.000 0.000 0.000 0.000 __init__.py:75(CFUNCTYPE) - 85 0.000 0.000 0.000 0.000 _compat_pickle.py:167() - 9 0.000 0.000 0.000 0.000 overrides.py:23(set_array_function_like_doc) - 3 0.000 0.000 0.000 0.000 __init__.py:498(PYFUNCTYPE) - 6 0.000 0.000 0.000 0.000 __init__.py:266(_assert_pid_not_reused) - 35 0.000 0.000 0.000 0.000 datetime.py:379(_check_int_field) - 1 0.000 0.000 0.000 0.000 _globals.py:93(_CopyMode) - 6 0.000 0.000 0.000 0.000 os.py:670(__getitem__) - 144 0.000 0.000 0.000 0.000 :839(create_module) - 2 0.000 0.000 0.000 0.000 contextlib.py:71(__call__) - 1 0.000 0.000 0.000 0.000 _dtype.py:1() - 17 0.000 0.000 0.000 0.000 :232(_requires_builtin_wrapper) - 8 0.000 0.000 0.000 0.000 {method 'sub' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 core.py:6545(__array_finalize__) - 10 0.000 0.000 0.000 0.000 sre_compile.py:432(_generate_overlap_table) - 4 0.000 0.000 0.000 0.000 _collections_abc.py:657(get) - 2 0.000 0.000 0.000 0.000 enum.py:997() - 1 0.000 0.000 0.000 0.000 _internal.py:239(_missing_ctypes) - 1 0.000 0.000 0.000 0.000 pathlib.py:629(PurePath) - 17 0.000 0.000 0.000 0.000 _common.py:836(get_procfs_path) - 257 0.000 0.000 0.000 0.000 hmac.py:17() - 2 0.000 0.000 0.000 0.000 core.py:6721(__init__) - 31 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__) - 1 0.000 0.000 0.000 0.000 loss.py:18(__init__) - 2 0.000 0.000 0.000 0.000 random.py:94(__init__) - 257 0.000 0.000 0.000 0.000 hmac.py:18() - 55 0.000 0.000 0.000 0.000 sre_parse.py:168(__setitem__) - 14 0.000 0.000 0.000 0.000 enum.py:68(__init__) - 2 0.000 0.000 0.000 0.000 utils.py:14() - 1 0.000 0.000 0.000 0.000 _type_aliases.py:151(_set_up_aliases) - 2 0.000 0.000 0.000 0.000 os.py:684(__delitem__) - 1 0.000 0.000 0.000 0.000 __future__.py:1() - 14 0.000 0.000 0.000 0.000 enum.py:175() - 1 0.000 0.000 0.000 0.000 __init__.py:1276() - 1 0.000 0.000 0.000 0.000 linalg.py:74(_determine_error_states) - 2 0.000 0.000 0.000 0.000 datetime.py:819(__new__) - 1 0.000 0.000 0.000 0.000 datetime.py:1559(datetime) - 1 0.000 0.000 0.000 0.000 _pslinux.py:118(IOPriority) - 1 0.000 0.000 0.000 0.000 os.py:46() - 46 0.000 0.000 0.000 0.000 sre_compile.py:65(_combine_flags) - 96 0.000 0.000 0.000 0.000 {built-in method builtins.abs} - 1 0.000 0.000 0.000 0.000 {method 'write' of '_io.FileIO' objects} - 7 0.000 0.000 0.000 0.000 getlimits.py:668(__init__) - 5 0.000 0.000 0.000 0.000 __init__.py:1655(_cpu_busy_time) - 8 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects} - 63 0.000 0.000 0.000 0.000 abc.py:7(abstractmethod) - 13 0.000 0.000 0.000 0.000 mixins.py:36(_inplace_binary_method) - 1 0.000 0.000 0.000 0.000 random.py:123(seed) - 120 0.000 0.000 0.000 0.000 opcode.py:39(def_op) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:435(__exit__) - 1 0.000 0.000 0.000 0.000 datetime.py:789(date) - 1 0.000 0.000 0.000 0.000 ufunclike.py:16(_deprecate_out_named_y) - 14 0.000 0.000 0.000 0.000 mixins.py:26(_reflected_binary_method) - 1 0.000 0.000 0.000 0.000 _version.py:20(get_versions) - 23 0.000 0.000 0.000 0.000 :1153(__init__) - 1 0.000 0.000 0.000 0.000 arrayterator.py:1() - 1 0.000 0.000 0.000 0.000 _common.py:140(NicDuplex) - 12 0.000 0.000 0.000 0.000 os.py:748(encode) - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:54(_get_platform_and_machine) - 8 0.000 0.000 0.000 0.000 _pslinux.py:614() - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:71(_from_ctypes_scalar) - 1 0.000 0.000 0.000 0.000 pathlib.py:1025(Path) - 1 0.000 0.000 0.000 0.000 activation.py:16(__init__) - 1 0.000 0.000 0.000 0.000 __init__.py:299(loads) - 1 0.000 0.000 0.000 0.000 _dtype_ctypes.py:1() - 14 0.000 0.000 0.000 0.000 {built-in method builtins.any} - 43 0.000 0.000 0.000 0.000 _compat_pickle.py:165() - 1 0.000 0.000 0.000 0.000 abc.py:1() - 1 0.000 0.000 0.000 0.000 polynomial.py:1472(Polynomial) - 2 0.000 0.000 0.000 0.000 {built-in method posix.uname} - 2 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function} - 78 0.000 0.000 0.000 0.000 _internal.py:880() - 1 0.000 0.000 0.000 0.000 loss.py:7(__init__) - 1 0.000 0.000 0.000 0.000 numbers.py:32(Complex) - 1 0.000 0.000 0.000 0.000 numbers.py:294(Integral) - 60 0.000 0.000 0.000 0.000 {built-in method builtins.divmod} - 1 0.000 0.000 0.000 0.000 numeric.py:150(ones) - 1 0.000 0.000 0.000 0.000 _version.py:1() - 4 0.000 0.000 0.000 0.000 warnings.py:181(_add_filter) - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(concatenate) - 1 0.000 0.000 0.000 0.000 _common.py:152(BatteryTime) - 24 0.000 0.000 0.000 0.000 tokenize.py:94() - 1 0.000 0.000 0.000 0.000 activation.py:8(__init__) - 1 0.000 0.000 0.000 0.000 decoder.py:332(decode) - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:132(geterr) - 1 0.000 0.000 0.000 0.000 :496(_calc_mode) - 58 0.000 0.000 0.000 0.000 sre_compile.py:453(_get_iscased) - 1 0.000 0.000 0.000 0.000 threading.py:761(__init__) - 1 0.000 0.000 0.000 0.000 __config__.py:3() - 2 0.000 0.000 0.000 0.000 core.py:2940(_update_from) - 1 0.000 0.000 0.000 0.000 datetime.py:1211(time) - 2 0.000 0.000 0.000 0.000 posixpath.py:334(normpath) - 6 0.000 0.000 0.000 0.000 _exceptions.py:17(_display_as_base) - 1 0.000 0.000 0.000 0.000 pathlib.py:399(_NormalAccessor) - 10 0.000 0.000 0.000 0.000 {built-in method builtins.sum} - 16 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects} - 1 0.000 0.000 0.000 0.000 {function Random.seed at 0x7f73f49a21f0} - 1 0.000 0.000 0.000 0.000 datetime.py:469(timedelta) - 39 0.000 0.000 0.000 0.000 enum.py:223() - 1 0.000 0.000 0.000 0.000 _iotools.py:450(StringConverter) - 1 0.000 0.000 0.000 0.000 numbers.py:147(Real) - 2 0.000 0.000 0.000 0.000 os.py:678(__setitem__) - 19 0.000 0.000 0.000 0.000 tokenize.py:58(group) - 53 0.000 0.000 0.000 0.000 {built-in method sys._getframe} - 4 0.000 0.000 0.000 0.000 posixpath.py:71(join) - 101 0.000 0.000 0.000 0.000 enum.py:506() - 23 0.000 0.000 0.000 0.000 overrides.py:217(array_function_from_dispatcher) - 4 0.000 0.000 0.000 0.000 {method 'findall' of 're.Pattern' objects} - 2 0.000 0.000 0.000 0.000 :1238(__iter__) - 70 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects} - 1 0.000 0.000 0.000 0.000 socket.py:213(socket) - 9 0.000 0.000 0.000 0.000 {built-in method numpy.seterrobj} - 1 0.000 0.000 0.000 0.000 getlimits.py:364(finfo) - 2 0.000 0.000 0.000 0.000 _collections_abc.py:664(__contains__) - 1 0.000 0.000 0.000 0.000 __init__.py:187() - 20 0.000 0.000 0.000 0.000 {method 'encode' of 'str' objects} - 48 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects} - 12 0.000 0.000 0.000 0.000 opcode.py:43(name_op) - 1 0.000 0.000 0.000 0.000 {method 'dot' of 'numpy.ndarray' objects} - 1 0.000 0.000 0.000 0.000 subprocess.py:638(_use_posix_spawn) - 1 0.000 0.000 0.000 0.000 sre_compile.py:416(_bytes_to_codes) - 4 0.000 0.000 0.000 0.000 :1221(_get_parent_path) - 1 0.000 0.000 0.000 0.000 threading.py:750(Thread) - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:79() - 1 0.000 0.000 0.000 0.000 parse.py:154(_NetlocResultMixinBase) - 1 0.000 0.000 0.000 0.000 polynomial.py:1076(poly1d) - 1 0.000 0.000 0.000 0.000 _inspect.py:1() - 1 0.000 0.000 0.000 0.000 threading.py:519(set) - 16 0.000 0.000 0.000 0.000 _dtype.py:24(_kind_name) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:41() - 2 0.000 0.000 0.000 0.000 {built-in method posix.unsetenv} - 1 0.000 0.000 0.000 0.000 subprocess.py:688(Popen) - 4 0.000 0.000 0.000 0.000 mixins.py:51(_unary_method) - 2 0.000 0.000 0.000 0.000 :1205(__init__) - 1 0.000 0.000 0.000 0.000 warnings.py:165(simplefilter) - 1 0.000 0.000 0.000 0.000 hermite.py:1658(Hermite) - 1 0.000 0.000 0.000 0.000 defmatrix.py:72(matrix) - 2 0.000 0.000 0.000 0.000 copyreg.py:12(pickle) - 81 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased} - 1 0.000 0.000 0.000 0.000 hermite_e.py:1650(HermiteE) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:441(_setdef) - 33 0.000 0.000 0.000 0.000 enum.py:393() - 78 0.000 0.000 0.000 0.000 signal.py:22() - 55 0.000 0.000 0.000 0.000 enum.py:748(name) - 18 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize} - 77 0.000 0.000 0.000 0.000 signal.py:17() - 2 0.000 0.000 0.000 0.000 :1225(_recalculate) - 4 0.000 0.000 0.000 0.000 sre_parse.py:258(getwhile) - 7 0.000 0.000 0.000 0.000 core.py:2544(_arraymethod) - 1 0.000 0.000 0.000 0.000 pathlib.py:137() - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(copyto) - 13 0.000 0.000 0.000 0.000 _internal.py:917(npy_ctypes_check) - 1 0.000 0.000 0.000 0.000 chebyshev.py:1995(Chebyshev) - 1 0.000 0.000 0.000 0.000 pathlib.py:136() - 1 0.000 0.000 0.000 0.000 os.py:766(getenv) - 20 0.000 0.000 0.000 0.000 _inspect.py:142() - 1 0.000 0.000 0.000 0.000 threading.py:903(_set_tstate_lock) - 1 0.000 0.000 0.000 0.000 {built-in method math.exp} - 1 0.000 0.000 0.000 0.000 core.py:1329(make_mask_descr) - 68 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_tolower} - 1 0.000 0.000 0.000 0.000 random.py:721(getrandbits) - 1 0.000 0.000 0.000 0.000 _common.py:634(outer) - 1 0.000 0.000 0.000 0.000 traceback.py:440(TracebackException) - 1 0.000 0.000 0.000 0.000 legendre.py:1619(Legendre) - 43 0.000 0.000 0.000 0.000 enum.py:753(value) - 1 0.000 0.000 0.000 0.000 laguerre.py:1606(Laguerre) - 5 0.000 0.000 0.000 0.000 enum.py:1015(_power_of_two) - 17 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 __init__.py:216() - 1 0.000 0.000 0.000 0.000 threading.py:505(__init__) - 3 0.000 0.000 0.000 0.000 :74(_pack_uint32) - 25 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects} - 8 0.000 0.000 0.000 0.000 tensor.py:598(detach) - 1 0.000 0.000 0.000 0.000 _internal.py:248(_ctypes) - 13 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects} - 1 0.000 0.000 0.000 0.000 _exceptions.py:81(_UFuncInputCastingError) - 2 0.000 0.000 0.000 0.000 _collections_abc.py:72(_check_methods) - 1 0.000 0.000 0.000 0.000 random.py:78(Random) - 1 0.000 0.000 0.000 0.000 py3k.py:84(contextlib_nullcontext) - 10 0.000 0.000 0.000 0.000 enum.py:398(__members__) - 1 0.000 0.000 0.000 0.000 bz2.py:30(BZ2File) - 1 0.000 0.000 0.000 0.000 lzma.py:38(LZMAFile) - 1 0.000 0.000 0.000 0.000 decoder.py:284(__init__) - 1 0.000 0.000 0.000 0.000 core.py:6517(MaskedConstant) - 1 0.000 0.000 0.000 0.000 inspect.py:2457(Parameter) - 1 0.000 0.000 0.000 0.000 _pslinux.py:337() - 3 0.000 0.000 0.000 0.000 datetime.py:2201(_create) - 1 0.000 0.000 0.000 0.000 threading.py:900(_set_native_id) - 14 0.000 0.000 0.000 0.000 {method 'mro' of 'type' objects} - 1 0.000 0.000 0.000 0.000 posixpath.py:150(dirname) - 2 0.000 0.000 0.000 0.000 {built-in method posix.putenv} - 9 0.000 0.000 0.000 0.000 _pytesttester.py:76(__init__) - 18 0.000 0.000 0.000 0.000 {built-in method numpy.geterrobj} - 1 0.000 0.000 0.000 0.000 os.py:1073(__subclasshook__) - 1 0.000 0.000 0.000 0.000 module.py:9(Module) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_md5} - 12 0.000 0.000 0.000 0.000 {method 'islower' of 'str' objects} - 2 0.000 0.000 0.000 0.000 functools.py:487(lru_cache) - 36 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects} - 1 0.000 0.000 0.000 0.000 threading.py:364(notify_all) - 1 0.000 0.000 0.000 0.000 parse.py:364(_fix_result_transcoding) - 1 0.000 0.000 0.000 0.000 core.py:6322(mvoid) - 1 0.000 0.000 0.000 0.000 getlimits.py:32(MachArLike) - 1 0.000 0.000 0.000 0.000 threading.py:222(__init__) - 3 0.000 0.000 0.000 0.000 inspect.py:72(isclass) - 1 0.000 0.000 0.000 0.000 decoder.py:343(raw_decode) - 4 0.000 0.000 0.000 0.000 getlimits.py:692(max) - 1 0.000 0.000 0.000 0.000 inspect.py:2742(Signature) - 5 0.000 0.000 0.000 0.000 datetime.py:46(_days_in_month) - 38 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof} - 1 0.000 0.000 0.000 0.000 numbers.py:267(Rational) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha1} - 21 0.000 0.000 0.000 0.000 _inspect.py:143() - 1 0.000 0.000 0.000 0.000 _collections_abc.py:349(__subclasshook__) - 4 0.000 0.000 0.000 0.000 functions.py:77(__init__) - 1 0.000 0.000 0.000 0.000 _iotools.py:229(NameValidator) - 4 0.000 0.000 0.000 0.000 :1211(_find_parent_path_names) - 1 0.000 0.000 0.000 0.000 _exceptions.py:224(_ArrayMemoryError) - 2 0.000 0.000 0.000 0.000 posixpath.py:60(isabs) - 7 0.000 0.000 0.000 0.000 posixpath.py:41(_get_sep) - 3 0.000 0.000 0.000 0.000 {built-in method posix.getpid} - 1 0.000 0.000 0.000 0.000 pathlib.py:285(_PosixFlavour) - 1 0.000 0.000 0.000 0.000 _datasource.py:196(DataSource) - 6 0.000 0.000 0.000 0.000 opcode.py:47(jrel_op) - 1 0.000 0.000 0.000 0.000 threading.py:210(Condition) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha224} - 1 0.000 0.000 0.000 0.000 core.py:1315(_replace_dtype_fields) - 17 0.000 0.000 0.000 0.000 :771(is_package) - 3 0.000 0.000 0.000 0.000 enum.py:957(_high_bit) - 6 0.000 0.000 0.000 0.000 _type_aliases.py:92() - 3 0.000 0.000 0.000 0.000 datetime.py:41(_days_before_year) - 1 0.000 0.000 0.000 0.000 _common.py:278(Error) - 2 0.000 0.000 0.000 0.000 core.py:6620(__setattr__) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:204(_concrete_ndptr) - 1 0.000 0.000 0.000 0.000 records.py:223(record) - 1 0.000 0.000 0.000 0.000 getlimits.py:613(iinfo) - 1 0.000 0.000 0.000 0.000 memmap.py:22(memmap) - 1 0.000 0.000 0.000 0.000 {method 'tolist' of 'memoryview' objects} - 1 0.000 0.000 0.000 0.000 traceback.py:227(FrameSummary) - 8 0.000 0.000 0.000 0.000 getlimits.py:153(_register_type) - 5 0.000 0.000 0.000 0.000 _ufunc_config.py:426(__init__) - 1 0.000 0.000 0.000 0.000 extras.py:1567(__init__) - 18 0.000 0.000 0.000 0.000 {method 'discard' of 'set' objects} - 15 0.000 0.000 0.000 0.000 {method 'startswith' of 'bytes' objects} - 1 0.000 0.000 0.000 0.000 _internal.py:216(_getintp_ctype) - 1 0.000 0.000 0.000 0.000 records.py:308(recarray) - 1 0.000 0.000 0.000 0.000 threading.py:341(notify) - 5 0.000 0.000 0.000 0.000 datetime.py:441(_check_tzinfo_arg) - 1 0.000 0.000 0.000 0.000 _internal.py:204(dummy_ctype) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.empty} - 7 0.000 0.000 0.000 0.000 {built-in method builtins.vars} - 1 0.000 0.000 0.000 0.000 extras.py:214(_fromnxfunction) - 1 0.000 0.000 0.000 0.000 _internal.py:613(_Stream) - 1 0.000 0.000 0.000 0.000 pickle.py:200(_Framer) - 1 0.000 0.000 0.000 0.000 npyio.py:42(BagObj) - 10 0.000 0.000 0.000 0.000 __future__.py:83(__init__) - 3 0.000 0.000 0.000 0.000 index_tricks.py:323(__init__) - 19 0.000 0.000 0.000 0.000 {built-in method builtins.id} - 1 0.000 0.000 0.000 0.000 index_tricks.py:110(nd_grid) - 1 0.000 0.000 0.000 0.000 _pslinux.py:789(__init__) - 4 0.000 0.000 0.000 0.000 {method 'random' of '_random.Random' objects} - 5 0.000 0.000 0.000 0.000 opcode.py:51(jabs_op) - 2 0.000 0.000 0.000 0.000 {built-in method maketrans} - 1 0.000 0.000 0.000 0.000 _machar.py:17(MachAr) - 1 0.000 0.000 0.000 0.000 core.py:903(_MaskedUnaryOperation) - 2 0.000 0.000 0.000 0.000 pathlib.py:61(__init__) - 1 0.000 0.000 0.000 0.000 core.py:191() - 1 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.generic' objects} - 1 0.000 0.000 0.000 0.000 subprocess.py:99(CalledProcessError) - 1 0.000 0.000 0.000 0.000 index_tricks.py:313(AxisConcatenator) - 1 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__) - 1 0.000 0.000 0.000 0.000 datetime.py:1141(tzinfo) - 1 0.000 0.000 0.000 0.000 random.py:103(__init_subclass__) - 1 0.000 0.000 0.000 0.000 __init__.py:255() - 1 0.000 0.000 0.000 0.000 records.py:87(format_parser) - 1 0.000 0.000 0.000 0.000 threading.py:1230(Timer) - 1 0.000 0.000 0.000 0.000 pickle.py:263(_Unframer) - 1 0.000 0.000 0.000 0.000 {built-in method posix.urandom} - 1 0.000 0.000 0.000 0.000 index_tricks.py:257(__init__) - 1 0.000 0.000 0.000 0.000 hmac.py:26(HMAC) - 2 0.000 0.000 0.000 0.000 {built-in method posix.register_at_fork} - 1 0.000 0.000 0.000 0.000 sre_parse.py:861(_parse_flags) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:30() - 1 0.000 0.000 0.000 0.000 arrayprint.py:905(FloatingFormat) - 1 0.000 0.000 0.000 0.000 extras.py:1519(MAxisConcatenator) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1351(StructuredVoidFormat) - 1 0.000 0.000 0.000 0.000 {method 'union' of 'set' objects} - 1 0.000 0.000 0.000 0.000 threading.py:573(Barrier) - 1 0.000 0.000 0.000 0.000 test.py:79(MeuModulo) - 1 0.000 0.000 0.000 0.000 traceback.py:318(StackSummary) - 1 0.000 0.000 0.000 0.000 parse.py:797(Quoter) - 1 0.000 0.000 0.000 0.000 arrayterator.py:16(Arrayterator) - 1 0.000 0.000 0.000 0.000 socket.py:626(SocketIO) - 1 0.000 0.000 0.000 0.000 ast.py:347(NodeVisitor) - 1 0.000 0.000 0.000 0.000 random.py:709(SystemRandom) - 1 0.000 0.000 0.000 0.000 _pslinux.py:777(Connections) - 1 0.000 0.000 0.000 0.000 inspect.py:2612(BoundArguments) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1304(DatetimeFormat) - 1 0.000 0.000 0.000 0.000 _compression.py:33(DecompressReader) - 3 0.000 0.000 0.000 0.000 __init__.py:405() - 1 0.000 0.000 0.000 0.000 {built-in method _thread.get_native_id} - 4 0.000 0.000 0.000 0.000 {method 'extend' of 'bytearray' objects} - 1 0.000 0.000 0.000 0.000 _version.py:14(NumpyVersion) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:367(errstate) - 1 0.000 0.000 0.000 0.000 index_tricks.py:531(__init__) - 1 0.000 0.000 0.000 0.000 enum.py:389(__iter__) - 1 0.000 0.000 0.000 0.000 pathlib.py:57(_Flavour) - 2 0.000 0.000 0.000 0.000 tokenize.py:60(maybe) - 1 0.000 0.000 0.000 0.000 npyio.py:106(NpzFile) - 1 0.000 0.000 0.000 0.000 parse.py:191(_NetlocResultMixinStr) - 1 0.000 0.000 0.000 0.000 selectors.py:290(SelectSelector) - 4 0.000 0.000 0.000 0.000 core.py:3405(dtype) - 1 0.000 0.000 0.000 0.000 tokenize.py:59(any) - 1 0.000 0.000 0.000 0.000 __init__.py:215() - 1 0.000 0.000 0.000 0.000 _exceptions.py:38(_UFuncBinaryResolutionError) - 1 0.000 0.000 0.000 0.000 _globals.py:80(__new__) - 1 0.000 0.000 0.000 0.000 _common.py:653(__init__) - 1 0.000 0.000 0.000 0.000 _exceptions.py:99(_UFuncOutputCastingError) - 1 0.000 0.000 0.000 0.000 parse.py:221(_NetlocResultMixinBytes) - 1 0.000 0.000 0.000 0.000 core.py:1283(_replace_dtype_fields_recursive) - 1 0.000 0.000 0.000 0.000 _exceptions.py:132(AxisError) - 1 0.000 0.000 0.000 0.000 __init__.py:1287(Popen) - 1 0.000 0.000 0.000 0.000 threading.py:94(_RLock) - 9 0.000 0.000 0.000 0.000 _globals.py:86(__repr__) - 1 0.000 0.000 0.000 0.000 pathlib.py:601(_PathParents) - 1 0.000 0.000 0.000 0.000 _weakrefset.py:81(add) - 1 0.000 0.000 0.000 0.000 encoder.py:73(JSONEncoder) - 1 0.000 0.000 0.000 0.000 selectors.py:442(EpollSelector) - 1 0.000 0.000 0.000 0.000 {method 'find' of 'str' objects} - 3 0.000 0.000 0.000 0.000 core.py:1362(getmask) - 1 0.000 0.000 0.000 0.000 dis.py:479(Bytecode) - 1 0.000 0.000 0.000 0.000 selectors.py:341(_PollLikeSelector) - 1 0.000 0.000 0.000 0.000 test.py:96() - 1 0.000 0.000 0.000 0.000 encoder.py:104(__init__) - 1 0.000 0.000 0.000 0.000 decoder.py:254(JSONDecoder) - 5 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects} - 1 0.000 0.000 0.000 0.000 __init__.py:318(CDLL) - 1 0.000 0.000 0.000 0.000 pathlib.py:1569(WindowsPath) - 1 0.000 0.000 0.000 0.000 _datasource.py:536(Repository) - 3 0.000 0.000 0.000 0.000 __init__.py:499(CFunctionType) - 1 0.000 0.000 0.000 0.000 index_tricks.py:563(__init__) - 1 0.000 0.000 0.000 0.000 selectors.py:206(_BaseSelectorImpl) - 1 0.000 0.000 0.000 0.000 subprocess.py:136(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 core.py:2372(_MaskedPrintOption) - 1 0.000 0.000 0.000 0.000 _pytesttester.py:46(PytestTester) - 6 0.000 0.000 0.000 0.000 core.py:846(__init__) - 1 0.000 0.000 0.000 0.000 _exceptions.py:54(_UFuncNoLoopError) - 1 0.000 0.000 0.000 0.000 core.py:6712(_extrema_operation) - 1 0.000 0.000 0.000 0.000 function_base.py:2117(vectorize) - 1 0.000 0.000 0.000 0.000 parse.py:138(_ResultMixinStr) - 1 0.000 0.000 0.000 0.000 threading.py:249(__exit__) - 1 0.000 0.000 0.000 0.000 _datasource.py:99(__init__) - 1 0.000 0.000 0.000 0.000 core.py:8209(_convert2ma) - 1 0.000 0.000 0.000 0.000 pathlib.py:557(_RecursiveWildcardSelector) - 1 0.000 0.000 0.000 0.000 parse.py:146(_ResultMixinBytes) - 1 0.000 0.000 0.000 0.000 core.py:2589(MaskedIterator) - 2 0.000 0.000 0.000 0.000 __init__.py:367(_FuncPtr) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1245(ComplexFloatingFormat) - 1 0.000 0.000 0.000 0.000 _exceptions.py:72(_UFuncCastingError) - 1 0.000 0.000 0.000 0.000 threading.py:246(__enter__) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1222(IntegerFormat) - 1 0.000 0.000 0.000 0.000 _pslinux.py:1189(RootFsDeviceFinder) - 1 0.000 0.000 0.000 0.000 core.py:190() - 1 0.000 0.000 0.000 0.000 tokenize.py:45(TokenInfo) - 1 0.000 0.000 0.000 0.000 index_tricks.py:619(ndindex) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:183(_ndptr) - 1 0.000 0.000 0.000 0.000 numerictypes.py:424(_typedict) - 2 0.000 0.000 0.000 0.000 index_tricks.py:145(__init__) - 1 0.000 0.000 0.000 0.000 index_tricks.py:306(__init__) - 1 0.000 0.000 0.000 0.000 pathlib.py:479(_Selector) - 3 0.000 0.000 0.000 0.000 core.py:806(__init__) - 1 0.000 0.000 0.000 0.000 {built-in method posix.confstr} - 1 0.000 0.000 0.000 0.000 pathlib.py:1002(PurePosixPath) - 1 0.000 0.000 0.000 0.000 _common.py:648(_WrapNumbers) - 4 0.000 0.000 0.000 0.000 core.py:6521(__has_singleton) - 1 0.000 0.000 0.000 0.000 selectors.py:433(PollSelector) - 1 0.000 0.000 0.000 0.000 ast.py:505(Num) - 1 0.000 0.000 0.000 0.000 test.py:101() - 1 0.000 0.000 0.000 0.000 arrayprint.py:1235(BoolFormat) - 4 0.000 0.000 0.000 0.000 {built-in method _warnings._filters_mutated} - 1 0.000 0.000 0.000 0.000 parse.py:358(ParseResultBytes) - 1 0.000 0.000 0.000 0.000 _iotools.py:133(LineSplitter) - 1 0.000 0.000 0.000 0.000 core.py:977(_MaskedBinaryOperation) - 1 0.000 0.000 0.000 0.000 ast.py:509(Str) - 2 0.000 0.000 0.000 0.000 core.py:3421(shape) - 1 0.000 0.000 0.000 0.000 core.py:195() - 1 0.000 0.000 0.000 0.000 threading.py:494(Event) - 1 0.000 0.000 0.000 0.000 parse.py:326(DefragResult) - 1 0.000 0.000 0.000 0.000 selectors.py:60(_SelectorMapping) - 1 0.000 0.000 0.000 0.000 activation.py:4(Activation) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1278(_TimelikeFormat) - 3 0.000 0.000 0.000 0.000 {method 'to_bytes' of 'int' objects} - 1 0.000 0.000 0.000 0.000 _exceptions.py:32(UFuncTypeError) - 1 0.000 0.000 0.000 0.000 parse.py:339(ParseResult) - 1 0.000 0.000 0.000 0.000 ast.py:405(NodeTransformer) - 1 0.000 0.000 0.000 0.000 _datasource.py:74(_FileOpeners) - 1 0.000 0.000 0.000 0.000 loss.py:4(Loss) - 1 0.000 0.000 0.000 0.000 _compression.py:9(BaseStream) - 1 0.000 0.000 0.000 0.000 threading.py:1177(_make_invoke_excepthook) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1341(SubArrayFormat) - 1 0.000 0.000 0.000 0.000 threading.py:896(_set_ident) - 1 0.000 0.000 0.000 0.000 pathlib.py:1012(PureWindowsPath) - 1 0.000 0.000 0.000 0.000 numeric.py:61(ComplexWarning) - 2 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 :1() - 1 0.000 0.000 0.000 0.000 __future__.py:81(_Feature) - 3 0.000 0.000 0.000 0.000 {built-in method builtins.callable} - 1 0.000 0.000 0.000 0.000 _internal.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 {method 'cast' of 'memoryview' objects} - 1 0.000 0.000 0.000 0.000 threading.py:261(_is_owned) - 1 0.000 0.000 0.000 0.000 pathlib.py:526(_WildcardSelector) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:360(_unspecified) - 1 0.000 0.000 0.000 0.000 linear.py:4(Linear) - 1 0.000 0.000 0.000 0.000 tokenize.py:162(Untokenizer) - 1 0.000 0.000 0.000 0.000 copyreg.py:22(constructor) - 1 0.000 0.000 0.000 0.000 {built-in method posix.sysconf} - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.set_typeDict} - 1 0.000 0.000 0.000 0.000 pathlib.py:510(_PreciseSelector) - 1 0.000 0.000 0.000 0.000 threading.py:376(Semaphore) - 1 0.000 0.000 0.000 0.000 pickle.py:97(_Stop) - 1 0.000 0.000 0.000 0.000 parse.py:334(SplitResult) - 2 0.000 0.000 0.000 0.000 arrayprint.py:493(_recursive_guard) - 1 0.000 0.000 0.000 0.000 _globals.py:60(_NoValueType) - 1 0.000 0.000 0.000 0.000 ast.py:476(_ABC) - 1 0.000 0.000 0.000 0.000 ast.py:520(Ellipsis) - 1 0.000 0.000 0.000 0.000 optimizer.py:4(Optimizer) - 2 0.000 0.000 0.000 0.000 __init__.py:437(__init__) - 1 0.000 0.000 0.000 0.000 pathlib.py:504(_TerminatingSelector) - 1 0.000 0.000 0.000 0.000 __init__.py:153(py_object) - 2 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 ast.py:513(Bytes) - 1 0.000 0.000 0.000 0.000 _exceptions.py:118(TooHardError) - 1 0.000 0.000 0.000 0.000 pickle.py:73(PickleError) - 1 0.000 0.000 0.000 0.000 index_tricks.py:570(ndenumerate) - 1 0.000 0.000 0.000 0.000 core.py:6821(_frommethod) - 1 0.000 0.000 0.000 0.000 decoder.py:20(JSONDecodeError) - 1 0.000 0.000 0.000 0.000 sgd.py:4(SGD) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1336(TimedeltaFormat) - 5 0.000 0.000 0.000 0.000 enum.py:1009() - 1 0.000 0.000 0.000 0.000 pathlib.py:394(_Accessor) - 1 0.000 0.000 0.000 0.000 {built-in method psutil._psutil_posix.getpagesize} - 1 0.000 0.000 0.000 0.000 parameter.py:5(Parameter) - 2 0.000 0.000 0.000 0.000 __init__.py:101(CFunctionType) - 1 0.000 0.000 0.000 0.000 functions.py:3(AddBackward) - 1 0.000 0.000 0.000 0.000 activation.py:15(Sigmoid) - 1 0.000 0.000 0.000 0.000 core.py:194() - 1 0.000 0.000 0.000 0.000 pickle.py:77(PicklingError) - 1 0.000 0.000 0.000 0.000 stride_tricks.py:15(DummyArray) - 1 0.000 0.000 0.000 0.000 parse.py:345(DefragResultBytes) - 1 0.000 0.000 0.000 0.000 index_tricks.py:212(MGridClass) - 1 0.000 0.000 0.000 0.000 core.py:840(_DomainSafeDivide) - 1 0.000 0.000 0.000 0.000 _endian.py:23(_swapped_meta) - 2 0.000 0.000 0.000 0.000 index_tricks.py:762(__init__) - 1 0.000 0.000 0.000 0.000 numbers.py:12(Number) - 1 0.000 0.000 0.000 0.000 __init__.py:436(LibraryLoader) - 1 0.000 0.000 0.000 0.000 utils.py:126(_Deprecate) - 1 0.000 0.000 0.000 0.000 subprocess.py:419(CompletedProcess) - 1 0.000 0.000 0.000 0.000 core.py:797(_DomainCheckInterval) - 1 0.000 0.000 0.000 0.000 parse.py:353(SplitResultBytes) - 3 0.000 0.000 0.000 0.000 core.py:867(__init__) - 1 0.000 0.000 0.000 0.000 core.py:1125(_DomainedBinaryOperation) - 1 0.000 0.000 0.000 0.000 shutil.py:89(_GiveupOnFastCopy) - 1 0.000 0.000 0.000 0.000 loss.py:17(MSELoss) - 2 0.000 0.000 0.000 0.000 {built-in method builtins.iter} - 1 0.000 0.000 0.000 0.000 ast.py:517(NameConstant) - 1 0.000 0.000 0.000 0.000 threading.py:1281(_DummyThread) - 1 0.000 0.000 0.000 0.000 {built-in method numpy._set_promotion_state} - 1 0.000 0.000 0.000 0.000 index_tricks.py:264(OGridClass) - 2 0.000 0.000 0.000 0.000 core.py:883(__init__) - 1 0.000 0.000 0.000 0.000 pathlib.py:1562(PosixPath) - 1 0.000 0.000 0.000 0.000 tokenize.py:157(TokenError) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencoding} - 1 0.000 0.000 0.000 0.000 inspect.py:2420(_void) - 1 0.000 0.000 0.000 0.000 extras.py:264(_fromnxfunction_single) - 1 0.000 0.000 0.000 0.000 shutil.py:82(ReadError) - 1 0.000 0.000 0.000 0.000 dis.py:209(Instruction) - 1 0.000 0.000 0.000 0.000 core.py:861(_DomainGreater) - 1 0.000 0.000 0.000 0.000 _common.py:311(NoSuchProcess) - 1 0.000 0.000 0.000 0.000 index_tricks.py:718(IndexExpression) - 1 0.000 0.000 0.000 0.000 __init__.py:396(PyDLL) - 1 0.000 0.000 0.000 0.000 {built-in method _thread._set_sentinel} - 1 0.000 0.000 0.000 0.000 extras.py:1549(mr_class) - 1 0.000 0.000 0.000 0.000 _pslinux.py:773(_Ipv6UnsupportedError) - 1 0.000 0.000 0.000 0.000 linalg.py:44(LinAlgError) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencodeerrors} - 1 0.000 0.000 0.000 0.000 threading.py:456(BoundedSemaphore) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha384} - 1 0.000 0.000 0.000 0.000 core.py:2378(__init__) - 1 0.000 0.000 0.000 0.000 functions.py:25(ElementwiseMulBackward) - 1 0.000 0.000 0.000 0.000 core.py:822(_DomainTan) - 1 0.000 0.000 0.000 0.000 socket.py:210(_GiveupOnSendfile) - 1 0.000 0.000 0.000 0.000 pickle.py:84(UnpicklingError) - 1 0.000 0.000 0.000 0.000 functions.py:10(SubBackward) - 1 0.000 0.000 0.000 0.000 multiarray.py:152(concatenate) - 1 0.000 0.000 0.000 0.000 inspect.py:897(BlockFinder) - 1 0.000 0.000 0.000 0.000 _endian.py:46(BigEndianStructure) - 1 0.000 0.000 0.000 0.000 _globals.py:33(ModuleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 core.py:84(MaskedArrayFutureWarning) - 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} - 1 0.000 0.000 0.000 0.000 polyutils.py:47(RankWarning) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._reload_guard} - 2 0.000 0.000 0.000 0.000 {method 'clear' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 polynomial.py:28(RankWarning) - 2 0.000 0.000 0.000 0.000 {method 'end' of 're.Match' objects} - 1 0.000 0.000 0.000 0.000 index_tricks.py:436(RClass) - 1 0.000 0.000 0.000 0.000 core.py:893(_MaskedUFunc) - 1 0.000 0.000 0.000 0.000 shutil.py:69(Error) - 1 0.000 0.000 0.000 0.000 core.py:877(_DomainGreaterEqual) - 3 0.000 0.000 0.000 0.000 {method 'bit_length' of 'int' objects} - 1 0.000 0.000 0.000 0.000 functions.py:17(ScalarMulBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:237(c_char_p) - 1 0.000 0.000 0.000 0.000 inspect.py:2424(_empty) - 1 0.000 0.000 0.000 0.000 _common.py:350(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 core.py:830(__init__) - 1 0.000 0.000 0.000 0.000 _common.py:630(deprecated_method) - 1 0.000 0.000 0.000 0.000 multiarray.py:1079(copyto) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha256} - 2 0.000 0.000 0.000 0.000 :1286(exec_module) - 1 0.000 0.000 0.000 0.000 _common.py:324(ZombieProcess) - 1 0.000 0.000 0.000 0.000 extras.py:282(_fromnxfunction_seq) - 1 0.000 0.000 0.000 0.000 _common.py:339(AccessDenied) - 1 0.000 0.000 0.000 0.000 index_tricks.py:538(CClass) - 1 0.000 0.000 0.000 0.000 _iotools.py:421(ConverterError) - 1 0.000 0.000 0.000 0.000 functions.py:100(DivisionBackward) - 1 0.000 0.000 0.000 0.000 inspect.py:895(EndOfBlock) - 1 0.000 0.000 0.000 0.000 __init__.py:162(c_short) - 1 0.000 0.000 0.000 0.000 extras.py:295(_fromnxfunction_args) - 1 0.000 0.000 0.000 0.000 __init__.py:253(c_wchar_p) - 1 0.000 0.000 0.000 0.000 shutil.py:72(SameFileError) - 1 0.000 0.000 0.000 0.000 functions.py:32(MatmulBackward) - 1 0.000 0.000 0.000 0.000 _globals.py:47(VisibleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 core.py:148(MAError) - 1 0.000 0.000 0.000 0.000 threading.py:1095(daemon) - 1 0.000 0.000 0.000 0.000 functions.py:48(PowBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:170(c_long) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha512} - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._set_madvise_hugepage} - 1 0.000 0.000 0.000 0.000 functions.py:66(LogBackward) - 1 0.000 0.000 0.000 0.000 functions.py:84(ReshapeBackward) - 1 0.000 0.000 0.000 0.000 shutil.py:85(RegistryError) - 1 0.000 0.000 0.000 0.000 subprocess.py:96(SubprocessError) - 1 0.000 0.000 0.000 0.000 shutil.py:75(SpecialFileError) - 1 0.000 0.000 0.000 0.000 threading.py:1260(_MainThread) - 1 0.000 0.000 0.000 0.000 __init__.py:166(c_ushort) - 1 0.000 0.000 0.000 0.000 threading.py:727(BrokenBarrierError) - 1 0.000 0.000 0.000 0.000 functions.py:91(TransposeBackward) - 1 0.000 0.000 0.000 0.000 functions.py:76(SumBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:191(c_float) - 1 0.000 0.000 0.000 0.000 extras.py:320(_fromnxfunction_allargs) - 1 0.000 0.000 0.000 0.000 _iotools.py:429(ConverterLockError) - 1 0.000 0.000 0.000 0.000 random.py:729(seed) - 1 0.000 0.000 0.000 0.000 __init__.py:199(c_longdouble) - 1 0.000 0.000 0.000 0.000 _distributor_init.py:1() - 1 0.000 0.000 0.000 0.000 __init__.py:174(c_ulong) - 1 0.000 0.000 0.000 0.000 core.py:156(MaskError) - 1 0.000 0.000 0.000 0.000 shutil.py:79(ExecError) - 1 0.000 0.000 0.000 0.000 tokenize.py:159(StopTokenizing) - 1 0.000 0.000 0.000 0.000 {built-in method math.sqrt} - 1 0.000 0.000 0.000 0.000 __init__.py:227(c_byte) - 1 0.000 0.000 0.000 0.000 __init__.py:183(c_int) - 1 0.000 0.000 0.000 0.000 contextlib.py:59(_recreate_cm) - 1 0.000 0.000 0.000 0.000 __init__.py:220(c_ubyte) - 1 0.000 0.000 0.000 0.000 __init__.py:258(c_wchar) - 1 0.000 0.000 0.000 0.000 __init__.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 __init__.py:248(c_bool) - 1 0.000 0.000 0.000 0.000 __init__.py:187(c_uint) - 1 0.000 0.000 0.000 0.000 __init__.py:232(c_char) - 1 0.000 0.000 0.000 0.000 __init__.py:195(c_double) - 1 0.000 0.000 0.000 0.000 _iotools.py:437(ConversionWarning) - 1 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.lock' objects} - - diff --git a/profile5.txt b/profile5.txt deleted file mode 100644 index f1038c3..0000000 --- a/profile5.txt +++ /dev/null @@ -1,1132 +0,0 @@ -CPU Usage: 4.6% -Memory Usage: 70.8% -MeuModulo( - (layer1): Linear(input_dim=50, output_dim=100, bias=True) - (sigmoid1): Sigmoid() - (layer2): Linear(input_dim=100, output_dim=2, bias=True) - (sigmoid2): Sigmoid() -) -1.28607177734375 - 847289 function calls (839027 primitive calls) in 2.505 seconds - - Ordered by: cumulative time - - ncalls tottime percall cumtime percall filename:lineno(function) - 197/1 0.004 0.000 2.505 2.505 {built-in method builtins.exec} - 1 0.001 0.001 2.505 2.505 test.py:2() - 30 0.087 0.003 1.272 0.042 tensor.py:137(backward) - 1 0.000 0.000 1.001 1.001 __init__.py:1692(cpu_percent) - 1 1.001 1.001 1.001 1.001 {built-in method time.sleep} - 30049 0.348 0.000 0.406 0.000 tensor.py:307(__mul__) - 18 0.001 0.000 0.350 0.019 __init__.py:1() - 2235 0.006 0.000 0.311 0.000 functions.py:36(backward) - 1800 0.005 0.000 0.300 0.000 functions.py:104(backward) - 23409 0.183 0.000 0.224 0.000 tensor.py:211(__add__) - 197/5 0.001 0.000 0.191 0.038 :986(_find_and_load) - 197/5 0.001 0.000 0.191 0.038 :956(_find_and_load_unlocked) - 186/5 0.001 0.000 0.190 0.038 :650(_load_unlocked) - 144/5 0.001 0.000 0.190 0.038 :842(exec_module) - 291/5 0.000 0.000 0.188 0.038 :211(_call_with_frames_removed) - 5340 0.159 0.000 0.183 0.000 tensor.py:543(transpose) - 217/25 0.001 0.000 0.169 0.007 :1017(_handle_fromlist) - 384/12 0.001 0.000 0.168 0.014 {built-in method builtins.__import__} - 2265 0.009 0.000 0.152 0.000 functions.py:52(backward) - 4530 0.128 0.000 0.135 0.000 tensor.py:356(__matmul__) - 1860 0.103 0.000 0.107 0.000 tensor.py:486(__rtruediv__) - 6904 0.005 0.000 0.082 0.000 functions.py:22(backward) - 76045 0.065 0.000 0.076 0.000 tensor.py:19(__init__) - 3045 0.005 0.000 0.056 0.000 functions.py:29(backward) - 1950 0.014 0.000 0.044 0.000 tensor.py:259(__sub__) - 144 0.002 0.000 0.041 0.000 :914(get_code) - 2205 0.002 0.000 0.034 0.000 functions.py:14(backward) - 3930 0.002 0.000 0.033 0.000 tensor.py:347(__rmul__) - 2265 0.001 0.000 0.032 0.000 tensor.py:350(__neg__) - 3660 0.023 0.000 0.031 0.000 tensor.py:429(__rpow__) - 1 0.000 0.000 0.030 0.030 multiarray.py:1() - 1 0.000 0.000 0.029 0.029 overrides.py:1() - 186/184 0.001 0.000 0.027 0.000 :549(module_from_spec) - 194 0.002 0.000 0.025 0.000 :890(_find_spec) - 1 0.000 0.000 0.024 0.024 test.py:80(__init__) - 144 0.001 0.000 0.024 0.000 :638(_compile_bytecode) - 2 0.000 0.000 0.024 0.012 linear.py:5(__init__) - 4 0.000 0.000 0.024 0.006 parameter.py:9(__init__) - 144 0.024 0.000 0.024 0.000 {built-in method marshal.loads} - 177 0.000 0.000 0.022 0.000 :1399(find_spec) - 177 0.001 0.000 0.021 0.000 :1367(_get_spec) - 1 0.000 0.000 0.020 0.020 __init__.py:7() - 198565 0.019 0.000 0.019 0.000 {built-in method _ctypes.POINTER} - 130694 0.019 0.000 0.019 0.000 {built-in method builtins.isinstance} - 23 0.000 0.000 0.019 0.001 :1164(create_module) - 23 0.014 0.001 0.019 0.001 {built-in method _imp.create_dynamic} - 331 0.005 0.000 0.018 0.000 :1498(find_spec) - 4440 0.018 0.000 0.018 0.000 functions.py:92(__init__) - 1 0.001 0.001 0.016 0.016 core.py:1() - 1800 0.012 0.000 0.015 0.000 tensor.py:448(__truediv__) - 1 0.000 0.000 0.015 0.015 _pickle.py:1() - 294/292 0.007 0.000 0.015 0.000 {built-in method builtins.__build_class__} - 1890 0.012 0.000 0.015 0.000 tensor.py:74(ones_like) - 314 0.002 0.000 0.014 0.000 overrides.py:170(decorator) - 23/18 0.000 0.000 0.013 0.001 :1172(exec_module) - 23/18 0.003 0.000 0.013 0.001 {built-in method _imp.exec_dynamic} - 1 0.000 0.000 0.013 0.013 py3k.py:1() - 1 0.000 0.000 0.012 0.012 numeric.py:1() - 36 0.000 0.000 0.012 0.000 tensor.py:57(flatten) - 5626/36 0.009 0.000 0.012 0.000 tensor.py:58(flatten_recursively) - 23469 0.011 0.000 0.011 0.000 functions.py:4(__init__) - 870 0.001 0.000 0.011 0.000 functions.py:97(backward) - 208/4 0.001 0.000 0.011 0.003 utils.py:5(generate_random_list) - 4 0.000 0.000 0.011 0.003 utils.py:16() - 1 0.000 0.000 0.011 0.011 index_tricks.py:1() - 204 0.004 0.000 0.010 0.000 utils.py:14() - 71451 0.010 0.000 0.010 0.000 {method 'copy' of 'list' objects} - 153 0.000 0.000 0.010 0.000 re.py:289(_compile) - 31 0.000 0.000 0.009 0.000 sre_compile.py:759(compile) - 1 0.000 0.000 0.009 0.009 inspect.py:1() - 28 0.000 0.000 0.009 0.000 re.py:250(compile) - 144 0.001 0.000 0.009 0.000 :1034(get_data) - 2 0.000 0.000 0.009 0.004 shape_base.py:1() - 14685 0.009 0.000 0.009 0.000 functions.py:26(__init__) - 284 0.002 0.000 0.008 0.000 overrides.py:88(verify_matching_signatures) - 30 0.001 0.000 0.007 0.000 sgd.py:11(step) - 1 0.000 0.000 0.007 0.007 pathlib.py:1() - 960 0.005 0.000 0.007 0.000 tensor.py:410(__pow__) - 51 0.003 0.000 0.007 0.000 __init__.py:313(namedtuple) - 1 0.001 0.001 0.007 0.007 fromnumeric.py:1() - 755 0.001 0.000 0.007 0.000 :135(_path_stat) - 186 0.001 0.000 0.007 0.000 :477(_init_module_attrs) - 1 0.000 0.000 0.006 0.006 _pslinux.py:5() - 1 0.000 0.000 0.006 0.006 _common.py:5() - 5302 0.005 0.000 0.006 0.000 random.py:415(uniform) - 618 0.001 0.000 0.006 0.000 _inspect.py:96(getargspec) - 759 0.006 0.000 0.006 0.000 {built-in method posix.stat} - 13440 0.006 0.000 0.006 0.000 functions.py:18(__init__) - 1 0.000 0.000 0.006 0.006 defmatrix.py:1() - 1740 0.002 0.000 0.006 0.000 :121(_path_join) - 317 0.001 0.000 0.005 0.000 function_base.py:483(add_newdoc) - 150/30 0.000 0.000 0.005 0.000 module.py:22(__call__) - 1 0.000 0.000 0.005 0.005 _add_newdocs.py:1() - 30 0.000 0.000 0.005 0.000 test.py:88(forward) - 288 0.002 0.000 0.005 0.000 :354(cache_from_source) - 1 0.000 0.000 0.005 0.005 tensor.py:1() - 31 0.000 0.000 0.005 0.000 sre_parse.py:937(parse) - 25735 0.005 0.000 0.005 0.000 {method 'add' of 'set' objects} - 33966 0.005 0.000 0.005 0.000 {method 'append' of 'list' objects} - 62/31 0.000 0.000 0.004 0.000 sre_parse.py:435(_parse_sub) - 65/31 0.002 0.000 0.004 0.000 sre_parse.py:493(_parse) - 1 0.000 0.000 0.004 0.004 secrets.py:1() - 1 0.000 0.000 0.004 0.004 linalg.py:1() - 1 0.000 0.000 0.004 0.004 npyio.py:1() - 385 0.002 0.000 0.004 0.000 functools.py:34(update_wrapper) - 31 0.000 0.000 0.004 0.000 sre_compile.py:598(_code) - 347 0.001 0.000 0.004 0.000 :194(_lock_unlock_module) - 14 0.000 0.000 0.004 0.000 core.py:115(doc_note) - 144 0.004 0.000 0.004 0.000 {built-in method io.open_code} - 1 0.000 0.000 0.004 0.004 linecache.py:1() - 7 0.000 0.000 0.004 0.001 enum.py:483(_convert_) - 1 0.000 0.000 0.004 0.004 numerictypes.py:1() - 465 0.003 0.000 0.004 0.000 tensor.py:507(log) - 311 0.000 0.000 0.004 0.000 :376(cached) - 614 0.003 0.000 0.004 0.000 _inspect.py:65(getargs) - 1 0.000 0.000 0.004 0.004 extras.py:1() - 1 0.000 0.000 0.004 0.004 _internal.py:1() - 144 0.003 0.000 0.003 0.000 {method 'read' of '_io.BufferedReader' objects} - 1 0.000 0.000 0.003 0.003 version.py:1() - 1 0.000 0.000 0.003 0.003 socket.py:4() - 79 0.000 0.000 0.003 0.000 enum.py:313(__call__) - 167 0.000 0.000 0.003 0.000 :484(_get_cached) - 1 0.000 0.000 0.003 0.003 tokenize.py:1() - 1 0.000 0.000 0.003 0.003 _methods.py:1() - 1 0.000 0.000 0.003 0.003 pickle.py:1() - 9 0.000 0.000 0.003 0.000 enum.py:430(_create_) - 28 0.002 0.000 0.003 0.000 inspect.py:625(cleandoc) - 2 0.000 0.000 0.003 0.002 polynomial.py:1() - 118/31 0.001 0.000 0.003 0.000 sre_compile.py:71(_compile) - 25098 0.003 0.000 0.003 0.000 {method 'pop' of 'list' objects} - 1 0.000 0.000 0.003 0.003 _version.py:7() - 1 0.000 0.000 0.003 0.003 datetime.py:1() - 60 0.000 0.000 0.003 0.000 activation.py:19(forward) - 14 0.001 0.000 0.003 0.000 enum.py:157(__new__) - 5200 0.003 0.000 0.003 0.000 {built-in method builtins.getattr} - 2 0.000 0.000 0.003 0.001 function_base.py:1() - 544 0.002 0.000 0.003 0.000 :157(_get_module_lock) - 197 0.000 0.000 0.003 0.000 :147(__enter__) - 1 0.000 0.000 0.003 0.003 hmac.py:1() - 1740 0.002 0.000 0.003 0.000 :123() - 1 0.000 0.000 0.003 0.003 getlimits.py:158(_register_known_types) - 17 0.000 0.000 0.003 0.000 :746(create_module) - 1 0.000 0.000 0.003 0.003 defchararray.py:1() - 17 0.003 0.000 0.003 0.000 {built-in method _imp.create_builtin} - 1 0.000 0.000 0.003 0.003 _compat.py:5() - 4620 0.003 0.000 0.003 0.000 functions.py:49(__init__) - 4530 0.002 0.000 0.002 0.000 functions.py:33(__init__) - 234 0.000 0.000 0.002 0.000 :154(_path_isfile) - 258 0.000 0.000 0.002 0.000 :145(_path_is_mode_type) - 6 0.000 0.000 0.002 0.000 getlimits.py:34(__init__) - 1 0.000 0.000 0.002 0.002 scimath.py:1() - 10 0.000 0.000 0.002 0.000 extras.py:234(__init__) - 10 0.000 0.000 0.002 0.000 extras.py:238(getdoc) - 1 0.000 0.000 0.002 0.002 shutil.py:1() - 544 0.002 0.000 0.002 0.000 :78(acquire) - 60 0.000 0.000 0.002 0.000 linear.py:12(forward) - 167 0.000 0.000 0.002 0.000 :1493(_get_spec) - 1 0.000 0.000 0.002 0.002 _pslinux.py:1667(Process) - 1 0.000 0.000 0.002 0.002 dis.py:1() - 1 0.000 0.000 0.002 0.002 ntpath.py:2() - 810 0.002 0.000 0.002 0.000 {built-in method __new__ of type object at 0x902780} - 37 0.000 0.000 0.002 0.000 abc.py:84(__new__) - 386 0.000 0.000 0.002 0.000 :1330(_path_importer_cache) - 544 0.002 0.000 0.002 0.000 :103(release) - 36 0.000 0.000 0.002 0.000 getlimits.py:111(_float_to_str) - 3660 0.002 0.000 0.002 0.000 functions.py:101(__init__) - 288 0.001 0.000 0.002 0.000 :127(_path_split) - 1 0.000 0.000 0.002 0.002 parse.py:1() - 1 0.000 0.000 0.002 0.002 _ufunc_config.py:1() - 1 0.000 0.000 0.001 0.001 subprocess.py:10() - 1 0.000 0.000 0.001 0.001 twodim_base.py:1() - 144 0.000 0.000 0.001 0.000 :1075(path_stats) - 2316 0.001 0.000 0.001 0.000 {built-in method builtins.setattr} - 1 0.000 0.000 0.001 0.001 decoder.py:1() - 1 0.000 0.000 0.001 0.001 tensor.py:15(Tensor) - 50 0.000 0.000 0.001 0.000 core.py:131(get_object_signature) - 2 0.000 0.000 0.001 0.001 __init__.py:339(__init__) - 58 0.001 0.000 0.001 0.000 sre_compile.py:276(_optimize_charset) - 2 0.001 0.001 0.001 0.001 {built-in method _ctypes.dlopen} - 2334 0.001 0.000 0.001 0.000 {method 'join' of 'str' objects} - 60 0.000 0.000 0.001 0.000 tensor.py:235(__radd__) - 317 0.000 0.000 0.001 0.000 function_base.py:469(_add_docstring) - 167 0.001 0.000 0.001 0.000 :689(spec_from_file_location) - 1 0.000 0.000 0.001 0.001 type_check.py:1() - 5304 0.001 0.000 0.001 0.000 {method 'random' of '_random.Random' objects} - 1802 0.001 0.000 0.001 0.000 {built-in method math.log} - 7 0.000 0.000 0.001 0.000 enum.py:500() - 5966 0.001 0.000 0.001 0.000 {method 'extend' of 'list' objects} - 1 0.000 0.000 0.001 0.001 _pocketfft.py:1() -5490/5366 0.001 0.000 0.001 0.000 {built-in method builtins.len} - 1 0.000 0.000 0.001 0.001 _type_aliases.py:1() - 18 0.000 0.000 0.001 0.000 arrayprint.py:1571(_array_str_implementation) - 1 0.000 0.000 0.001 0.001 _add_newdocs_scalars.py:1() - 2 0.000 0.000 0.001 0.001 utils.py:1() - 1 0.000 0.000 0.001 0.001 sgd.py:5(__init__) - 18 0.000 0.000 0.001 0.000 arrayprint.py:506(wrapper) - 22 0.000 0.000 0.001 0.000 :1317(_path_hooks) - 197 0.000 0.000 0.001 0.000 :151(__exit__) - 22 0.000 0.000 0.001 0.000 :1549(_fill_cache) - 1 0.000 0.000 0.001 0.001 optimizer.py:9(__init__) - 13/5 0.000 0.000 0.001 0.000 module.py:35(parameters) - 1 0.000 0.000 0.001 0.001 signal.py:1() - 18 0.001 0.000 0.001 0.000 arrayprint.py:1564(_guarded_repr_or_str) - 26 0.000 0.000 0.001 0.000 core.py:6832(__init__) - 1867 0.001 0.000 0.001 0.000 :222(_verbose_message) - 26 0.000 0.000 0.001 0.000 core.py:6837(getdoc) - 2241 0.001 0.000 0.001 0.000 {built-in method builtins.hasattr} - 52 0.000 0.000 0.001 0.000 core.py:894(__init__) - 304 0.000 0.000 0.001 0.000 {built-in method builtins.max} - 31 0.000 0.000 0.001 0.000 sre_compile.py:536(_compile_info) - 192 0.000 0.000 0.001 0.000 enum.py:75(__setitem__) - 22 0.001 0.000 0.001 0.000 {built-in method posix.listdir} - 1 0.000 0.000 0.001 0.001 pickle.py:197() - 1 0.000 0.000 0.001 0.001 linear.py:1() - 1 0.000 0.000 0.001 0.001 nanfunctions.py:1() - 1 0.000 0.000 0.001 0.001 scanner.py:1() - 144 0.000 0.000 0.001 0.000 :553(_classify_pyc) - 1950 0.001 0.000 0.001 0.000 functions.py:11(__init__) - 1 0.000 0.000 0.001 0.001 opcode.py:2() - 30 0.000 0.000 0.001 0.000 loss.py:13(__call__) - 568 0.000 0.000 0.001 0.000 :1(__new__) - 107 0.000 0.000 0.001 0.000 re.py:188(match) - 30 0.000 0.000 0.001 0.000 loss.py:21(forward) - 3600 0.001 0.000 0.001 0.000 functions.py:7(backward) - 432 0.001 0.000 0.001 0.000 :79(_unpack_uint32) - 144 0.000 0.000 0.001 0.000 :586(_validate_timestamp_pyc) - 156 0.000 0.000 0.001 0.000 module.py:100(__setattr__) - 196 0.001 0.000 0.001 0.000 :176(cb) - 618 0.000 0.000 0.001 0.000 _inspect.py:13(ismethod) - 317 0.000 0.000 0.001 0.000 function_base.py:451(_needs_add_docstring) - 14 0.000 0.000 0.001 0.000 re.py:223(split) - 1 0.000 0.000 0.001 0.001 _psposix.py:5() - 3770 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects} - 46 0.000 0.000 0.001 0.000 _inspect.py:140(formatargspec) - 1 0.000 0.000 0.001 0.001 bz2.py:1() - 405 0.000 0.000 0.001 0.000 abc.py:96(__instancecheck__) - 1 0.000 0.000 0.001 0.001 selectors.py:1() - 24 0.000 0.000 0.001 0.000 _add_newdocs_scalars.py:71(add_newdoc_for_scalar_type) - 14 0.000 0.000 0.001 0.000 core.py:8222(__init__) - 1 0.000 0.000 0.001 0.001 ctypeslib.py:1() - 1 0.000 0.000 0.001 0.001 ast.py:1() - 516 0.000 0.000 0.001 0.000 :389(parent) - 1255 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects} - 757 0.000 0.000 0.001 0.000 sre_parse.py:164(__getitem__) - 1 0.000 0.000 0.001 0.001 arrayprint.py:1() - 22 0.000 0.000 0.001 0.000 :1590(path_hook_for_FileFinder) - 23 0.000 0.000 0.001 0.000 overrides.py:221(decorator) - 196 0.000 0.000 0.001 0.000 :58(__init__) - 14 0.000 0.000 0.001 0.000 core.py:8227(getdoc) - 37 0.001 0.000 0.001 0.000 {built-in method _abc._abc_init} - 1 0.000 0.000 0.001 0.001 module.py:1() - 483 0.000 0.000 0.001 0.000 sre_parse.py:254(get) - 146/59 0.000 0.000 0.001 0.000 sre_parse.py:174(getwidth) - 30 0.000 0.000 0.001 0.000 functions.py:80(backward) - 1 0.000 0.000 0.001 0.001 random.py:1() - 618 0.000 0.000 0.001 0.000 _inspect.py:26(isfunction) - 405 0.000 0.000 0.001 0.000 {built-in method _abc._abc_instancecheck} - 548 0.000 0.000 0.001 0.000 :867(__exit__) - 614 0.000 0.000 0.001 0.000 _inspect.py:41(iscode) - 5 0.000 0.000 0.001 0.000 inspect.py:325(getmembers) - 383 0.001 0.000 0.001 0.000 functools.py:64(wraps) - 14 0.000 0.000 0.000 0.000 enum.py:200() - 1 0.000 0.000 0.000 0.000 _exceptions.py:1() - 1 0.000 0.000 0.000 0.000 contextvars.py:1() - 1 0.000 0.000 0.000 0.000 threading.py:1() - 548 0.000 0.000 0.000 0.000 :863(__enter__) - 1 0.000 0.000 0.000 0.000 arraysetops.py:1() - 984 0.000 0.000 0.000 0.000 {built-in method builtins.min} - 1 0.000 0.000 0.000 0.000 encoder.py:1() - 4 0.000 0.000 0.000 0.000 __init__.py:1595(cpu_times) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:362(_get_scalar_type_map) - 1 0.000 0.000 0.000 0.000 hashlib.py:5() - 3 0.000 0.000 0.000 0.000 warnings.py:130(filterwarnings) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:373() - 2162 0.000 0.000 0.000 0.000 {method 'startswith' of 'str' objects} - 621 0.000 0.000 0.000 0.000 sre_parse.py:233(__next) - 576 0.000 0.000 0.000 0.000 :129() - 314 0.000 0.000 0.000 0.000 {method 'replace' of 'code' objects} - 285 0.000 0.000 0.000 0.000 {method 'format' of 'str' objects} - 194 0.000 0.000 0.000 0.000 :725(find_spec) - 26 0.000 0.000 0.000 0.000 core.py:921(__init__) - 129/29 0.000 0.000 0.000 0.000 abc.py:100(__subclasscheck__) - 50 0.000 0.000 0.000 0.000 _internal.py:869(_ufunc_doc_signature_formatter) - 18 0.000 0.000 0.000 0.000 core.py:997(__init__) - 129/29 0.000 0.000 0.000 0.000 {built-in method _abc._abc_subclasscheck} - 14 0.000 0.000 0.000 0.000 hashlib.py:123(__get_openssl_constructor) - 1 0.000 0.000 0.000 0.000 numbers.py:4() - 4 0.000 0.000 0.000 0.000 textwrap.py:414(dedent) - 1 0.000 0.000 0.000 0.000 lzma.py:1() - 1288 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock} - 1 0.000 0.000 0.000 0.000 parameter.py:1() - 1 0.000 0.000 0.000 0.000 contextlib.py:72(inner) - 22 0.000 0.000 0.000 0.000 :1459(__init__) - 1 0.000 0.000 0.000 0.000 histograms.py:1() - 238 0.000 0.000 0.000 0.000 enum.py:417(__setattr__) - 1288 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock} - 3 0.000 0.000 0.000 0.000 _pslinux.py:584(cpu_times) - 31 0.000 0.000 0.000 0.000 enum.py:938(__and__) - 1107 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident} - 8 0.000 0.000 0.000 0.000 hashlib.py:79(__get_builtin_constructor) - 22 0.000 0.000 0.000 0.000 :63(__init__) - 12 0.000 0.000 0.000 0.000 datetime.py:488(__new__) - 1 0.000 0.000 0.000 0.000 ufunclike.py:1() - 1 0.000 0.000 0.000 0.000 stride_tricks.py:1() - 1 0.000 0.000 0.000 0.000 {function SeedSequence.generate_state at 0x7f2796f03c10} - 1 0.000 0.000 0.000 0.000 glob.py:1() - 341 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects} - 36 0.000 0.000 0.000 0.000 getlimits.py:91(_float_to_float) - 465 0.000 0.000 0.000 0.000 functions.py:67(__init__) - 144 0.000 0.000 0.000 0.000 :516(_check_name_wrapper) - 1 0.000 0.000 0.000 0.000 sgd.py:1() - 36 0.000 0.000 0.000 0.000 getlimits.py:16(_fr0) - 118 0.000 0.000 0.000 0.000 {built-in method numpy.array} - 189 0.000 0.000 0.000 0.000 :175(_path_isabs) - 1 0.000 0.000 0.000 0.000 __init__.py:1920(virtual_memory) - 4 0.000 0.000 0.000 0.000 re.py:203(sub) - 422 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects} - 14 0.000 0.000 0.000 0.000 enum.py:143(__prepare__) - 6 0.000 0.000 0.000 0.000 numeric.py:2536(extend_all) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:94(_add_aliases) - 1 0.000 0.000 0.000 0.000 _pslinux.py:406(virtual_memory) - 28 0.000 0.000 0.000 0.000 sre_parse.py:96(closegroup) - 14 0.000 0.000 0.000 0.000 {method 'split' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 _iotools.py:1() - 196 0.000 0.000 0.000 0.000 :342(__init__) - 928 0.000 0.000 0.000 0.000 {method 'lstrip' of 'str' objects} - 1 0.000 0.000 0.000 0.000 arraypad.py:1() - 379 0.000 0.000 0.000 0.000 socket.py:91() - 177 0.000 0.000 0.000 0.000 :800(find_spec) - 342 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.add_docstring} - 314 0.000 0.000 0.000 0.000 overrides.py:128(array_function_dispatch) - 1 0.000 0.000 0.000 0.000 _globals.py:1() - 5 0.000 0.000 0.000 0.000 _common.py:423(wrapper) - 58 0.000 0.000 0.000 0.000 {built-in method posix.getcwd} - 1 0.000 0.000 0.000 0.000 core.py:6527(__new__) - 378 0.000 0.000 0.000 0.000 socket.py:86() - 3 0.000 0.000 0.000 0.000 tokenize.py:83(_all_string_prefixes) - 1 0.000 0.000 0.000 0.000 base64.py:3() - 1 0.000 0.000 0.000 0.000 records.py:1() - 103 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects} - 51 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects} - 30 0.000 0.000 0.000 0.000 tensor.py:525(sum) - 1 0.000 0.000 0.000 0.000 _compat_pickle.py:9() - 146 0.000 0.000 0.000 0.000 :35(_new_module) - 16 0.000 0.000 0.000 0.000 sre_compile.py:411(_mk_bitmap) - 1 0.000 0.000 0.000 0.000 mixins.py:1() - 10 0.000 0.000 0.000 0.000 {built-in method builtins.dir} - 297 0.000 0.000 0.000 0.000 sre_parse.py:249(match) - 24 0.000 0.000 0.000 0.000 :159(_path_isdir) - 1 0.000 0.000 0.000 0.000 _polybase.py:1() - 1 0.000 0.000 0.000 0.000 _pslinux.py:259(set_scputimes_ntuple) - 16 0.000 0.000 0.000 0.000 _type_aliases.py:58(bitname) - 1 0.000 0.000 0.000 0.000 functions.py:1() - 1 0.000 0.000 0.000 0.000 laguerre.py:1() - 1 0.000 0.000 0.000 0.000 getlimits.py:1() - 581 0.000 0.000 0.000 0.000 {method 'get' of 'dict' objects} - 34 0.000 0.000 0.000 0.000 _pslinux.py:1646(wrap_exceptions) - 3 0.000 0.000 0.000 0.000 ufunclike.py:58(_fix_and_maybe_deprecate_out_named_y) - 6 0.000 0.000 0.000 0.000 module.py:13(__init__) - 1 0.000 0.000 0.000 0.000 _string_helpers.py:1() - 53 0.000 0.000 0.000 0.000 sre_compile.py:423(_simple) - 37 0.000 0.000 0.000 0.000 enum.py:532(_get_mixins_) - 30 0.000 0.000 0.000 0.000 optimizer.py:20(zero_grad) - 3 0.000 0.000 0.000 0.000 ufunclike.py:41(_fix_out_named_y) - 377 0.000 0.000 0.000 0.000 socket.py:81() - 6 0.000 0.000 0.000 0.000 _common.py:764(open_binary) - 1603 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects} - 1 0.000 0.000 0.000 0.000 chebyshev.py:1() - 14 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects} - 376 0.000 0.000 0.000 0.000 socket.py:76() - 291 0.000 0.000 0.000 0.000 sre_parse.py:172(append) - 1 0.000 0.000 0.000 0.000 hermite.py:1() - 1 0.000 0.000 0.000 0.000 legendre.py:1() - 17 0.000 0.000 0.000 0.000 :406(spec_from_loader) - 14 0.000 0.000 0.000 0.000 enum.py:579(_find_new_) - 1 0.000 0.000 0.000 0.000 mixins.py:59(NDArrayOperatorsMixin) - 240 0.000 0.000 0.000 0.000 sre_parse.py:160(__len__) - 58 0.000 0.000 0.000 0.000 sre_compile.py:249(_compile_charset) - 6 0.000 0.000 0.000 0.000 {built-in method io.open} - 396 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock} - 178 0.000 0.000 0.000 0.000 sre_parse.py:286(tell) - 1 0.000 0.000 0.000 0.000 hermite_e.py:1() - 112 0.000 0.000 0.000 0.000 {built-in method builtins.repr} - 11 0.000 0.000 0.000 0.000 abc.py:89(register) - 1 0.000 0.000 0.000 0.000 opcode.py:37() - 197 0.000 0.000 0.000 0.000 :143(__init__) - 1 0.000 0.000 0.000 0.000 _string_helpers.py:9() - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:100(dtype_from_ctypes_type) - 1 0.000 0.000 0.000 0.000 helper.py:1() - 1 0.000 0.000 0.000 0.000 einsumfunc.py:1() - 192 0.000 0.000 0.000 0.000 enum.py:22(_is_dunder) - 1 0.000 0.000 0.000 0.000 core.py:2697(MaskedArray) - 1 0.000 0.000 0.000 0.000 token.py:1() - 6 0.000 0.000 0.000 0.000 core.py:1146(__init__) - 1 0.000 0.000 0.000 0.000 pickle.py:407(_Pickler) - 73 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin} - 40/28 0.000 0.000 0.000 0.000 sre_compile.py:461(_get_literal_prefix) - 5 0.000 0.000 0.000 0.000 {method 'readline' of '_io.BufferedReader' objects} - 11 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register} - 70 0.000 0.000 0.000 0.000 enum.py:631(__new__) - 433 0.000 0.000 0.000 0.000 {built-in method from_bytes} - 192 0.000 0.000 0.000 0.000 enum.py:33(_is_sunder) - 289 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects} - 152 0.000 0.000 0.000 0.000 enum.py:12(_is_descriptor) - 36 0.000 0.000 0.000 0.000 getlimits.py:24(_fr1) - 42 0.000 0.000 0.000 0.000 getlimits.py:101(_float_conv) - 31 0.000 0.000 0.000 0.000 sre_parse.py:224(__init__) - 466 0.000 0.000 0.000 0.000 {built-in method posix.fspath} - 16 0.000 0.000 0.000 0.000 __init__.py:383(__getattr__) - 194 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects} - 1 0.000 0.000 0.000 0.000 core.py:2808(__new__) - 28 0.000 0.000 0.000 0.000 {method 'expandtabs' of 'str' objects} - 1 0.000 0.000 0.000 0.000 ast.py:405(NodeTransformer) - 4/3 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.ndarray' objects} - 1 0.000 0.000 0.000 0.000 _datasource.py:1() - 1 0.000 0.000 0.000 0.000 umath.py:1() - 16 0.000 0.000 0.000 0.000 _type_aliases.py:44(_bits_of) - 14 0.000 0.000 0.000 0.000 core.py:8239(_replace_return_type) - 31 0.000 0.000 0.000 0.000 sre_parse.py:432(_uniq) - 16 0.000 0.000 0.000 0.000 sre_compile.py:413() - 52 0.000 0.000 0.000 0.000 _add_newdocs.py:6753(refer_to_array_attribute) - 1 0.000 0.000 0.000 0.000 token.py:74() - 17 0.000 0.000 0.000 0.000 :754(exec_module) - 37 0.000 0.000 0.000 0.000 enum.py:543(_find_data_type) - 1 0.000 0.000 0.000 0.000 struct.py:3() - 177 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen} - 403 0.000 0.000 0.000 0.000 {built-in method builtins.globals} - 8 0.000 0.000 0.000 0.000 {built-in method builtins.sorted} - 1 0.000 0.000 0.000 0.000 __init__.py:1733(calculate) - 2 0.000 0.000 0.000 0.000 core.py:2966(__array_finalize__) - 144 0.000 0.000 0.000 0.000 :1004(__init__) - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:33(seterr) - 93 0.000 0.000 0.000 0.000 _inspect.py:131(strseq) - 257 0.000 0.000 0.000 0.000 hmac.py:17() - 13 0.000 0.000 0.000 0.000 mixins.py:44(_numeric_methods) - 120 0.000 0.000 0.000 0.000 tensor.py:167(zero_grad) - 47 0.000 0.000 0.000 0.000 re.py:270(escape) - 72 0.000 0.000 0.000 0.000 {method 'copy' of 'numpy.ndarray' objects} - 1 0.000 0.000 0.000 0.000 defchararray.py:1908(chararray) - 61 0.000 0.000 0.000 0.000 _inspect.py:144() - 1 0.000 0.000 0.000 0.000 __init__.py:298(Process) - 1 0.000 0.000 0.000 0.000 threading.py:1262(__init__) - 1 0.000 0.000 0.000 0.000 inspect.py:2428(_ParameterKind) - 28 0.000 0.000 0.000 0.000 sre_parse.py:84(opengroup) - 317 0.000 0.000 0.000 0.000 __init__.py:385() - 109 0.000 0.000 0.000 0.000 {method 'match' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 _pslinux.py:600(per_cpu_times) - 1 0.000 0.000 0.000 0.000 sgd.py:9() - 1 0.000 0.000 0.000 0.000 memmap.py:1() - 1 0.000 0.000 0.000 0.000 _psposix.py:66() - 47 0.000 0.000 0.000 0.000 sre_parse.py:355(_escape) - 4 0.000 0.000 0.000 0.000 enum.py:932(__or__) - 4 0.000 0.000 0.000 0.000 tensor.py:90(zeros_like) - 257 0.000 0.000 0.000 0.000 hmac.py:18() - 331 0.000 0.000 0.000 0.000 :68(_relax_case) - 121 0.000 0.000 0.000 0.000 sre_parse.py:111(__init__) - 317 0.000 0.000 0.000 0.000 {built-in method sys.intern} - 1 0.000 0.000 0.000 0.000 _asarray.py:1() - 218 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects} - 172 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects} - 1 0.000 0.000 0.000 0.000 selectors.py:80(BaseSelector) - 1 0.000 0.000 0.000 0.000 _endian.py:1() - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:430(__enter__) - 1 0.000 0.000 0.000 0.000 polyutils.py:1() - 16 0.000 0.000 0.000 0.000 __init__.py:390(__getitem__) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:211(_set_array_types) - 1 0.000 0.000 0.000 0.000 datetime.py:2181(timezone) - 1 0.000 0.000 0.000 0.000 core.py:3115(view) - 1 0.000 0.000 0.000 0.000 _polybase.py:18(ABCPolyBase) - 83 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects} - 41 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:83() - 1 0.000 0.000 0.000 0.000 os.py:42(_get_exports_list) - 118 0.000 0.000 0.000 0.000 sre_parse.py:81(groups) - 1 0.000 0.000 0.000 0.000 activation.py:1() - 17 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin} - 98 0.000 0.000 0.000 0.000 types.py:171(__get__) - 8 0.000 0.000 0.000 0.000 {method 'sub' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 numerictypes.py:588(_register_types) - 1 0.000 0.000 0.000 0.000 traceback.py:1() - 144 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename} - 2 0.000 0.000 0.000 0.000 enum.py:889(_missing_) - 3 0.000 0.000 0.000 0.000 datetime.py:1567(__new__) - 1 0.000 0.000 0.000 0.000 bisect.py:1() - 82 0.000 0.000 0.000 0.000 overrides.py:121(decorator) - 186 0.000 0.000 0.000 0.000 :397(has_location) - 2 0.000 0.000 0.000 0.000 enum.py:899(_create_pseudo_member_) - 120 0.000 0.000 0.000 0.000 opcode.py:39(def_op) - 1 0.000 0.000 0.000 0.000 __init__.py:1671(_cpu_times_deltas) - 2 0.000 0.000 0.000 0.000 core.py:6721(__init__) - 1 0.000 0.000 0.000 0.000 _compression.py:1() - 192 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass} - 288 0.000 0.000 0.000 0.000 {built-in method builtins.chr} - 82 0.000 0.000 0.000 0.000 overrides.py:110(set_module) - 1 0.000 0.000 0.000 0.000 core.py:6545(__array_finalize__) - 2 0.000 0.000 0.000 0.000 contextlib.py:71(__call__) - 36 0.000 0.000 0.000 0.000 _string_helpers.py:16(english_lower) - 1 0.000 0.000 0.000 0.000 numerictypes.py:440(_construct_lookups) - 1 0.000 0.000 0.000 0.000 pickle.py:1136(_Unpickler) - 1 0.000 0.000 0.000 0.000 __init__.py:335(_sanity_check) - 317 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects} - 31 0.000 0.000 0.000 0.000 {built-in method _sre.compile} - 62 0.000 0.000 0.000 0.000 sre_compile.py:595(isstring) - 2 0.000 0.000 0.000 0.000 enum.py:978(_decompose) - 78 0.000 0.000 0.000 0.000 _internal.py:880() - 16 0.000 0.000 0.000 0.000 {built-in method builtins.next} - 2 0.000 0.000 0.000 0.000 datetime.py:661(__neg__) - 76 0.000 0.000 0.000 0.000 signal.py:10() - 24 0.000 0.000 0.000 0.000 numerictypes.py:513(_scalar_type_key) - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:71(_from_ctypes_scalar) - 176 0.000 0.000 0.000 0.000 :1465() - 1 0.000 0.000 0.000 0.000 linalg.py:74(_determine_error_states) - 1 0.000 0.000 0.000 0.000 format.py:1() - 2 0.000 0.000 0.000 0.000 tensor.py:569(T) - 238 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects} - 30 0.000 0.000 0.000 0.000 _type_aliases.py:203(_add_array_type) - 4 0.000 0.000 0.000 0.000 sre_parse.py:267(getuntil) - 321 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects} - 3 0.000 0.000 0.000 0.000 contextlib.py:211(contextmanager) - 32 0.000 0.000 0.000 0.000 _type_aliases.py:46() - 1 0.000 0.000 0.000 0.000 loss.py:1() - 7 0.000 0.000 0.000 0.000 _common.py:444(memoize_when_activated) - 2 0.000 0.000 0.000 0.000 functools.py:525(decorating_function) - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:18(numeric_type_aliases) - 14 0.000 0.000 0.000 0.000 enum.py:522(_check_for_existing_members) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:435(__exit__) - 31 0.000 0.000 0.000 0.000 sre_parse.py:921(fix_flags) - 1 0.000 0.000 0.000 0.000 __init__.py:261(_reset_cache) - 1 0.000 0.000 0.000 0.000 _machar.py:1() - 144 0.000 0.000 0.000 0.000 :1029(get_filename) - 24 0.000 0.000 0.000 0.000 sre_parse.py:295(_class_escape) - 1 0.000 0.000 0.000 0.000 fnmatch.py:1() - 3 0.000 0.000 0.000 0.000 __init__.py:498(PYFUNCTYPE) - 5 0.000 0.000 0.000 0.000 datetime.py:411(_check_date_fields) - 4 0.000 0.000 0.000 0.000 {built-in method builtins.print} - 4 0.000 0.000 0.000 0.000 _common.py:400(memoize) - 24 0.000 0.000 0.000 0.000 tokenize.py:94() - 2 0.000 0.000 0.000 0.000 posixpath.py:372(abspath) - 1 0.000 0.000 0.000 0.000 tensor.py:5(CTensor) - 4 0.000 0.000 0.000 0.000 genericpath.py:16(exists) - 252 0.000 0.000 0.000 0.000 {built-in method builtins.ord} - 18 0.000 0.000 0.000 0.000 sre_compile.py:492(_get_charset_prefix) - 7 0.000 0.000 0.000 0.000 getlimits.py:668(__init__) - 31 0.000 0.000 0.000 0.000 {built-in method fromkeys} - 2 0.000 0.000 0.000 0.000 __init__.py:75(CFUNCTYPE) - 63 0.000 0.000 0.000 0.000 {method 'split' of 'bytes' objects} - 1 0.000 0.000 0.000 0.000 arrayterator.py:1() - 9 0.000 0.000 0.000 0.000 overrides.py:23(set_array_function_like_doc) - 1 0.000 0.000 0.000 0.000 pathlib.py:120(_WindowsFlavour) - 17 0.000 0.000 0.000 0.000 :232(_requires_builtin_wrapper) - 31 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:74(_add_types) - 1 0.000 0.000 0.000 0.000 optimizer.py:1() - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:132(geterr) - 2 0.000 0.000 0.000 0.000 core.py:2940(_update_from) - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:19(type_aliases_gen) - 144 0.000 0.000 0.000 0.000 :839(create_module) - 63 0.000 0.000 0.000 0.000 abc.py:7(abstractmethod) - 4 0.000 0.000 0.000 0.000 {method 'findall' of 're.Pattern' objects} - 14 0.000 0.000 0.000 0.000 __init__.py:141(_check_size) - 207 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 threading.py:761(__init__) - 2 0.000 0.000 0.000 0.000 arrayprint.py:503(decorating_function) - 2 0.000 0.000 0.000 0.000 datetime.py:1236(__new__) - 1 0.000 0.000 0.000 0.000 _version.py:1() - 1 0.000 0.000 0.000 0.000 _type_aliases.py:123(_add_integer_aliases) - 5 0.000 0.000 0.000 0.000 datetime.py:424(_check_time_fields) - 55 0.000 0.000 0.000 0.000 sre_parse.py:168(__setitem__) - 2 0.000 0.000 0.000 0.000 activation.py:16(__init__) - 14 0.000 0.000 0.000 0.000 {built-in method builtins.round} - 20 0.000 0.000 0.000 0.000 mixins.py:16(_binary_method) - 2 0.000 0.000 0.000 0.000 enum.py:997() - 1 0.000 0.000 0.000 0.000 polynomial.py:1472(Polynomial) - 4 0.000 0.000 0.000 0.000 _collections_abc.py:657(get) - 252 0.000 0.000 0.000 0.000 inspect.py:366() - 1 0.000 0.000 0.000 0.000 _pytesttester.py:1() - 85 0.000 0.000 0.000 0.000 _compat_pickle.py:167() - 14 0.000 0.000 0.000 0.000 enum.py:370(__getattr__) - 1 0.000 0.000 0.000 0.000 pathlib.py:629(PurePath) - 10 0.000 0.000 0.000 0.000 sre_compile.py:432(_generate_overlap_table) - 1 0.000 0.000 0.000 0.000 ufunclike.py:16(_deprecate_out_named_y) - 1 0.000 0.000 0.000 0.000 numbers.py:294(Integral) - 35 0.000 0.000 0.000 0.000 datetime.py:379(_check_int_field) - 14 0.000 0.000 0.000 0.000 enum.py:175() - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(concatenate) - 1 0.000 0.000 0.000 0.000 _globals.py:93(_CopyMode) - 6 0.000 0.000 0.000 0.000 os.py:670(__getitem__) - 2 0.000 0.000 0.000 0.000 datetime.py:819(__new__) - 2 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function} - 19 0.000 0.000 0.000 0.000 tokenize.py:58(group) - 6 0.000 0.000 0.000 0.000 __init__.py:266(_assert_pid_not_reused) - 1 0.000 0.000 0.000 0.000 __future__.py:1() - 14 0.000 0.000 0.000 0.000 enum.py:68(__init__) - 2 0.000 0.000 0.000 0.000 activation.py:8(__init__) - 1 0.000 0.000 0.000 0.000 __init__.py:187() - 1 0.000 0.000 0.000 0.000 numbers.py:32(Complex) - 13 0.000 0.000 0.000 0.000 mixins.py:36(_inplace_binary_method) - 2 0.000 0.000 0.000 0.000 random.py:94(__init__) - 1 0.000 0.000 0.000 0.000 _dtype.py:1() - 1 0.000 0.000 0.000 0.000 subprocess.py:638(_use_posix_spawn) - 46 0.000 0.000 0.000 0.000 sre_compile.py:65(_combine_flags) - 1 0.000 0.000 0.000 0.000 _iotools.py:450(StringConverter) - 12 0.000 0.000 0.000 0.000 opcode.py:43(name_op) - 96 0.000 0.000 0.000 0.000 {built-in method builtins.abs} - 2 0.000 0.000 0.000 0.000 os.py:684(__delitem__) - 14 0.000 0.000 0.000 0.000 mixins.py:26(_reflected_binary_method) - 14 0.000 0.000 0.000 0.000 {built-in method builtins.any} - 3 0.000 0.000 0.000 0.000 _pslinux.py:596() - 48 0.000 0.000 0.000 0.000 {method 'encode' of 'str' objects} - 4 0.000 0.000 0.000 0.000 warnings.py:181(_add_filter) - 8 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects} - 1 0.000 0.000 0.000 0.000 sre_compile.py:416(_bytes_to_codes) - 1 0.000 0.000 0.000 0.000 datetime.py:1559(datetime) - 1 0.000 0.000 0.000 0.000 module.py:86(__repr__) - 1 0.000 0.000 0.000 0.000 __init__.py:1276() - 1 0.000 0.000 0.000 0.000 _pslinux.py:118(IOPriority) - 1 0.000 0.000 0.000 0.000 os.py:46() - 23 0.000 0.000 0.000 0.000 :1153(__init__) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:151(_set_up_aliases) - 1 0.000 0.000 0.000 0.000 _internal.py:239(_missing_ctypes) - 1 0.000 0.000 0.000 0.000 pathlib.py:1025(Path) - 1 0.000 0.000 0.000 0.000 random.py:123(seed) - 1 0.000 0.000 0.000 0.000 polynomial.py:1076(poly1d) - 58 0.000 0.000 0.000 0.000 sre_compile.py:453(_get_iscased) - 1 0.000 0.000 0.000 0.000 threading.py:519(set) - 12 0.000 0.000 0.000 0.000 os.py:748(encode) - 7 0.000 0.000 0.000 0.000 core.py:2544(_arraymethod) - 13 0.000 0.000 0.000 0.000 _internal.py:917(npy_ctypes_check) - 16 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects} - 60 0.000 0.000 0.000 0.000 {built-in method builtins.divmod} - 9 0.000 0.000 0.000 0.000 {built-in method numpy.seterrobj} - 1 0.000 0.000 0.000 0.000 _common.py:140(NicDuplex) - 1 0.000 0.000 0.000 0.000 numbers.py:147(Real) - 1 0.000 0.000 0.000 0.000 abc.py:1() - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:54(_get_platform_and_machine) - 8 0.000 0.000 0.000 0.000 _pslinux.py:614() - 1 0.000 0.000 0.000 0.000 _version.py:20(get_versions) - 101 0.000 0.000 0.000 0.000 enum.py:506() - 1 0.000 0.000 0.000 0.000 defmatrix.py:72(matrix) - 43 0.000 0.000 0.000 0.000 _compat_pickle.py:165() - 1 0.000 0.000 0.000 0.000 socket.py:213(socket) - 1 0.000 0.000 0.000 0.000 datetime.py:789(date) - 1 0.000 0.000 0.000 0.000 _dtype_ctypes.py:1() - 1 0.000 0.000 0.000 0.000 threading.py:750(Thread) - 2 0.000 0.000 0.000 0.000 {built-in method posix.uname} - 1 0.000 0.000 0.000 0.000 subprocess.py:688(Popen) - 1 0.000 0.000 0.000 0.000 __init__.py:299(loads) - 1 0.000 0.000 0.000 0.000 numeric.py:150(ones) - 1 0.000 0.000 0.000 0.000 __config__.py:3() - 1 0.000 0.000 0.000 0.000 warnings.py:165(simplefilter) - 2 0.000 0.000 0.000 0.000 posixpath.py:334(normpath) - 1 0.000 0.000 0.000 0.000 __init__.py:216() - 1 0.000 0.000 0.000 0.000 hermite.py:1658(Hermite) - 2 0.000 0.000 0.000 0.000 __init__.py:1636(_cpu_tot_time) - 39 0.000 0.000 0.000 0.000 enum.py:223() - 1 0.000 0.000 0.000 0.000 threading.py:903(_set_tstate_lock) - 1 0.000 0.000 0.000 0.000 chebyshev.py:1995(Chebyshev) - 1 0.000 0.000 0.000 0.000 {function Random.seed at 0x7f27abb9bee0} - 1 0.000 0.000 0.000 0.000 datetime.py:1211(time) - 1 0.000 0.000 0.000 0.000 datetime.py:469(timedelta) - 1 0.000 0.000 0.000 0.000 decoder.py:332(decode) - 4 0.000 0.000 0.000 0.000 posixpath.py:71(join) - 1 0.000 0.000 0.000 0.000 pathlib.py:399(_NormalAccessor) - 70 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects} - 6 0.000 0.000 0.000 0.000 _exceptions.py:17(_display_as_base) - 33 0.000 0.000 0.000 0.000 enum.py:393() - 1 0.000 0.000 0.000 0.000 loss.py:18(__init__) - 53 0.000 0.000 0.000 0.000 {built-in method sys._getframe} - 1 0.000 0.000 0.000 0.000 legendre.py:1619(Legendre) - 1 0.000 0.000 0.000 0.000 laguerre.py:1606(Laguerre) - 1 0.000 0.000 0.000 0.000 _common.py:152(BatteryTime) - 1 0.000 0.000 0.000 0.000 threading.py:505(__init__) - 23 0.000 0.000 0.000 0.000 overrides.py:217(array_function_from_dispatcher) - 1 0.000 0.000 0.000 0.000 hermite_e.py:1650(HermiteE) - 2 0.000 0.000 0.000 0.000 os.py:678(__setitem__) - 30 0.000 0.000 0.000 0.000 functions.py:77(__init__) - 1 0.000 0.000 0.000 0.000 loss.py:7(__init__) - 1 0.000 0.000 0.000 0.000 pathlib.py:510(_PreciseSelector) - 1 0.000 0.000 0.000 0.000 random.py:721(getrandbits) - 1 0.000 0.000 0.000 0.000 core.py:6517(MaskedConstant) - 6 0.000 0.000 0.000 0.000 _type_aliases.py:92() - 2 0.000 0.000 0.000 0.000 :1205(__init__) - 18 0.000 0.000 0.000 0.000 {built-in method numpy.geterrobj} - 20 0.000 0.000 0.000 0.000 _inspect.py:142() - 48 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects} - 2 0.000 0.000 0.000 0.000 _collections_abc.py:664(__contains__) - 55 0.000 0.000 0.000 0.000 enum.py:748(name) - 1 0.000 0.000 0.000 0.000 inspect.py:2457(Parameter) - 4 0.000 0.000 0.000 0.000 :1221(_get_parent_path) - 36 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects} - 1 0.000 0.000 0.000 0.000 threading.py:222(__init__) - 1 0.000 0.000 0.000 0.000 inspect.py:2742(Signature) - 1 0.000 0.000 0.000 0.000 {method 'dot' of 'numpy.ndarray' objects} - 2 0.000 0.000 0.000 0.000 :1238(__iter__) - 6 0.000 0.000 0.000 0.000 opcode.py:47(jrel_op) - 1 0.000 0.000 0.000 0.000 decoder.py:284(__init__) - 2 0.000 0.000 0.000 0.000 {built-in method posix.unsetenv} - 1 0.000 0.000 0.000 0.000 threading.py:364(notify_all) - 18 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize} - 14 0.000 0.000 0.000 0.000 {method 'mro' of 'type' objects} - 4 0.000 0.000 0.000 0.000 getlimits.py:692(max) - 1 0.000 0.000 0.000 0.000 os.py:766(getenv) - 2 0.000 0.000 0.000 0.000 functools.py:487(lru_cache) - 21 0.000 0.000 0.000 0.000 _inspect.py:143() - 1 0.000 0.000 0.000 0.000 _type_aliases.py:41() - 1 0.000 0.000 0.000 0.000 parse.py:364(_fix_result_transcoding) - 1 0.000 0.000 0.000 0.000 _inspect.py:1() - 13 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects} - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:441(_setdef) - 1 0.000 0.000 0.000 0.000 _common.py:388(usage_percent) - 1 0.000 0.000 0.000 0.000 core.py:6322(mvoid) - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:79() - 81 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased} - 16 0.000 0.000 0.000 0.000 _dtype.py:24(_kind_name) - 1 0.000 0.000 0.000 0.000 threading.py:900(_set_native_id) - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(copyto) - 1 0.000 0.000 0.000 0.000 core.py:1329(make_mask_descr) - 2 0.000 0.000 0.000 0.000 copyreg.py:12(pickle) - 4 0.000 0.000 0.000 0.000 sre_parse.py:258(getwhile) - 1 0.000 0.000 0.000 0.000 traceback.py:440(TracebackException) - 1 0.000 0.000 0.000 0.000 inspect.py:2612(BoundArguments) - 1 0.000 0.000 0.000 0.000 getlimits.py:364(finfo) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_md5} - 18 0.000 0.000 0.000 0.000 {method 'discard' of 'set' objects} - 5 0.000 0.000 0.000 0.000 opcode.py:51(jabs_op) - 2 0.000 0.000 0.000 0.000 _collections_abc.py:72(_check_methods) - 5 0.000 0.000 0.000 0.000 _ufunc_config.py:426(__init__) - 1 0.000 0.000 0.000 0.000 random.py:78(Random) - 1 0.000 0.000 0.000 0.000 _collections_abc.py:349(__subclasshook__) - 1 0.000 0.000 0.000 0.000 _iotools.py:229(NameValidator) - 9 0.000 0.000 0.000 0.000 _pytesttester.py:76(__init__) - 1 0.000 0.000 0.000 0.000 _datasource.py:196(DataSource) - 43 0.000 0.000 0.000 0.000 enum.py:753(value) - 78 0.000 0.000 0.000 0.000 signal.py:22() - 1 0.000 0.000 0.000 0.000 npyio.py:106(NpzFile) - 77 0.000 0.000 0.000 0.000 signal.py:17() - 1 0.000 0.000 0.000 0.000 pathlib.py:136() - 3 0.000 0.000 0.000 0.000 index_tricks.py:323(__init__) - 1 0.000 0.000 0.000 0.000 {built-in method math.exp} - 68 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_tolower} - 1 0.000 0.000 0.000 0.000 _internal.py:613(_Stream) - 1 0.000 0.000 0.000 0.000 core.py:1315(_replace_dtype_fields) - 1 0.000 0.000 0.000 0.000 threading.py:341(notify) - 1 0.000 0.000 0.000 0.000 extras.py:1567(__init__) - 10 0.000 0.000 0.000 0.000 enum.py:398(__members__) - 2 0.000 0.000 0.000 0.000 core.py:6620(__setattr__) - 1 0.000 0.000 0.000 0.000 __init__.py:1655(_cpu_busy_time) - 5 0.000 0.000 0.000 0.000 enum.py:1015(_power_of_two) - 1 0.000 0.000 0.000 0.000 _internal.py:248(_ctypes) - 5 0.000 0.000 0.000 0.000 _common.py:836(get_procfs_path) - 1 0.000 0.000 0.000 0.000 pathlib.py:57(_Flavour) - 2 0.000 0.000 0.000 0.000 :1225(_recalculate) - 3 0.000 0.000 0.000 0.000 datetime.py:2201(_create) - 25 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects} - 1 0.000 0.000 0.000 0.000 lzma.py:38(LZMAFile) - 1 0.000 0.000 0.000 0.000 subprocess.py:99(CalledProcessError) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha1} - 1 0.000 0.000 0.000 0.000 core.py:977(_MaskedBinaryOperation) - 1 0.000 0.000 0.000 0.000 _common.py:634(outer) - 1 0.000 0.000 0.000 0.000 bz2.py:30(BZ2File) - 8 0.000 0.000 0.000 0.000 getlimits.py:153(_register_type) - 1 0.000 0.000 0.000 0.000 {method 'tolist' of 'memoryview' objects} - 4 0.000 0.000 0.000 0.000 mixins.py:51(_unary_method) - 2 0.000 0.000 0.000 0.000 linear.py:16(inner_repr) - 1 0.000 0.000 0.000 0.000 core.py:191() - 2 0.000 0.000 0.000 0.000 {built-in method posix.putenv} - 1 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__) - 1 0.000 0.000 0.000 0.000 decoder.py:343(raw_decode) - 1 0.000 0.000 0.000 0.000 datetime.py:1141(tzinfo) - 1 0.000 0.000 0.000 0.000 _internal.py:216(_getintp_ctype) - 1 0.000 0.000 0.000 0.000 arrayprint.py:905(FloatingFormat) - 17 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 posixpath.py:150(dirname) - 1 0.000 0.000 0.000 0.000 threading.py:573(Barrier) - 1 0.000 0.000 0.000 0.000 threading.py:376(Semaphore) - 1 0.000 0.000 0.000 0.000 sre_parse.py:861(_parse_flags) - 1 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.generic' objects} - 1 0.000 0.000 0.000 0.000 numbers.py:267(Rational) - 1 0.000 0.000 0.000 0.000 core.py:6821(_frommethod) - 1 0.000 0.000 0.000 0.000 __init__.py:318(CDLL) - 1 0.000 0.000 0.000 0.000 module.py:9(Module) - 1 0.000 0.000 0.000 0.000 pathlib.py:137() - 1 0.000 0.000 0.000 0.000 _exceptions.py:99(_UFuncOutputCastingError) - 1 0.000 0.000 0.000 0.000 random.py:709(SystemRandom) - 1 0.000 0.000 0.000 0.000 threading.py:1281(_DummyThread) - 12 0.000 0.000 0.000 0.000 {method 'islower' of 'str' objects} - 1 0.000 0.000 0.000 0.000 os.py:1073(__subclasshook__) - 18 0.000 0.000 0.000 0.000 {built-in method builtins.id} - 1 0.000 0.000 0.000 0.000 parse.py:154(_NetlocResultMixinBase) - 1 0.000 0.000 0.000 0.000 extras.py:264(_fromnxfunction_single) - 1 0.000 0.000 0.000 0.000 _version.py:14(NumpyVersion) - 1 0.000 0.000 0.000 0.000 index_tricks.py:313(AxisConcatenator) - 1 0.000 0.000 0.000 0.000 getlimits.py:32(MachArLike) - 2 0.000 0.000 0.000 0.000 posixpath.py:60(isabs) - 5 0.000 0.000 0.000 0.000 datetime.py:46(_days_in_month) - 1 0.000 0.000 0.000 0.000 pathlib.py:285(_PosixFlavour) - 1 0.000 0.000 0.000 0.000 arrayterator.py:16(Arrayterator) - 38 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof} - 1 0.000 0.000 0.000 0.000 _pslinux.py:337() - 1 0.000 0.000 0.000 0.000 selectors.py:442(EpollSelector) - 1 0.000 0.000 0.000 0.000 hmac.py:26(HMAC) - 1 0.000 0.000 0.000 0.000 {built-in method posix.urandom} - 1 0.000 0.000 0.000 0.000 {method 'union' of 'set' objects} - 1 0.000 0.000 0.000 0.000 index_tricks.py:531(__init__) - 7 0.000 0.000 0.000 0.000 posixpath.py:41(_get_sep) - 2 0.000 0.000 0.000 0.000 tokenize.py:60(maybe) - 4 0.000 0.000 0.000 0.000 core.py:3405(dtype) - 1 0.000 0.000 0.000 0.000 _exceptions.py:224(_ArrayMemoryError) - 1 0.000 0.000 0.000 0.000 index_tricks.py:257(__init__) - 3 0.000 0.000 0.000 0.000 datetime.py:41(_days_before_year) - 9 0.000 0.000 0.000 0.000 _globals.py:86(__repr__) - 17 0.000 0.000 0.000 0.000 :771(is_package) - 3 0.000 0.000 0.000 0.000 {built-in method posix.getpid} - 1 0.000 0.000 0.000 0.000 extras.py:1519(MAxisConcatenator) - 1 0.000 0.000 0.000 0.000 index_tricks.py:264(OGridClass) - 1 0.000 0.000 0.000 0.000 index_tricks.py:563(__init__) - 1 0.000 0.000 0.000 0.000 tokenize.py:59(any) - 3 0.000 0.000 0.000 0.000 core.py:1362(getmask) - 1 0.000 0.000 0.000 0.000 enum.py:389(__iter__) - 4 0.000 0.000 0.000 0.000 :1211(_find_parent_path_names) - 1 0.000 0.000 0.000 0.000 _pslinux.py:789(__init__) - 7 0.000 0.000 0.000 0.000 {built-in method builtins.vars} - 1 0.000 0.000 0.000 0.000 _weakrefset.py:81(add) - 1 0.000 0.000 0.000 0.000 core.py:1283(_replace_dtype_fields_recursive) - 1 0.000 0.000 0.000 0.000 records.py:223(record) - 5 0.000 0.000 0.000 0.000 inspect.py:72(isclass) - 3 0.000 0.000 0.000 0.000 enum.py:957(_high_bit) - 2 0.000 0.000 0.000 0.000 {built-in method builtins.sum} - 1 0.000 0.000 0.000 0.000 core.py:2372(_MaskedPrintOption) - 6 0.000 0.000 0.000 0.000 core.py:846(__init__) - 1 0.000 0.000 0.000 0.000 getlimits.py:613(iinfo) - 1 0.000 0.000 0.000 0.000 threading.py:210(Condition) - 1 0.000 0.000 0.000 0.000 {built-in method _thread.get_native_id} - 10 0.000 0.000 0.000 0.000 __future__.py:83(__init__) - 1 0.000 0.000 0.000 0.000 records.py:308(recarray) - 1 0.000 0.000 0.000 0.000 core.py:6712(_extrema_operation) - 1 0.000 0.000 0.000 0.000 dis.py:479(Bytecode) - 1 0.000 0.000 0.000 0.000 _pslinux.py:1189(RootFsDeviceFinder) - 2 0.000 0.000 0.000 0.000 pathlib.py:61(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:94(_RLock) - 15 0.000 0.000 0.000 0.000 {method 'startswith' of 'bytes' objects} - 1 0.000 0.000 0.000 0.000 _datasource.py:536(Repository) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.empty} - 1 0.000 0.000 0.000 0.000 index_tricks.py:306(__init__) - 1 0.000 0.000 0.000 0.000 memmap.py:22(memmap) - 1 0.000 0.000 0.000 0.000 _common.py:653(__init__) - 2 0.000 0.000 0.000 0.000 {built-in method posix.register_at_fork} - 3 0.000 0.000 0.000 0.000 core.py:806(__init__) - 1 0.000 0.000 0.000 0.000 pickle.py:200(_Framer) - 1 0.000 0.000 0.000 0.000 {method 'find' of 'str' objects} - 1 0.000 0.000 0.000 0.000 _machar.py:17(MachAr) - 1 0.000 0.000 0.000 0.000 core.py:8209(_convert2ma) - 5 0.000 0.000 0.000 0.000 datetime.py:441(_check_tzinfo_arg) - 1 0.000 0.000 0.000 0.000 subprocess.py:136(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 core.py:195() - 1 0.000 0.000 0.000 0.000 socket.py:626(SocketIO) - 1 0.000 0.000 0.000 0.000 core.py:2589(MaskedIterator) - 1 0.000 0.000 0.000 0.000 _iotools.py:133(LineSplitter) - 1 0.000 0.000 0.000 0.000 threading.py:249(__exit__) - 1 0.000 0.000 0.000 0.000 threading.py:246(__enter__) - 1 0.000 0.000 0.000 0.000 __init__.py:255() - 1 0.000 0.000 0.000 0.000 traceback.py:227(FrameSummary) - 1 0.000 0.000 0.000 0.000 function_base.py:2117(vectorize) - 1 0.000 0.000 0.000 0.000 test.py:97() - 4 0.000 0.000 0.000 0.000 core.py:6521(__has_singleton) - 1 0.000 0.000 0.000 0.000 test.py:79(MeuModulo) - 1 0.000 0.000 0.000 0.000 _pslinux.py:777(Connections) - 1 0.000 0.000 0.000 0.000 parse.py:191(_NetlocResultMixinStr) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:30() - 1 0.000 0.000 0.000 0.000 {method 'cast' of 'memoryview' objects} - 1 0.000 0.000 0.000 0.000 _datasource.py:99(__init__) - 1 0.000 0.000 0.000 0.000 _internal.py:204(dummy_ctype) - 1 0.000 0.000 0.000 0.000 tokenize.py:45(TokenInfo) - 1 0.000 0.000 0.000 0.000 pickle.py:263(_Unframer) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:183(_ndptr) - 2 0.000 0.000 0.000 0.000 index_tricks.py:145(__init__) - 1 0.000 0.000 0.000 0.000 tokenize.py:162(Untokenizer) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:204(_concrete_ndptr) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1351(StructuredVoidFormat) - 1 0.000 0.000 0.000 0.000 parse.py:797(Quoter) - 1 0.000 0.000 0.000 0.000 functions.py:48(PowBackward) - 1 0.000 0.000 0.000 0.000 threading.py:261(_is_owned) - 1 0.000 0.000 0.000 0.000 py3k.py:84(contextlib_nullcontext) - 1 0.000 0.000 0.000 0.000 _datasource.py:74(_FileOpeners) - 1 0.000 0.000 0.000 0.000 random.py:103(__init_subclass__) - 1 0.000 0.000 0.000 0.000 core.py:190() - 2 0.000 0.000 0.000 0.000 core.py:3421(shape) - 3 0.000 0.000 0.000 0.000 __init__.py:405() - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:367(errstate) - 1 0.000 0.000 0.000 0.000 threading.py:494(Event) - 1 0.000 0.000 0.000 0.000 records.py:87(format_parser) - 1 0.000 0.000 0.000 0.000 __init__.py:215() - 1 0.000 0.000 0.000 0.000 threading.py:1177(_make_invoke_excepthook) - 1 0.000 0.000 0.000 0.000 ast.py:347(NodeVisitor) - 2 0.000 0.000 0.000 0.000 __init__.py:367(_FuncPtr) - 1 0.000 0.000 0.000 0.000 extras.py:214(_fromnxfunction) - 1 0.000 0.000 0.000 0.000 {built-in method posix.confstr} - 2 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.lock' objects} - 5 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects} - 1 0.000 0.000 0.000 0.000 core.py:903(_MaskedUnaryOperation) - 1 0.000 0.000 0.000 0.000 __init__.py:1287(Popen) - 1 0.000 0.000 0.000 0.000 _compression.py:33(DecompressReader) - 1 0.000 0.000 0.000 0.000 core.py:194() - 1 0.000 0.000 0.000 0.000 selectors.py:290(SelectSelector) - 1 0.000 0.000 0.000 0.000 parse.py:221(_NetlocResultMixinBytes) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1304(DatetimeFormat) - 1 0.000 0.000 0.000 0.000 _exceptions.py:38(_UFuncBinaryResolutionError) - 1 0.000 0.000 0.000 0.000 traceback.py:318(StackSummary) - 1 0.000 0.000 0.000 0.000 index_tricks.py:212(MGridClass) - 1 0.000 0.000 0.000 0.000 pathlib.py:601(_PathParents) - 1 0.000 0.000 0.000 0.000 index_tricks.py:619(ndindex) - 1 0.000 0.000 0.000 0.000 _globals.py:80(__new__) - 1 0.000 0.000 0.000 0.000 npyio.py:42(BagObj) - 1 0.000 0.000 0.000 0.000 pathlib.py:1569(WindowsPath) - 1 0.000 0.000 0.000 0.000 encoder.py:104(__init__) - 3 0.000 0.000 0.000 0.000 __init__.py:499(CFunctionType) - 1 0.000 0.000 0.000 0.000 encoder.py:73(JSONEncoder) - 5 0.000 0.000 0.000 0.000 module.py:97(get_name) - 2 0.000 0.000 0.000 0.000 {built-in method maketrans} - 3 0.000 0.000 0.000 0.000 core.py:867(__init__) - 1 0.000 0.000 0.000 0.000 index_tricks.py:110(nd_grid) - 1 0.000 0.000 0.000 0.000 threading.py:1230(Timer) - 1 0.000 0.000 0.000 0.000 parse.py:138(_ResultMixinStr) - 1 0.000 0.000 0.000 0.000 index_tricks.py:570(ndenumerate) - 1 0.000 0.000 0.000 0.000 test.py:102() - 1 0.000 0.000 0.000 0.000 selectors.py:341(_PollLikeSelector) - 1 0.000 0.000 0.000 0.000 _exceptions.py:81(_UFuncInputCastingError) - 2 0.000 0.000 0.000 0.000 core.py:883(__init__) - 1 0.000 0.000 0.000 0.000 selectors.py:206(_BaseSelectorImpl) - 1 0.000 0.000 0.000 0.000 _exceptions.py:132(AxisError) - 1 0.000 0.000 0.000 0.000 _pytesttester.py:46(PytestTester) - 1 0.000 0.000 0.000 0.000 stride_tricks.py:15(DummyArray) - 1 0.000 0.000 0.000 0.000 _common.py:648(_WrapNumbers) - 1 0.000 0.000 0.000 0.000 decoder.py:254(JSONDecoder) - 1 0.000 0.000 0.000 0.000 core.py:1125(_DomainedBinaryOperation) - 1 0.000 0.000 0.000 0.000 threading.py:896(_set_ident) - 1 0.000 0.000 0.000 0.000 _exceptions.py:54(_UFuncNoLoopError) - 1 0.000 0.000 0.000 0.000 _common.py:278(Error) - 1 0.000 0.000 0.000 0.000 utils.py:126(_Deprecate) - 1 0.000 0.000 0.000 0.000 parse.py:146(_ResultMixinBytes) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1245(ComplexFloatingFormat) - 2 0.000 0.000 0.000 0.000 {built-in method time.time} - 4 0.000 0.000 0.000 0.000 {built-in method _warnings._filters_mutated} - 1 0.000 0.000 0.000 0.000 core.py:840(_DomainSafeDivide) - 1 0.000 0.000 0.000 0.000 parse.py:326(DefragResult) - 1 0.000 0.000 0.000 0.000 core.py:797(_DomainCheckInterval) - 1 0.000 0.000 0.000 0.000 _exceptions.py:32(UFuncTypeError) - 1 0.000 0.000 0.000 0.000 subprocess.py:419(CompletedProcess) - 1 0.000 0.000 0.000 0.000 core.py:893(_MaskedUFunc) - 1 0.000 0.000 0.000 0.000 threading.py:456(BoundedSemaphore) - 1 0.000 0.000 0.000 0.000 {built-in method posix.sysconf} - 1 0.000 0.000 0.000 0.000 numbers.py:12(Number) - 2 0.000 0.000 0.000 0.000 index_tricks.py:762(__init__) - 3 0.000 0.000 0.000 0.000 {built-in method builtins.callable} - 2 0.000 0.000 0.000 0.000 arrayprint.py:493(_recursive_guard) - 1 0.000 0.000 0.000 0.000 pathlib.py:1002(PurePosixPath) - 1 0.000 0.000 0.000 0.000 index_tricks.py:718(IndexExpression) - 1 0.000 0.000 0.000 0.000 numerictypes.py:424(_typedict) - 1 0.000 0.000 0.000 0.000 selectors.py:433(PollSelector) - 1 0.000 0.000 0.000 0.000 pathlib.py:557(_RecursiveWildcardSelector) - 1 0.000 0.000 0.000 0.000 ast.py:505(Num) - 1 0.000 0.000 0.000 0.000 _exceptions.py:72(_UFuncCastingError) - 1 0.000 0.000 0.000 0.000 core.py:861(_DomainGreater) - 1 0.000 0.000 0.000 0.000 core.py:2378(__init__) - 1 0.000 0.000 0.000 0.000 pathlib.py:479(_Selector) - 1 0.000 0.000 0.000 0.000 extras.py:320(_fromnxfunction_allargs) - 1 0.000 0.000 0.000 0.000 core.py:877(_DomainGreaterEqual) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1222(IntegerFormat) - 1 0.000 0.000 0.000 0.000 pathlib.py:1012(PureWindowsPath) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1278(_TimelikeFormat) - 1 0.000 0.000 0.000 0.000 core.py:822(_DomainTan) - 1 0.000 0.000 0.000 0.000 ast.py:476(_ABC) - 1 0.000 0.000 0.000 0.000 {built-in method psutil._psutil_posix.getpagesize} - 1 0.000 0.000 0.000 0.000 __future__.py:81(_Feature) - 1 0.000 0.000 0.000 0.000 dis.py:209(Instruction) - 1 0.000 0.000 0.000 0.000 _compression.py:9(BaseStream) - 1 0.000 0.000 0.000 0.000 linalg.py:44(LinAlgError) - 1 0.000 0.000 0.000 0.000 __init__.py:396(PyDLL) - 2 0.000 0.000 0.000 0.000 {method 'clear' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 inspect.py:897(BlockFinder) - 1 0.000 0.000 0.000 0.000 loss.py:4(Loss) - 2 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 selectors.py:60(_SelectorMapping) - 1 0.000 0.000 0.000 0.000 pathlib.py:526(_WildcardSelector) - 1 0.000 0.000 0.000 0.000 copyreg.py:22(constructor) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha224} - 1 0.000 0.000 0.000 0.000 activation.py:4(Activation) - 2 0.000 0.000 0.000 0.000 __init__.py:101(CFunctionType) - 1 0.000 0.000 0.000 0.000 ast.py:509(Str) - 1 0.000 0.000 0.000 0.000 optimizer.py:4(Optimizer) - 1 0.000 0.000 0.000 0.000 core.py:830(__init__) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha256} - 1 0.000 0.000 0.000 0.000 index_tricks.py:436(RClass) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1235(BoolFormat) - 1 0.000 0.000 0.000 0.000 extras.py:1549(mr_class) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha384} - 1 0.000 0.000 0.000 0.000 _globals.py:60(_NoValueType) - 1 0.000 0.000 0.000 0.000 parse.py:334(SplitResult) - 1 0.000 0.000 0.000 0.000 __init__.py:436(LibraryLoader) - 1 0.000 0.000 0.000 0.000 linear.py:4(Linear) - 1 0.000 0.000 0.000 0.000 sgd.py:4(SGD) - 1 0.000 0.000 0.000 0.000 inspect.py:2420(_void) - 1 0.000 0.000 0.000 0.000 polynomial.py:28(RankWarning) - 1 0.000 0.000 0.000 0.000 threading.py:727(BrokenBarrierError) - 2 0.000 0.000 0.000 0.000 __init__.py:437(__init__) - 1 0.000 0.000 0.000 0.000 parse.py:345(DefragResultBytes) - 1 0.000 0.000 0.000 0.000 ast.py:513(Bytes) - 1 0.000 0.000 0.000 0.000 pickle.py:73(PickleError) - 1 0.000 0.000 0.000 0.000 pickle.py:97(_Stop) - 1 0.000 0.000 0.000 0.000 pathlib.py:1562(PosixPath) - 1 0.000 0.000 0.000 0.000 polyutils.py:47(RankWarning) - 1 0.000 0.000 0.000 0.000 __init__.py:153(py_object) - 1 0.000 0.000 0.000 0.000 parse.py:339(ParseResult) - 1 0.000 0.000 0.000 0.000 parse.py:358(ParseResultBytes) - 1 0.000 0.000 0.000 0.000 numeric.py:61(ComplexWarning) - 1 0.000 0.000 0.000 0.000 parse.py:353(SplitResultBytes) - 1 0.000 0.000 0.000 0.000 {built-in method _thread._set_sentinel} - 1 0.000 0.000 0.000 0.000 :1() - 1 0.000 0.000 0.000 0.000 extras.py:282(_fromnxfunction_seq) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1341(SubArrayFormat) - 1 0.000 0.000 0.000 0.000 _endian.py:23(_swapped_meta) - 5 0.000 0.000 0.000 0.000 enum.py:1009() - 1 0.000 0.000 0.000 0.000 pathlib.py:504(_TerminatingSelector) - 1 0.000 0.000 0.000 0.000 _internal.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 index_tricks.py:538(CClass) - 1 0.000 0.000 0.000 0.000 ast.py:520(Ellipsis) - 1 0.000 0.000 0.000 0.000 threading.py:1260(_MainThread) - 1 0.000 0.000 0.000 0.000 inspect.py:895(EndOfBlock) - 1 0.000 0.000 0.000 0.000 tokenize.py:157(TokenError) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha512} - 1 0.000 0.000 0.000 0.000 pathlib.py:394(_Accessor) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.set_typeDict} - 1 0.000 0.000 0.000 0.000 arrayprint.py:1336(TimedeltaFormat) - 1 0.000 0.000 0.000 0.000 functions.py:3(AddBackward) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencoding} - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:360(_unspecified) - 1 0.000 0.000 0.000 0.000 decoder.py:20(JSONDecodeError) - 1 0.000 0.000 0.000 0.000 inspect.py:2424(_empty) - 1 0.000 0.000 0.000 0.000 parameter.py:5(Parameter) - 1 0.000 0.000 0.000 0.000 _iotools.py:421(ConverterError) - 1 0.000 0.000 0.000 0.000 activation.py:15(Sigmoid) - 1 0.000 0.000 0.000 0.000 _exceptions.py:118(TooHardError) - 1 0.000 0.000 0.000 0.000 core.py:148(MAError) - 1 0.000 0.000 0.000 0.000 random.py:729(seed) - 1 0.000 0.000 0.000 0.000 pickle.py:84(UnpicklingError) - 1 0.000 0.000 0.000 0.000 loss.py:17(MSELoss) - 1 0.000 0.000 0.000 0.000 _iotools.py:437(ConversionWarning) - 1 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 extras.py:295(_fromnxfunction_args) - 1 0.000 0.000 0.000 0.000 _common.py:311(NoSuchProcess) - 1 0.000 0.000 0.000 0.000 core.py:84(MaskedArrayFutureWarning) - 1 0.000 0.000 0.000 0.000 threading.py:1095(daemon) - 1 0.000 0.000 0.000 0.000 {built-in method numpy._set_promotion_state} - 1 0.000 0.000 0.000 0.000 ast.py:517(NameConstant) - 1 0.000 0.000 0.000 0.000 pickle.py:77(PicklingError) - 1 0.000 0.000 0.000 0.000 subprocess.py:96(SubprocessError) - 1 0.000 0.000 0.000 0.000 _pslinux.py:773(_Ipv6UnsupportedError) - 1 0.000 0.000 0.000 0.000 _endian.py:46(BigEndianStructure) - 1 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 contextlib.py:59(_recreate_cm) - 1 0.000 0.000 0.000 0.000 tokenize.py:159(StopTokenizing) - 2 0.000 0.000 0.000 0.000 {built-in method builtins.iter} - 1 0.000 0.000 0.000 0.000 _globals.py:33(ModuleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 _common.py:324(ZombieProcess) - 1 0.000 0.000 0.000 0.000 functions.py:17(ScalarMulBackward) - 1 0.000 0.000 0.000 0.000 {method 'items' of 'collections.OrderedDict' objects} - 1 0.000 0.000 0.000 0.000 multiarray.py:152(concatenate) - 1 0.000 0.000 0.000 0.000 __init__.py:237(c_char_p) - 1 0.000 0.000 0.000 0.000 __init__.py:174(c_ulong) - 1 0.000 0.000 0.000 0.000 _common.py:630(deprecated_method) - 3 0.000 0.000 0.000 0.000 {method 'bit_length' of 'int' objects} - 2 0.000 0.000 0.000 0.000 :1286(exec_module) - 1 0.000 0.000 0.000 0.000 __init__.py:162(c_short) - 1 0.000 0.000 0.000 0.000 functions.py:32(MatmulBackward) - 1 0.000 0.000 0.000 0.000 core.py:156(MaskError) - 1 0.000 0.000 0.000 0.000 shutil.py:69(Error) - 1 0.000 0.000 0.000 0.000 functions.py:66(LogBackward) - 1 0.000 0.000 0.000 0.000 functions.py:100(DivisionBackward) - 1 0.000 0.000 0.000 0.000 socket.py:210(_GiveupOnSendfile) - 1 0.000 0.000 0.000 0.000 {built-in method math.sqrt} - 2 0.000 0.000 0.000 0.000 module.py:83(inner_repr) - 1 0.000 0.000 0.000 0.000 _common.py:339(AccessDenied) - 1 0.000 0.000 0.000 0.000 __init__.py:253(c_wchar_p) - 1 0.000 0.000 0.000 0.000 __init__.py:166(c_ushort) - 2 0.000 0.000 0.000 0.000 {method 'end' of 're.Match' objects} - 1 0.000 0.000 0.000 0.000 functions.py:10(SubBackward) - 1 0.000 0.000 0.000 0.000 functions.py:25(ElementwiseMulBackward) - 1 0.000 0.000 0.000 0.000 _iotools.py:429(ConverterLockError) - 1 0.000 0.000 0.000 0.000 __init__.py:195(c_double) - 1 0.000 0.000 0.000 0.000 functions.py:76(SumBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:227(c_byte) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._reload_guard} - 1 0.000 0.000 0.000 0.000 __init__.py:248(c_bool) - 1 0.000 0.000 0.000 0.000 __init__.py:220(c_ubyte) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencodeerrors} - 1 0.000 0.000 0.000 0.000 shutil.py:72(SameFileError) - 1 0.000 0.000 0.000 0.000 __init__.py:199(c_longdouble) - 1 0.000 0.000 0.000 0.000 functions.py:84(ReshapeBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:232(c_char) - 1 0.000 0.000 0.000 0.000 __init__.py:183(c_int) - 1 0.000 0.000 0.000 0.000 multiarray.py:1079(copyto) - 1 0.000 0.000 0.000 0.000 functions.py:91(TransposeBackward) - 1 0.000 0.000 0.000 0.000 _common.py:350(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 _globals.py:47(VisibleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 __init__.py:170(c_long) - 1 0.000 0.000 0.000 0.000 __init__.py:187(c_uint) - 1 0.000 0.000 0.000 0.000 __init__.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} - 1 0.000 0.000 0.000 0.000 _distributor_init.py:1() - 1 0.000 0.000 0.000 0.000 __init__.py:191(c_float) - 1 0.000 0.000 0.000 0.000 __init__.py:258(c_wchar) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._set_madvise_hugepage} - 1 0.000 0.000 0.000 0.000 shutil.py:75(SpecialFileError) - 1 0.000 0.000 0.000 0.000 shutil.py:79(ExecError) - 1 0.000 0.000 0.000 0.000 shutil.py:82(ReadError) - 1 0.000 0.000 0.000 0.000 shutil.py:89(_GiveupOnFastCopy) - 1 0.000 0.000 0.000 0.000 shutil.py:85(RegistryError) - - diff --git a/profile7.txt b/profile7.txt deleted file mode 100644 index cb0dee0..0000000 --- a/profile7.txt +++ /dev/null @@ -1,1132 +0,0 @@ -CPU Usage: 6.5% -Memory Usage: 72.7% -MeuModulo( - (layer1): Linear(input_dim=100, output_dim=1000, bias=True) - (sigmoid1): Sigmoid() - (layer2): Linear(input_dim=1000, output_dim=2, bias=True) - (sigmoid2): Sigmoid() -) -5.255076169967651 - 1451689 function calls (1342077 primitive calls) in 6.641 seconds - - Ordered by: cumulative time - - ncalls tottime percall cumtime percall filename:lineno(function) - 197/1 0.003 0.000 6.641 6.641 {built-in method builtins.exec} - 1 0.001 0.001 6.641 6.641 test.py:2() - 30 0.084 0.003 5.178 0.173 tensor.py:137(backward) - 2235 0.006 0.000 2.774 0.001 functions.py:36(backward) - 4530 1.636 0.000 1.645 0.000 tensor.py:356(__matmul__) - 5340 1.161 0.000 1.172 0.000 tensor.py:543(transpose) - 23409 1.033 0.000 1.071 0.000 tensor.py:211(__add__) - 1 0.000 0.000 1.001 1.001 __init__.py:1692(cpu_percent) - 1 1.000 1.000 1.000 1.000 {built-in method time.sleep} - 30049 0.932 0.000 0.989 0.000 tensor.py:307(__mul__) - 6904 0.004 0.000 0.475 0.000 functions.py:22(backward) - 18 0.001 0.000 0.349 0.019 __init__.py:1() - 2205 0.002 0.000 0.254 0.000 functions.py:14(backward) - 2265 0.001 0.000 0.253 0.000 tensor.py:350(__neg__) - 1800 0.098 0.000 0.227 0.000 functions.py:104(backward) - 1 0.000 0.000 0.194 0.194 test.py:80(__init__) - 2 0.001 0.001 0.194 0.097 linear.py:5(__init__) - 4 0.000 0.000 0.193 0.048 parameter.py:9(__init__) - 2265 0.010 0.000 0.190 0.000 functions.py:52(backward) - 197/5 0.001 0.000 0.188 0.038 :986(_find_and_load) - 197/5 0.001 0.000 0.188 0.038 :956(_find_and_load_unlocked) - 186/5 0.001 0.000 0.187 0.037 :650(_load_unlocked) - 144/5 0.001 0.000 0.187 0.037 :842(exec_module) - 291/5 0.000 0.000 0.185 0.037 :211(_call_with_frames_removed) - 76045 0.072 0.000 0.166 0.000 tensor.py:19(__init__) - 217/25 0.001 0.000 0.166 0.007 :1017(_handle_fromlist) - 384/12 0.001 0.000 0.165 0.014 {built-in method builtins.__import__} - 36 0.000 0.000 0.094 0.003 tensor.py:57(flatten) -105176/36 0.070 0.000 0.094 0.003 tensor.py:58(flatten_recursively) - 2008/4 0.002 0.000 0.086 0.021 utils.py:5(generate_random_list) - 4 0.001 0.000 0.086 0.021 utils.py:16() - 2004 0.035 0.000 0.082 0.000 utils.py:14() - 3045 0.005 0.000 0.066 0.000 functions.py:29(backward) - 1950 0.029 0.000 0.064 0.000 tensor.py:259(__sub__) - 3930 0.002 0.000 0.061 0.000 tensor.py:347(__rmul__) - 30 0.001 0.000 0.056 0.002 sgd.py:11(step) - 3660 0.043 0.000 0.050 0.000 tensor.py:429(__rpow__) - 103002 0.039 0.000 0.048 0.000 random.py:415(uniform) - 144 0.002 0.000 0.040 0.000 :914(get_code) - 870 0.001 0.000 0.035 0.000 functions.py:97(backward) - 1 0.000 0.000 0.030 0.030 multiarray.py:1() - 1 0.000 0.000 0.028 0.028 overrides.py:1() - 186/184 0.001 0.000 0.026 0.000 :549(module_from_spec) - 230244 0.025 0.000 0.025 0.000 {built-in method builtins.isinstance} - 194 0.002 0.000 0.025 0.000 :890(_find_spec) - 144 0.001 0.000 0.024 0.000 :638(_compile_bytecode) - 144 0.023 0.000 0.023 0.000 {built-in method marshal.loads} - 177 0.000 0.000 0.022 0.000 :1399(find_spec) - 177 0.001 0.000 0.021 0.000 :1367(_get_spec) - 150/30 0.000 0.000 0.020 0.001 module.py:22(__call__) - 30 0.000 0.000 0.020 0.001 test.py:88(forward) - 1890 0.017 0.000 0.020 0.000 tensor.py:74(ones_like) - 198565 0.019 0.000 0.019 0.000 {built-in method _ctypes.POINTER} - 1800 0.016 0.000 0.019 0.000 tensor.py:448(__truediv__) - 23 0.000 0.000 0.018 0.001 :1164(create_module) - 331 0.004 0.000 0.018 0.000 :1498(find_spec) - 23 0.014 0.001 0.018 0.001 {built-in method _imp.create_dynamic} - 1 0.000 0.000 0.018 0.018 __init__.py:7() - 1860 0.014 0.000 0.017 0.000 tensor.py:486(__rtruediv__) - 1 0.001 0.001 0.016 0.016 core.py:1() - 1 0.000 0.000 0.015 0.015 _pickle.py:1() - 60 0.000 0.000 0.015 0.000 linear.py:12(forward) - 314 0.002 0.000 0.015 0.000 overrides.py:170(decorator) - 294/292 0.006 0.000 0.014 0.000 {built-in method builtins.__build_class__} - 1 0.000 0.000 0.013 0.013 py3k.py:1() - 23/18 0.000 0.000 0.013 0.001 :1172(exec_module) - 23/18 0.003 0.000 0.013 0.001 {built-in method _imp.exec_dynamic} - 1 0.000 0.000 0.013 0.013 numeric.py:1() - 1 0.000 0.000 0.011 0.011 index_tricks.py:1() - 133516 0.011 0.000 0.011 0.000 {method 'append' of 'list' objects} - 153 0.000 0.000 0.010 0.000 re.py:289(_compile) - 14685 0.010 0.000 0.010 0.000 functions.py:26(__init__) - 71451 0.010 0.000 0.010 0.000 {method 'copy' of 'list' objects} - 31 0.000 0.000 0.010 0.000 sre_compile.py:759(compile) - 28 0.000 0.000 0.009 0.000 re.py:250(compile) - 103004 0.009 0.000 0.009 0.000 {method 'random' of '_random.Random' objects} - 2 0.000 0.000 0.009 0.004 shape_base.py:1() - 23469 0.009 0.000 0.009 0.000 functions.py:4(__init__) - 1 0.000 0.000 0.009 0.009 inspect.py:1() - 144 0.001 0.000 0.009 0.000 :1034(get_data) - 107316 0.008 0.000 0.008 0.000 {method 'extend' of 'list' objects} - 284 0.002 0.000 0.008 0.000 overrides.py:88(verify_matching_signatures) - 1 0.000 0.000 0.007 0.007 pathlib.py:1() - 1 0.001 0.001 0.007 0.007 fromnumeric.py:1() - 755 0.001 0.000 0.006 0.000 :135(_path_stat) - 186 0.001 0.000 0.006 0.000 :477(_init_module_attrs) - 51 0.003 0.000 0.006 0.000 __init__.py:313(namedtuple) - 618 0.001 0.000 0.006 0.000 _inspect.py:96(getargspec) - 960 0.005 0.000 0.006 0.000 tensor.py:410(__pow__) - 13440 0.006 0.000 0.006 0.000 functions.py:18(__init__) - 759 0.006 0.000 0.006 0.000 {built-in method posix.stat} - 1 0.000 0.000 0.006 0.006 defmatrix.py:1() - 1740 0.002 0.000 0.006 0.000 :121(_path_join) - 1 0.000 0.000 0.006 0.006 _pslinux.py:5() - 1 0.000 0.000 0.005 0.005 _common.py:5() - 31 0.000 0.000 0.005 0.000 sre_parse.py:937(parse) - 317 0.001 0.000 0.005 0.000 function_base.py:483(add_newdoc) - 1 0.000 0.000 0.005 0.005 _add_newdocs.py:1() - 288 0.002 0.000 0.005 0.000 :354(cache_from_source) - 60 0.000 0.000 0.005 0.000 activation.py:19(forward) - 62/31 0.000 0.000 0.005 0.000 sre_parse.py:435(_parse_sub) - 1 0.000 0.000 0.005 0.005 tensor.py:1() - 65/31 0.002 0.000 0.005 0.000 sre_parse.py:493(_parse) - 1 0.000 0.000 0.004 0.004 numerictypes.py:1() - 385 0.002 0.000 0.004 0.000 functools.py:34(update_wrapper) - 1 0.000 0.000 0.004 0.004 linalg.py:1() - 31 0.000 0.000 0.004 0.000 sre_compile.py:598(_code) - 25735 0.004 0.000 0.004 0.000 {method 'add' of 'set' objects} - 1 0.000 0.000 0.004 0.004 secrets.py:1() - 347 0.001 0.000 0.004 0.000 :194(_lock_unlock_module) - 4440 0.004 0.000 0.004 0.000 functions.py:92(__init__) - 14 0.000 0.000 0.004 0.000 core.py:115(doc_note) - 1 0.000 0.000 0.004 0.004 npyio.py:1() - 144 0.004 0.000 0.004 0.000 {built-in method io.open_code} - 614 0.003 0.000 0.004 0.000 _inspect.py:65(getargs) - 1 0.000 0.000 0.004 0.004 linecache.py:1() - 311 0.000 0.000 0.004 0.000 :376(cached) - 1 0.000 0.000 0.004 0.004 version.py:1() - 144 0.003 0.000 0.003 0.000 {method 'read' of '_io.BufferedReader' objects} - 1 0.000 0.000 0.003 0.003 extras.py:1() - 1 0.000 0.000 0.003 0.003 _internal.py:1() - 167 0.000 0.000 0.003 0.000 :484(_get_cached) - 1 0.000 0.000 0.003 0.003 pickle.py:1() - 7 0.000 0.000 0.003 0.000 enum.py:483(_convert_) - 4620 0.003 0.000 0.003 0.000 functions.py:49(__init__) - 1 0.000 0.000 0.003 0.003 _version.py:7() - 1 0.000 0.000 0.003 0.003 _methods.py:1() - 465 0.002 0.000 0.003 0.000 tensor.py:507(log) - 28 0.002 0.000 0.003 0.000 inspect.py:625(cleandoc) - 2 0.000 0.000 0.003 0.001 polynomial.py:1() - 1 0.000 0.000 0.003 0.003 tokenize.py:1() - 118/31 0.001 0.000 0.003 0.000 sre_compile.py:71(_compile) - 1 0.000 0.000 0.003 0.003 datetime.py:1() - 2 0.000 0.000 0.003 0.001 function_base.py:1() - 1740 0.002 0.000 0.003 0.000 :123() - 25098 0.003 0.000 0.003 0.000 {method 'pop' of 'list' objects} - 79 0.000 0.000 0.003 0.000 enum.py:313(__call__) - 5200 0.003 0.000 0.003 0.000 {built-in method builtins.getattr} - 60 0.001 0.000 0.003 0.000 tensor.py:235(__radd__) - 1 0.000 0.000 0.003 0.003 defchararray.py:1() - 197 0.000 0.000 0.003 0.000 :147(__enter__) - 4530 0.003 0.000 0.003 0.000 functions.py:33(__init__) - 1 0.000 0.000 0.003 0.003 socket.py:4() - 544 0.002 0.000 0.003 0.000 :157(_get_module_lock) - 1 0.000 0.000 0.003 0.003 hmac.py:1() - 9 0.000 0.000 0.003 0.000 enum.py:430(_create_) - 1 0.000 0.000 0.003 0.003 getlimits.py:158(_register_known_types) - 14 0.001 0.000 0.003 0.000 enum.py:157(__new__) - 17 0.000 0.000 0.003 0.000 :746(create_module) - 17 0.002 0.000 0.002 0.000 {built-in method _imp.create_builtin} - 234 0.000 0.000 0.002 0.000 :154(_path_isfile) - 1 0.000 0.000 0.002 0.002 _compat.py:5() - 258 0.000 0.000 0.002 0.000 :145(_path_is_mode_type) - 1 0.000 0.000 0.002 0.002 scimath.py:1() - 6 0.000 0.000 0.002 0.000 getlimits.py:34(__init__) - 10 0.000 0.000 0.002 0.000 extras.py:234(__init__) - 10 0.000 0.000 0.002 0.000 extras.py:238(getdoc) - 1 0.000 0.000 0.002 0.002 shutil.py:1() - 544 0.002 0.000 0.002 0.000 :78(acquire) - 1 0.000 0.000 0.002 0.002 ntpath.py:2() - 167 0.000 0.000 0.002 0.000 :1493(_get_spec) - 1 0.000 0.000 0.002 0.002 dis.py:1() - 386 0.000 0.000 0.002 0.000 :1330(_path_importer_cache) - 1 0.000 0.000 0.002 0.002 _pslinux.py:1667(Process) - 810 0.002 0.000 0.002 0.000 {built-in method __new__ of type object at 0x902780} - 1 0.000 0.000 0.002 0.002 parse.py:1() - 288 0.001 0.000 0.002 0.000 :127(_path_split) - 544 0.001 0.000 0.002 0.000 :103(release) - 36 0.000 0.000 0.002 0.000 getlimits.py:111(_float_to_str) - 1 0.000 0.000 0.002 0.002 tensor.py:15(Tensor) - 1 0.000 0.000 0.002 0.002 _ufunc_config.py:1() -10890/10766 0.001 0.000 0.002 0.000 {built-in method builtins.len} - 2316 0.001 0.000 0.002 0.000 {built-in method builtins.setattr} - 2 0.000 0.000 0.002 0.001 __init__.py:339(__init__) - 1 0.000 0.000 0.002 0.002 decoder.py:1() - 1802 0.001 0.000 0.001 0.000 {built-in method math.log} - 144 0.000 0.000 0.001 0.000 :1075(path_stats) - 2 0.001 0.001 0.001 0.001 {built-in method _ctypes.dlopen} - 1 0.000 0.000 0.001 0.001 twodim_base.py:1() - 37 0.000 0.000 0.001 0.000 abc.py:84(__new__) - 50 0.000 0.000 0.001 0.000 core.py:131(get_object_signature) - 3660 0.001 0.000 0.001 0.000 functions.py:101(__init__) - 2334 0.001 0.000 0.001 0.000 {method 'join' of 'str' objects} - 58 0.001 0.000 0.001 0.000 sre_compile.py:276(_optimize_charset) - 167 0.001 0.000 0.001 0.000 :689(spec_from_file_location) - 317 0.000 0.000 0.001 0.000 function_base.py:469(_add_docstring) - 1 0.000 0.000 0.001 0.001 type_check.py:1() - 1 0.000 0.000 0.001 0.001 sgd.py:5(__init__) - 18 0.000 0.000 0.001 0.000 arrayprint.py:1571(_array_str_implementation) - 1 0.000 0.000 0.001 0.001 _pocketfft.py:1() - 18 0.000 0.000 0.001 0.000 arrayprint.py:506(wrapper) - 1 0.000 0.000 0.001 0.001 _type_aliases.py:1() - 3 0.000 0.000 0.001 0.000 warnings.py:130(filterwarnings) - 2 0.000 0.000 0.001 0.001 utils.py:1() - 1 0.000 0.000 0.001 0.001 _add_newdocs_scalars.py:1() - 22 0.000 0.000 0.001 0.000 :1317(_path_hooks) - 18 0.001 0.000 0.001 0.000 arrayprint.py:1564(_guarded_repr_or_str) - 1 0.000 0.000 0.001 0.001 subprocess.py:10() - 22 0.000 0.000 0.001 0.000 :1549(_fill_cache) - 26 0.000 0.000 0.001 0.000 core.py:6832(__init__) - 1867 0.001 0.000 0.001 0.000 :222(_verbose_message) - 1 0.000 0.000 0.001 0.001 signal.py:1() - 7 0.000 0.000 0.001 0.000 enum.py:500() - 26 0.000 0.000 0.001 0.000 core.py:6837(getdoc) - 31 0.000 0.000 0.001 0.000 sre_compile.py:536(_compile_info) - 197 0.000 0.000 0.001 0.000 :151(__exit__) - 156 0.000 0.000 0.001 0.000 module.py:100(__setattr__) - 52 0.000 0.000 0.001 0.000 core.py:894(__init__) - 304 0.000 0.000 0.001 0.000 {built-in method builtins.max} - 2241 0.001 0.000 0.001 0.000 {built-in method builtins.hasattr} - 22 0.001 0.000 0.001 0.000 {built-in method posix.listdir} - 1 0.000 0.000 0.001 0.001 scanner.py:1() - 1 0.000 0.000 0.001 0.001 pickle.py:197() - 1 0.000 0.000 0.001 0.001 nanfunctions.py:1() - 144 0.000 0.000 0.001 0.000 :553(_classify_pyc) - 1 0.000 0.000 0.001 0.001 linear.py:1() - 3600 0.001 0.000 0.001 0.000 functions.py:7(backward) - 568 0.000 0.000 0.001 0.000 :1(__new__) - 30 0.000 0.000 0.001 0.000 loss.py:13(__call__) - 107 0.000 0.000 0.001 0.000 re.py:188(match) - 432 0.001 0.000 0.001 0.000 :79(_unpack_uint32) - 1 0.000 0.000 0.001 0.001 opcode.py:2() - 30 0.000 0.000 0.001 0.000 loss.py:21(forward) - 192 0.000 0.000 0.001 0.000 enum.py:75(__setitem__) - 144 0.000 0.000 0.001 0.000 :586(_validate_timestamp_pyc) - 3770 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects} - 618 0.000 0.000 0.001 0.000 _inspect.py:13(ismethod) - 1950 0.001 0.000 0.001 0.000 functions.py:11(__init__) - 14 0.000 0.000 0.001 0.000 re.py:223(split) - 46 0.000 0.000 0.001 0.000 _inspect.py:140(formatargspec) - 317 0.000 0.000 0.001 0.000 function_base.py:451(_needs_add_docstring) - 405 0.000 0.000 0.001 0.000 abc.py:96(__instancecheck__) - 1 0.000 0.000 0.001 0.001 optimizer.py:9(__init__) - 13/5 0.000 0.000 0.001 0.000 module.py:35(parameters) - 757 0.000 0.000 0.001 0.000 sre_parse.py:164(__getitem__) - 4 0.000 0.000 0.001 0.000 __init__.py:1595(cpu_times) - 1 0.000 0.000 0.001 0.001 bz2.py:1() - 483 0.000 0.000 0.001 0.000 sre_parse.py:254(get) - 23 0.000 0.000 0.001 0.000 overrides.py:221(decorator) - 1255 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects} - 1 0.000 0.000 0.001 0.001 arrayprint.py:1() - 516 0.000 0.000 0.001 0.000 :389(parent) - 1 0.000 0.000 0.001 0.001 ast.py:1() - 24 0.000 0.000 0.001 0.000 _add_newdocs_scalars.py:71(add_newdoc_for_scalar_type) - 22 0.000 0.000 0.001 0.000 :1590(path_hook_for_FileFinder) - 14 0.000 0.000 0.001 0.000 core.py:8222(__init__) - 196 0.000 0.000 0.001 0.000 :176(cb) - 1 0.000 0.000 0.001 0.001 random.py:1() - 1 0.000 0.000 0.001 0.001 ctypeslib.py:1() - 146/59 0.000 0.000 0.001 0.000 sre_parse.py:174(getwidth) - 1 0.000 0.000 0.001 0.001 __init__.py:1920(virtual_memory) - 1 0.000 0.000 0.001 0.001 module.py:1() - 1 0.000 0.000 0.001 0.001 _pslinux.py:406(virtual_memory) - 14 0.000 0.000 0.001 0.000 core.py:8227(getdoc) - 618 0.000 0.000 0.001 0.000 _inspect.py:26(isfunction) - 1 0.000 0.000 0.001 0.001 _psposix.py:5() - 1 0.000 0.000 0.001 0.001 sgd.py:9() - 4 0.001 0.000 0.001 0.000 tensor.py:90(zeros_like) - 3 0.000 0.000 0.001 0.000 _pslinux.py:584(cpu_times) - 405 0.000 0.000 0.001 0.000 {built-in method _abc._abc_instancecheck} - 548 0.000 0.000 0.001 0.000 :867(__exit__) - 196 0.000 0.000 0.001 0.000 :58(__init__) - 614 0.000 0.000 0.001 0.000 _inspect.py:41(iscode) - 1 0.000 0.000 0.001 0.001 encoder.py:1() - 30 0.000 0.000 0.001 0.000 functions.py:80(backward) - 403 0.000 0.000 0.000 0.000 {built-in method builtins.globals} - 621 0.000 0.000 0.000 0.000 sre_parse.py:233(__next) - 383 0.000 0.000 0.000 0.000 functools.py:64(wraps) - 1 0.000 0.000 0.000 0.000 contextvars.py:1() - 1 0.000 0.000 0.000 0.000 threading.py:1() - 1 0.000 0.000 0.000 0.000 arraysetops.py:1() - 984 0.000 0.000 0.000 0.000 {built-in method builtins.min} - 548 0.000 0.000 0.000 0.000 :863(__enter__) - 314 0.000 0.000 0.000 0.000 {method 'replace' of 'code' objects} - 576 0.000 0.000 0.000 0.000 :129() - 1 0.000 0.000 0.000 0.000 ctypeslib.py:362(_get_scalar_type_map) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:373() - 1 0.000 0.000 0.000 0.000 hashlib.py:5() - 285 0.000 0.000 0.000 0.000 {method 'format' of 'str' objects} - 129/29 0.000 0.000 0.000 0.000 abc.py:100(__subclasscheck__) - 14 0.000 0.000 0.000 0.000 enum.py:200() - 2 0.000 0.000 0.000 0.000 {built-in method time.time} - 26 0.000 0.000 0.000 0.000 core.py:921(__init__) - 194 0.000 0.000 0.000 0.000 :725(find_spec) - 129/29 0.000 0.000 0.000 0.000 {built-in method _abc._abc_subclasscheck} - 50 0.000 0.000 0.000 0.000 _internal.py:869(_ufunc_doc_signature_formatter) - 18 0.000 0.000 0.000 0.000 core.py:997(__init__) - 1 0.000 0.000 0.000 0.000 numbers.py:4() - 2162 0.000 0.000 0.000 0.000 {method 'startswith' of 'str' objects} - 1 0.000 0.000 0.000 0.000 _exceptions.py:1() - 4 0.000 0.000 0.000 0.000 textwrap.py:414(dedent) - 14 0.000 0.000 0.000 0.000 hashlib.py:123(__get_openssl_constructor) - 1 0.000 0.000 0.000 0.000 lzma.py:1() - 1 0.000 0.000 0.000 0.000 parameter.py:1() - 1288 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock} - 1288 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock} - 22 0.000 0.000 0.000 0.000 :1459(__init__) - 1 0.000 0.000 0.000 0.000 contextlib.py:72(inner) - 1 0.000 0.000 0.000 0.000 histograms.py:1() - 1 0.000 0.000 0.000 0.000 selectors.py:1() - 5 0.000 0.000 0.000 0.000 inspect.py:325(getmembers) - 37 0.000 0.000 0.000 0.000 {built-in method _abc._abc_init} - 1107 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident} - 12 0.000 0.000 0.000 0.000 datetime.py:488(__new__) - 6 0.000 0.000 0.000 0.000 module.py:13(__init__) - 8 0.000 0.000 0.000 0.000 hashlib.py:79(__get_builtin_constructor) - 238 0.000 0.000 0.000 0.000 enum.py:417(__setattr__) - 22 0.000 0.000 0.000 0.000 :63(__init__) - 1 0.000 0.000 0.000 0.000 {function SeedSequence.generate_state at 0x7f0b17a61c10} - 1 0.000 0.000 0.000 0.000 ufunclike.py:1() - 177 0.000 0.000 0.000 0.000 :800(find_spec) - 341 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects} - 1 0.000 0.000 0.000 0.000 glob.py:1() - 1 0.000 0.000 0.000 0.000 sgd.py:1() - 36 0.000 0.000 0.000 0.000 getlimits.py:91(_float_to_float) - 144 0.000 0.000 0.000 0.000 :516(_check_name_wrapper) - 118 0.000 0.000 0.000 0.000 {built-in method numpy.array} - 196 0.000 0.000 0.000 0.000 :342(__init__) - 6 0.000 0.000 0.000 0.000 _common.py:764(open_binary) - 31 0.000 0.000 0.000 0.000 enum.py:938(__and__) - 422 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects} - 314 0.000 0.000 0.000 0.000 overrides.py:128(array_function_dispatch) - 6 0.000 0.000 0.000 0.000 numeric.py:2536(extend_all) - 189 0.000 0.000 0.000 0.000 :175(_path_isabs) - 4 0.000 0.000 0.000 0.000 re.py:203(sub) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:94(_add_aliases) - 1 0.000 0.000 0.000 0.000 _iotools.py:1() - 1 0.000 0.000 0.000 0.000 stride_tricks.py:1() - 342 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.add_docstring} - 28 0.000 0.000 0.000 0.000 sre_parse.py:96(closegroup) - 1 0.000 0.000 0.000 0.000 _globals.py:1() - 6 0.000 0.000 0.000 0.000 {built-in method io.open} - 1 0.000 0.000 0.000 0.000 arraypad.py:1() - 14 0.000 0.000 0.000 0.000 {method 'split' of 're.Pattern' objects} - 928 0.000 0.000 0.000 0.000 {method 'lstrip' of 'str' objects} - 146 0.000 0.000 0.000 0.000 :35(_new_module) - 465 0.000 0.000 0.000 0.000 functions.py:67(__init__) - 5 0.000 0.000 0.000 0.000 _common.py:423(wrapper) - 14 0.000 0.000 0.000 0.000 enum.py:143(__prepare__) - 1 0.000 0.000 0.000 0.000 __init__.py:1733(calculate) - 58 0.000 0.000 0.000 0.000 {built-in method posix.getcwd} - 291 0.000 0.000 0.000 0.000 sre_parse.py:172(append) - 1 0.000 0.000 0.000 0.000 base64.py:3() - 1 0.000 0.000 0.000 0.000 core.py:6527(__new__) - 3 0.000 0.000 0.000 0.000 tokenize.py:83(_all_string_prefixes) - 1 0.000 0.000 0.000 0.000 records.py:1() - 1 0.000 0.000 0.000 0.000 _compat_pickle.py:9() - 103 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects} - 16 0.000 0.000 0.000 0.000 sre_compile.py:411(_mk_bitmap) - 1 0.000 0.000 0.000 0.000 mixins.py:1() - 30 0.000 0.000 0.000 0.000 tensor.py:525(sum) - 1 0.000 0.000 0.000 0.000 _string_helpers.py:1() - 1 0.000 0.000 0.000 0.000 functions.py:1() - 24 0.000 0.000 0.000 0.000 :159(_path_isdir) - 297 0.000 0.000 0.000 0.000 sre_parse.py:249(match) - 1 0.000 0.000 0.000 0.000 laguerre.py:1() - 16 0.000 0.000 0.000 0.000 _type_aliases.py:58(bitname) - 581 0.000 0.000 0.000 0.000 {method 'get' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 _polybase.py:1() - 51 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects} - 1 0.000 0.000 0.000 0.000 getlimits.py:1() - 34 0.000 0.000 0.000 0.000 _pslinux.py:1646(wrap_exceptions) - 1 0.000 0.000 0.000 0.000 _pslinux.py:259(set_scputimes_ntuple) - 30 0.000 0.000 0.000 0.000 optimizer.py:20(zero_grad) - 5 0.000 0.000 0.000 0.000 {method 'readline' of '_io.BufferedReader' objects} - 3 0.000 0.000 0.000 0.000 ufunclike.py:58(_fix_and_maybe_deprecate_out_named_y) - 53 0.000 0.000 0.000 0.000 sre_compile.py:423(_simple) - 3 0.000 0.000 0.000 0.000 ufunclike.py:41(_fix_out_named_y) - 1 0.000 0.000 0.000 0.000 chebyshev.py:1() - 10 0.000 0.000 0.000 0.000 {built-in method builtins.dir} - 376 0.000 0.000 0.000 0.000 socket.py:76() - 377 0.000 0.000 0.000 0.000 socket.py:81() - 1 0.000 0.000 0.000 0.000 _string_helpers.py:9() - 378 0.000 0.000 0.000 0.000 socket.py:86() - 1 0.000 0.000 0.000 0.000 mixins.py:59(NDArrayOperatorsMixin) - 379 0.000 0.000 0.000 0.000 socket.py:91() - 396 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock} - 1 0.000 0.000 0.000 0.000 hermite.py:1() - 178 0.000 0.000 0.000 0.000 sre_parse.py:286(tell) - 1 0.000 0.000 0.000 0.000 legendre.py:1() - 58 0.000 0.000 0.000 0.000 sre_compile.py:249(_compile_charset) - 240 0.000 0.000 0.000 0.000 sre_parse.py:160(__len__) - 17 0.000 0.000 0.000 0.000 :406(spec_from_loader) - 11 0.000 0.000 0.000 0.000 abc.py:89(register) - 1 0.000 0.000 0.000 0.000 hermite_e.py:1() - 197 0.000 0.000 0.000 0.000 :143(__init__) - 37 0.000 0.000 0.000 0.000 enum.py:532(_get_mixins_) - 1 0.000 0.000 0.000 0.000 opcode.py:37() - 1 0.000 0.000 0.000 0.000 pickle.py:407(_Pickler) - 70 0.000 0.000 0.000 0.000 enum.py:631(__new__) - 112 0.000 0.000 0.000 0.000 {built-in method builtins.repr} - 6 0.000 0.000 0.000 0.000 core.py:1146(__init__) - 1 0.000 0.000 0.000 0.000 einsumfunc.py:1() - 1603 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects} - 40/28 0.000 0.000 0.000 0.000 sre_compile.py:461(_get_literal_prefix) - 14 0.000 0.000 0.000 0.000 enum.py:579(_find_new_) - 433 0.000 0.000 0.000 0.000 {built-in method from_bytes} - 11 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register} - 289 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects} - 73 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin} - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:100(dtype_from_ctypes_type) - 1 0.000 0.000 0.000 0.000 core.py:2697(MaskedArray) - 1 0.000 0.000 0.000 0.000 token.py:1() - 1 0.000 0.000 0.000 0.000 __init__.py:1671(_cpu_times_deltas) - 31 0.000 0.000 0.000 0.000 sre_parse.py:224(__init__) - 42 0.000 0.000 0.000 0.000 getlimits.py:101(_float_conv) - 194 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects} - 36 0.000 0.000 0.000 0.000 getlimits.py:24(_fr1) - 1 0.000 0.000 0.000 0.000 umath.py:1() - 192 0.000 0.000 0.000 0.000 enum.py:22(_is_dunder) - 1 0.000 0.000 0.000 0.000 ast.py:405(NodeTransformer) - 1 0.000 0.000 0.000 0.000 _datasource.py:1() - 152 0.000 0.000 0.000 0.000 enum.py:12(_is_descriptor) - 28 0.000 0.000 0.000 0.000 {method 'expandtabs' of 'str' objects} - 466 0.000 0.000 0.000 0.000 {built-in method posix.fspath} - 4/3 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.ndarray' objects} - 192 0.000 0.000 0.000 0.000 enum.py:33(_is_sunder) - 1 0.000 0.000 0.000 0.000 core.py:2808(__new__) - 8 0.000 0.000 0.000 0.000 {built-in method builtins.sorted} - 14 0.000 0.000 0.000 0.000 core.py:8239(_replace_return_type) - 14 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects} - 61 0.000 0.000 0.000 0.000 _inspect.py:144() - 16 0.000 0.000 0.000 0.000 sre_compile.py:413() - 31 0.000 0.000 0.000 0.000 sre_parse.py:432(_uniq) - 16 0.000 0.000 0.000 0.000 _type_aliases.py:44(_bits_of) - 257 0.000 0.000 0.000 0.000 hmac.py:18() - 1 0.000 0.000 0.000 0.000 helper.py:1() - 1 0.000 0.000 0.000 0.000 struct.py:3() - 13 0.000 0.000 0.000 0.000 mixins.py:44(_numeric_methods) - 177 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen} - 2 0.000 0.000 0.000 0.000 core.py:2966(__array_finalize__) - 120 0.000 0.000 0.000 0.000 tensor.py:167(zero_grad) - 93 0.000 0.000 0.000 0.000 _inspect.py:131(strseq) - 144 0.000 0.000 0.000 0.000 :1004(__init__) - 1 0.000 0.000 0.000 0.000 token.py:74() - 109 0.000 0.000 0.000 0.000 {method 'match' of 're.Pattern' objects} - 317 0.000 0.000 0.000 0.000 __init__.py:385() - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:33(seterr) - 17 0.000 0.000 0.000 0.000 :754(exec_module) - 4 0.000 0.000 0.000 0.000 enum.py:932(__or__) - 36 0.000 0.000 0.000 0.000 getlimits.py:16(_fr0) - 1 0.000 0.000 0.000 0.000 defchararray.py:1908(chararray) - 52 0.000 0.000 0.000 0.000 _add_newdocs.py:6753(refer_to_array_attribute) - 72 0.000 0.000 0.000 0.000 {method 'copy' of 'numpy.ndarray' objects} - 47 0.000 0.000 0.000 0.000 re.py:270(escape) - 1 0.000 0.000 0.000 0.000 _pslinux.py:600(per_cpu_times) - 257 0.000 0.000 0.000 0.000 hmac.py:17() - 1 0.000 0.000 0.000 0.000 threading.py:1262(__init__) - 1 0.000 0.000 0.000 0.000 inspect.py:2428(_ParameterKind) - 1 0.000 0.000 0.000 0.000 __init__.py:298(Process) - 331 0.000 0.000 0.000 0.000 :68(_relax_case) - 1 0.000 0.000 0.000 0.000 memmap.py:1() - 1 0.000 0.000 0.000 0.000 __init__.py:335(_sanity_check) - 16 0.000 0.000 0.000 0.000 __init__.py:383(__getattr__) - 1 0.000 0.000 0.000 0.000 _asarray.py:1() - 121 0.000 0.000 0.000 0.000 sre_parse.py:111(__init__) - 218 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects} - 47 0.000 0.000 0.000 0.000 sre_parse.py:355(_escape) - 37 0.000 0.000 0.000 0.000 enum.py:543(_find_data_type) - 172 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects} - 28 0.000 0.000 0.000 0.000 sre_parse.py:84(opengroup) - 317 0.000 0.000 0.000 0.000 {built-in method sys.intern} - 1 0.000 0.000 0.000 0.000 _endian.py:1() - 63 0.000 0.000 0.000 0.000 {method 'split' of 'bytes' objects} - 144 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename} - 1 0.000 0.000 0.000 0.000 polyutils.py:1() - 1 0.000 0.000 0.000 0.000 datetime.py:2181(timezone) - 1 0.000 0.000 0.000 0.000 core.py:3115(view) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:430(__enter__) - 1 0.000 0.000 0.000 0.000 _polybase.py:18(ABCPolyBase) - 1 0.000 0.000 0.000 0.000 numerictypes.py:588(_register_types) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:211(_set_array_types) - 41 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:83() - 1 0.000 0.000 0.000 0.000 bisect.py:1() - 2 0.000 0.000 0.000 0.000 enum.py:889(_missing_) - 3 0.000 0.000 0.000 0.000 datetime.py:1567(__new__) - 8 0.000 0.000 0.000 0.000 {method 'sub' of 're.Pattern' objects} - 118 0.000 0.000 0.000 0.000 sre_parse.py:81(groups) - 1 0.000 0.000 0.000 0.000 os.py:42(_get_exports_list) - 1 0.000 0.000 0.000 0.000 selectors.py:80(BaseSelector) - 1 0.000 0.000 0.000 0.000 activation.py:1() - 2 0.000 0.000 0.000 0.000 enum.py:899(_create_pseudo_member_) - 17 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin} - 83 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects} - 120 0.000 0.000 0.000 0.000 opcode.py:39(def_op) - 288 0.000 0.000 0.000 0.000 {built-in method builtins.chr} - 2 0.000 0.000 0.000 0.000 core.py:6721(__init__) - 8 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects} - 1 0.000 0.000 0.000 0.000 pickle.py:1136(_Unpickler) - 186 0.000 0.000 0.000 0.000 :397(has_location) - 1 0.000 0.000 0.000 0.000 core.py:6545(__array_finalize__) - 82 0.000 0.000 0.000 0.000 overrides.py:121(decorator) - 1 0.000 0.000 0.000 0.000 traceback.py:1() - 1 0.000 0.000 0.000 0.000 _compression.py:1() - 31 0.000 0.000 0.000 0.000 {built-in method _sre.compile} - 98 0.000 0.000 0.000 0.000 types.py:171(__get__) - 1 0.000 0.000 0.000 0.000 _psposix.py:66() - 1 0.000 0.000 0.000 0.000 numerictypes.py:440(_construct_lookups) - 24 0.000 0.000 0.000 0.000 numerictypes.py:513(_scalar_type_key) - 4 0.000 0.000 0.000 0.000 {built-in method builtins.print} - 16 0.000 0.000 0.000 0.000 __init__.py:390(__getitem__) - 36 0.000 0.000 0.000 0.000 _string_helpers.py:16(english_lower) - 2 0.000 0.000 0.000 0.000 enum.py:978(_decompose) - 82 0.000 0.000 0.000 0.000 overrides.py:110(set_module) - 252 0.000 0.000 0.000 0.000 {built-in method builtins.ord} - 2 0.000 0.000 0.000 0.000 contextlib.py:71(__call__) - 62 0.000 0.000 0.000 0.000 sre_compile.py:595(isstring) - 2 0.000 0.000 0.000 0.000 datetime.py:661(__neg__) - 317 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects} - 14 0.000 0.000 0.000 0.000 {built-in method builtins.round} - 192 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass} - 76 0.000 0.000 0.000 0.000 signal.py:10() - 176 0.000 0.000 0.000 0.000 :1465() - 1 0.000 0.000 0.000 0.000 linalg.py:74(_determine_error_states) - 16 0.000 0.000 0.000 0.000 {built-in method builtins.next} - 78 0.000 0.000 0.000 0.000 _internal.py:880() - 321 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects} - 4 0.000 0.000 0.000 0.000 sre_parse.py:267(getuntil) - 1 0.000 0.000 0.000 0.000 format.py:1() - 18 0.000 0.000 0.000 0.000 sre_compile.py:492(_get_charset_prefix) - 3 0.000 0.000 0.000 0.000 contextlib.py:211(contextmanager) - 2 0.000 0.000 0.000 0.000 functools.py:525(decorating_function) - 30 0.000 0.000 0.000 0.000 _type_aliases.py:203(_add_array_type) - 24 0.000 0.000 0.000 0.000 sre_parse.py:295(_class_escape) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:435(__exit__) - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:18(numeric_type_aliases) - 5 0.000 0.000 0.000 0.000 datetime.py:411(_check_date_fields) - 31 0.000 0.000 0.000 0.000 sre_parse.py:921(fix_flags) - 32 0.000 0.000 0.000 0.000 _type_aliases.py:46() - 1 0.000 0.000 0.000 0.000 loss.py:1() - 1 0.000 0.000 0.000 0.000 optimizer.py:1() - 2 0.000 0.000 0.000 0.000 posixpath.py:372(abspath) - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:71(_from_ctypes_scalar) - 1 0.000 0.000 0.000 0.000 __init__.py:261(_reset_cache) - 1 0.000 0.000 0.000 0.000 fnmatch.py:1() - 238 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects} - 3 0.000 0.000 0.000 0.000 __init__.py:498(PYFUNCTYPE) - 1 0.000 0.000 0.000 0.000 tensor.py:5(CTensor) - 1 0.000 0.000 0.000 0.000 _machar.py:1() - 7 0.000 0.000 0.000 0.000 _common.py:444(memoize_when_activated) - 144 0.000 0.000 0.000 0.000 :1029(get_filename) - 7 0.000 0.000 0.000 0.000 getlimits.py:668(__init__) - 1 0.000 0.000 0.000 0.000 arrayterator.py:1() - 14 0.000 0.000 0.000 0.000 enum.py:522(_check_for_existing_members) - 2 0.000 0.000 0.000 0.000 core.py:2940(_update_from) - 2 0.000 0.000 0.000 0.000 __init__.py:75(CFUNCTYPE) - 1 0.000 0.000 0.000 0.000 pathlib.py:120(_WindowsFlavour) - 24 0.000 0.000 0.000 0.000 tokenize.py:94() - 31 0.000 0.000 0.000 0.000 {built-in method fromkeys} - 9 0.000 0.000 0.000 0.000 overrides.py:23(set_array_function_like_doc) - 4 0.000 0.000 0.000 0.000 _collections_abc.py:657(get) - 4 0.000 0.000 0.000 0.000 genericpath.py:16(exists) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:74(_add_types) - 63 0.000 0.000 0.000 0.000 abc.py:7(abstractmethod) - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:19(type_aliases_gen) - 6 0.000 0.000 0.000 0.000 os.py:670(__getitem__) - 3 0.000 0.000 0.000 0.000 _pslinux.py:596() - 14 0.000 0.000 0.000 0.000 __init__.py:141(_check_size) - 17 0.000 0.000 0.000 0.000 :232(_requires_builtin_wrapper) - 4 0.000 0.000 0.000 0.000 _common.py:400(memoize) - 2 0.000 0.000 0.000 0.000 __init__.py:1636(_cpu_tot_time) - 31 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__) - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:132(geterr) - 4 0.000 0.000 0.000 0.000 {method 'findall' of 're.Pattern' objects} - 2 0.000 0.000 0.000 0.000 tensor.py:569(T) - 20 0.000 0.000 0.000 0.000 mixins.py:16(_binary_method) - 5 0.000 0.000 0.000 0.000 datetime.py:424(_check_time_fields) - 207 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects} - 55 0.000 0.000 0.000 0.000 sre_parse.py:168(__setitem__) - 144 0.000 0.000 0.000 0.000 :839(create_module) - 85 0.000 0.000 0.000 0.000 _compat_pickle.py:167() - 4 0.000 0.000 0.000 0.000 warnings.py:181(_add_filter) - 2 0.000 0.000 0.000 0.000 enum.py:997() - 2 0.000 0.000 0.000 0.000 datetime.py:1236(__new__) - 1 0.000 0.000 0.000 0.000 _version.py:1() - 1 0.000 0.000 0.000 0.000 pathlib.py:629(PurePath) - 14 0.000 0.000 0.000 0.000 enum.py:370(__getattr__) - 2 0.000 0.000 0.000 0.000 datetime.py:819(__new__) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:123(_add_integer_aliases) - 1 0.000 0.000 0.000 0.000 threading.py:761(__init__) - 1 0.000 0.000 0.000 0.000 _globals.py:93(_CopyMode) - 1 0.000 0.000 0.000 0.000 __future__.py:1() - 35 0.000 0.000 0.000 0.000 datetime.py:379(_check_int_field) - 2 0.000 0.000 0.000 0.000 arrayprint.py:503(decorating_function) - 2 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function} - 1 0.000 0.000 0.000 0.000 _pytesttester.py:1() - 19 0.000 0.000 0.000 0.000 tokenize.py:58(group) - 1 0.000 0.000 0.000 0.000 numbers.py:32(Complex) - 2 0.000 0.000 0.000 0.000 random.py:94(__init__) - 10 0.000 0.000 0.000 0.000 sre_compile.py:432(_generate_overlap_table) - 1 0.000 0.000 0.000 0.000 _common.py:388(usage_percent) - 1 0.000 0.000 0.000 0.000 datetime.py:1559(datetime) - 1 0.000 0.000 0.000 0.000 polynomial.py:1472(Polynomial) - 13 0.000 0.000 0.000 0.000 mixins.py:36(_inplace_binary_method) - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(concatenate) - 6 0.000 0.000 0.000 0.000 __init__.py:266(_assert_pid_not_reused) - 1 0.000 0.000 0.000 0.000 numbers.py:294(Integral) - 1 0.000 0.000 0.000 0.000 _dtype.py:1() - 14 0.000 0.000 0.000 0.000 enum.py:175() - 1 0.000 0.000 0.000 0.000 __init__.py:187() - 96 0.000 0.000 0.000 0.000 {built-in method builtins.abs} - 1 0.000 0.000 0.000 0.000 numeric.py:150(ones) - 2 0.000 0.000 0.000 0.000 os.py:684(__delitem__) - 12 0.000 0.000 0.000 0.000 opcode.py:43(name_op) - 12 0.000 0.000 0.000 0.000 os.py:748(encode) - 1 0.000 0.000 0.000 0.000 _iotools.py:450(StringConverter) - 46 0.000 0.000 0.000 0.000 sre_compile.py:65(_combine_flags) - 1 0.000 0.000 0.000 0.000 random.py:123(seed) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:151(_set_up_aliases) - 1 0.000 0.000 0.000 0.000 __init__.py:1276() - 14 0.000 0.000 0.000 0.000 mixins.py:26(_reflected_binary_method) - 81 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased} - 58 0.000 0.000 0.000 0.000 sre_compile.py:453(_get_iscased) - 14 0.000 0.000 0.000 0.000 enum.py:68(__init__) - 1 0.000 0.000 0.000 0.000 pathlib.py:1025(Path) - 48 0.000 0.000 0.000 0.000 {method 'encode' of 'str' objects} - 1 0.000 0.000 0.000 0.000 _internal.py:239(_missing_ctypes) - 1 0.000 0.000 0.000 0.000 os.py:46() - 1 0.000 0.000 0.000 0.000 _pslinux.py:118(IOPriority) - 252 0.000 0.000 0.000 0.000 inspect.py:366() - 1 0.000 0.000 0.000 0.000 ufunclike.py:16(_deprecate_out_named_y) - 1 0.000 0.000 0.000 0.000 module.py:86(__repr__) - 1 0.000 0.000 0.000 0.000 polynomial.py:1076(poly1d) - 2 0.000 0.000 0.000 0.000 {built-in method posix.uname} - 1 0.000 0.000 0.000 0.000 defmatrix.py:72(matrix) - 1 0.000 0.000 0.000 0.000 abc.py:1() - 30 0.000 0.000 0.000 0.000 functions.py:77(__init__) - 13 0.000 0.000 0.000 0.000 _internal.py:917(npy_ctypes_check) - 1 0.000 0.000 0.000 0.000 numbers.py:147(Real) - 7 0.000 0.000 0.000 0.000 core.py:2544(_arraymethod) - 43 0.000 0.000 0.000 0.000 _compat_pickle.py:165() - 1 0.000 0.000 0.000 0.000 sre_compile.py:416(_bytes_to_codes) - 1 0.000 0.000 0.000 0.000 _version.py:20(get_versions) - 2 0.000 0.000 0.000 0.000 activation.py:16(__init__) - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:54(_get_platform_and_machine) - 2 0.000 0.000 0.000 0.000 posixpath.py:334(normpath) - 1 0.000 0.000 0.000 0.000 datetime.py:789(date) - 14 0.000 0.000 0.000 0.000 {built-in method builtins.any} - 8 0.000 0.000 0.000 0.000 _pslinux.py:614() - 1 0.000 0.000 0.000 0.000 threading.py:519(set) - 1 0.000 0.000 0.000 0.000 __config__.py:3() - 9 0.000 0.000 0.000 0.000 {built-in method numpy.seterrobj} - 60 0.000 0.000 0.000 0.000 {built-in method builtins.divmod} - 1 0.000 0.000 0.000 0.000 {method 'dot' of 'numpy.ndarray' objects} - 1 0.000 0.000 0.000 0.000 _common.py:140(NicDuplex) - 1 0.000 0.000 0.000 0.000 __init__.py:299(loads) - 1 0.000 0.000 0.000 0.000 hermite.py:1658(Hermite) - 1 0.000 0.000 0.000 0.000 threading.py:750(Thread) - 1 0.000 0.000 0.000 0.000 _dtype_ctypes.py:1() - 23 0.000 0.000 0.000 0.000 :1153(__init__) - 2 0.000 0.000 0.000 0.000 activation.py:8(__init__) - 1 0.000 0.000 0.000 0.000 warnings.py:165(simplefilter) - 16 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects} - 68 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_tolower} - 1 0.000 0.000 0.000 0.000 pathlib.py:399(_NormalAccessor) - 1 0.000 0.000 0.000 0.000 {function Random.seed at 0x7f0b2c6f9ee0} - 1 0.000 0.000 0.000 0.000 chebyshev.py:1995(Chebyshev) - 1 0.000 0.000 0.000 0.000 datetime.py:1211(time) - 101 0.000 0.000 0.000 0.000 enum.py:506() - 1 0.000 0.000 0.000 0.000 threading.py:903(_set_tstate_lock) - 1 0.000 0.000 0.000 0.000 __init__.py:216() - 4 0.000 0.000 0.000 0.000 posixpath.py:71(join) - 1 0.000 0.000 0.000 0.000 datetime.py:469(timedelta) - 1 0.000 0.000 0.000 0.000 decoder.py:332(decode) - 1 0.000 0.000 0.000 0.000 __init__.py:1655(_cpu_busy_time) - 1 0.000 0.000 0.000 0.000 laguerre.py:1606(Laguerre) - 23 0.000 0.000 0.000 0.000 overrides.py:217(array_function_from_dispatcher) - 1 0.000 0.000 0.000 0.000 legendre.py:1619(Legendre) - 6 0.000 0.000 0.000 0.000 _exceptions.py:17(_display_as_base) - 53 0.000 0.000 0.000 0.000 {built-in method sys._getframe} - 1 0.000 0.000 0.000 0.000 hermite_e.py:1650(HermiteE) - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(copyto) - 39 0.000 0.000 0.000 0.000 enum.py:223() - 1 0.000 0.000 0.000 0.000 subprocess.py:638(_use_posix_spawn) - 2 0.000 0.000 0.000 0.000 os.py:678(__setitem__) - 1 0.000 0.000 0.000 0.000 _common.py:152(BatteryTime) - 1 0.000 0.000 0.000 0.000 threading.py:505(__init__) - 70 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects} - 1 0.000 0.000 0.000 0.000 random.py:721(getrandbits) - 48 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 inspect.py:2457(Parameter) - 5 0.000 0.000 0.000 0.000 _common.py:836(get_procfs_path) - 2 0.000 0.000 0.000 0.000 _collections_abc.py:664(__contains__) - 1 0.000 0.000 0.000 0.000 core.py:6517(MaskedConstant) - 14 0.000 0.000 0.000 0.000 {method 'mro' of 'type' objects} - 2 0.000 0.000 0.000 0.000 :1238(__iter__) - 2 0.000 0.000 0.000 0.000 :1205(__init__) - 6 0.000 0.000 0.000 0.000 opcode.py:47(jrel_op) - 18 0.000 0.000 0.000 0.000 {built-in method numpy.geterrobj} - 4 0.000 0.000 0.000 0.000 :1221(_get_parent_path) - 1 0.000 0.000 0.000 0.000 inspect.py:2742(Signature) - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:79() - 1 0.000 0.000 0.000 0.000 loss.py:18(__init__) - 1 0.000 0.000 0.000 0.000 _inspect.py:1() - 20 0.000 0.000 0.000 0.000 _inspect.py:142() - 18 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize} - 36 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects} - 2 0.000 0.000 0.000 0.000 {built-in method posix.unsetenv} - 1 0.000 0.000 0.000 0.000 _type_aliases.py:41() - 1 0.000 0.000 0.000 0.000 threading.py:222(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:364(notify_all) - 21 0.000 0.000 0.000 0.000 _inspect.py:143() - 1 0.000 0.000 0.000 0.000 socket.py:213(socket) - 4 0.000 0.000 0.000 0.000 sre_parse.py:258(getwhile) - 9 0.000 0.000 0.000 0.000 _pytesttester.py:76(__init__) - 1 0.000 0.000 0.000 0.000 random.py:78(Random) - 43 0.000 0.000 0.000 0.000 enum.py:753(value) - 1 0.000 0.000 0.000 0.000 os.py:1073(__subclasshook__) - 1 0.000 0.000 0.000 0.000 inspect.py:2612(BoundArguments) - 4 0.000 0.000 0.000 0.000 getlimits.py:692(max) - 1 0.000 0.000 0.000 0.000 threading.py:900(_set_native_id) - 2 0.000 0.000 0.000 0.000 functools.py:487(lru_cache) - 2 0.000 0.000 0.000 0.000 copyreg.py:12(pickle) - 1 0.000 0.000 0.000 0.000 loss.py:7(__init__) - 13 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects} - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:441(_setdef) - 1 0.000 0.000 0.000 0.000 getlimits.py:364(finfo) - 2 0.000 0.000 0.000 0.000 _collections_abc.py:72(_check_methods) - 1 0.000 0.000 0.000 0.000 core.py:6322(mvoid) - 78 0.000 0.000 0.000 0.000 signal.py:22() - 1 0.000 0.000 0.000 0.000 npyio.py:106(NpzFile) - 16 0.000 0.000 0.000 0.000 _dtype.py:24(_kind_name) - 5 0.000 0.000 0.000 0.000 opcode.py:51(jabs_op) - 1 0.000 0.000 0.000 0.000 {built-in method math.exp} - 1 0.000 0.000 0.000 0.000 pathlib.py:136() - 55 0.000 0.000 0.000 0.000 enum.py:748(name) - 33 0.000 0.000 0.000 0.000 enum.py:393() - 1 0.000 0.000 0.000 0.000 _collections_abc.py:349(__subclasshook__) - 77 0.000 0.000 0.000 0.000 signal.py:17() - 1 0.000 0.000 0.000 0.000 _iotools.py:229(NameValidator) - 1 0.000 0.000 0.000 0.000 core.py:1329(make_mask_descr) - 1 0.000 0.000 0.000 0.000 _datasource.py:196(DataSource) - 25 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects} - 1 0.000 0.000 0.000 0.000 subprocess.py:688(Popen) - 3 0.000 0.000 0.000 0.000 index_tricks.py:323(__init__) - 18 0.000 0.000 0.000 0.000 {method 'discard' of 'set' objects} - 1 0.000 0.000 0.000 0.000 os.py:766(getenv) - 5 0.000 0.000 0.000 0.000 enum.py:1015(_power_of_two) - 1 0.000 0.000 0.000 0.000 pathlib.py:57(_Flavour) - 8 0.000 0.000 0.000 0.000 getlimits.py:153(_register_type) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha1} - 2 0.000 0.000 0.000 0.000 core.py:6620(__setattr__) - 2 0.000 0.000 0.000 0.000 :1225(_recalculate) - 1 0.000 0.000 0.000 0.000 threading.py:341(notify) - 1 0.000 0.000 0.000 0.000 {method 'tolist' of 'memoryview' objects} - 1 0.000 0.000 0.000 0.000 _internal.py:613(_Stream) - 2 0.000 0.000 0.000 0.000 {built-in method builtins.sum} - 1 0.000 0.000 0.000 0.000 _internal.py:248(_ctypes) - 1 0.000 0.000 0.000 0.000 extras.py:1567(__init__) - 1 0.000 0.000 0.000 0.000 lzma.py:38(LZMAFile) - 1 0.000 0.000 0.000 0.000 core.py:1315(_replace_dtype_fields) - 1 0.000 0.000 0.000 0.000 bz2.py:30(BZ2File) - 5 0.000 0.000 0.000 0.000 _ufunc_config.py:426(__init__) - 1 0.000 0.000 0.000 0.000 random.py:709(SystemRandom) - 1 0.000 0.000 0.000 0.000 datetime.py:1141(tzinfo) - 1 0.000 0.000 0.000 0.000 decoder.py:284(__init__) - 3 0.000 0.000 0.000 0.000 datetime.py:2201(_create) - 18 0.000 0.000 0.000 0.000 {built-in method builtins.id} - 1 0.000 0.000 0.000 0.000 numbers.py:267(Rational) - 1 0.000 0.000 0.000 0.000 _common.py:634(outer) - 2 0.000 0.000 0.000 0.000 linear.py:16(inner_repr) - 4 0.000 0.000 0.000 0.000 mixins.py:51(_unary_method) - 1 0.000 0.000 0.000 0.000 posixpath.py:150(dirname) - 1 0.000 0.000 0.000 0.000 threading.py:573(Barrier) - 1 0.000 0.000 0.000 0.000 _internal.py:216(_getintp_ctype) - 2 0.000 0.000 0.000 0.000 {built-in method posix.putenv} - 1 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__) - 1 0.000 0.000 0.000 0.000 core.py:191() - 1 0.000 0.000 0.000 0.000 __init__.py:255() - 1 0.000 0.000 0.000 0.000 threading.py:376(Semaphore) - 1 0.000 0.000 0.000 0.000 sre_parse.py:861(_parse_flags) - 2 0.000 0.000 0.000 0.000 posixpath.py:60(isabs) - 1 0.000 0.000 0.000 0.000 core.py:977(_MaskedBinaryOperation) - 1 0.000 0.000 0.000 0.000 parse.py:364(_fix_result_transcoding) - 1 0.000 0.000 0.000 0.000 decoder.py:343(raw_decode) - 5 0.000 0.000 0.000 0.000 datetime.py:46(_days_in_month) - 17 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 arrayprint.py:905(FloatingFormat) - 10 0.000 0.000 0.000 0.000 enum.py:398(__members__) - 1 0.000 0.000 0.000 0.000 pathlib.py:137() - 38 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof} - 1 0.000 0.000 0.000 0.000 core.py:6821(_frommethod) - 1 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.generic' objects} - 1 0.000 0.000 0.000 0.000 test.py:79(MeuModulo) - 1 0.000 0.000 0.000 0.000 pathlib.py:285(_PosixFlavour) - 1 0.000 0.000 0.000 0.000 {built-in method posix.urandom} - 1 0.000 0.000 0.000 0.000 _pslinux.py:337() - 12 0.000 0.000 0.000 0.000 {method 'islower' of 'str' objects} - 1 0.000 0.000 0.000 0.000 threading.py:1281(_DummyThread) - 1 0.000 0.000 0.000 0.000 parse.py:154(_NetlocResultMixinBase) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.empty} - 1 0.000 0.000 0.000 0.000 pathlib.py:510(_PreciseSelector) - 7 0.000 0.000 0.000 0.000 posixpath.py:41(_get_sep) - 1 0.000 0.000 0.000 0.000 arrayterator.py:16(Arrayterator) - 17 0.000 0.000 0.000 0.000 :771(is_package) - 2 0.000 0.000 0.000 0.000 tokenize.py:60(maybe) - 1 0.000 0.000 0.000 0.000 module.py:9(Module) - 1 0.000 0.000 0.000 0.000 hmac.py:26(HMAC) - 1 0.000 0.000 0.000 0.000 _exceptions.py:99(_UFuncOutputCastingError) - 1 0.000 0.000 0.000 0.000 getlimits.py:32(MachArLike) - 1 0.000 0.000 0.000 0.000 index_tricks.py:531(__init__) - 1 0.000 0.000 0.000 0.000 index_tricks.py:264(OGridClass) - 1 0.000 0.000 0.000 0.000 {method 'union' of 'set' objects} - 3 0.000 0.000 0.000 0.000 {built-in method posix.getpid} - 3 0.000 0.000 0.000 0.000 datetime.py:41(_days_before_year) - 1 0.000 0.000 0.000 0.000 _exceptions.py:224(_ArrayMemoryError) - 4 0.000 0.000 0.000 0.000 core.py:3405(dtype) - 1 0.000 0.000 0.000 0.000 index_tricks.py:313(AxisConcatenator) - 1 0.000 0.000 0.000 0.000 extras.py:264(_fromnxfunction_single) - 1 0.000 0.000 0.000 0.000 extras.py:1519(MAxisConcatenator) - 4 0.000 0.000 0.000 0.000 :1211(_find_parent_path_names) - 10 0.000 0.000 0.000 0.000 __future__.py:83(__init__) - 1 0.000 0.000 0.000 0.000 _version.py:14(NumpyVersion) - 1 0.000 0.000 0.000 0.000 tokenize.py:59(any) - 1 0.000 0.000 0.000 0.000 __init__.py:318(CDLL) - 1 0.000 0.000 0.000 0.000 index_tricks.py:257(__init__) - 3 0.000 0.000 0.000 0.000 enum.py:957(_high_bit) - 15 0.000 0.000 0.000 0.000 {method 'startswith' of 'bytes' objects} - 1 0.000 0.000 0.000 0.000 index_tricks.py:563(__init__) - 1 0.000 0.000 0.000 0.000 {built-in method _thread.get_native_id} - 1 0.000 0.000 0.000 0.000 traceback.py:440(TracebackException) - 2 0.000 0.000 0.000 0.000 {built-in method posix.register_at_fork} - 1 0.000 0.000 0.000 0.000 _datasource.py:536(Repository) - 1 0.000 0.000 0.000 0.000 dis.py:479(Bytecode) - 1 0.000 0.000 0.000 0.000 threading.py:210(Condition) - 3 0.000 0.000 0.000 0.000 core.py:1362(getmask) - 3 0.000 0.000 0.000 0.000 __init__.py:405() - 9 0.000 0.000 0.000 0.000 _globals.py:86(__repr__) - 1 0.000 0.000 0.000 0.000 _pslinux.py:789(__init__) - 5 0.000 0.000 0.000 0.000 datetime.py:441(_check_tzinfo_arg) - 1 0.000 0.000 0.000 0.000 threading.py:94(_RLock) - 1 0.000 0.000 0.000 0.000 records.py:223(record) - 1 0.000 0.000 0.000 0.000 records.py:308(recarray) - 1 0.000 0.000 0.000 0.000 _weakrefset.py:81(add) - 1 0.000 0.000 0.000 0.000 pickle.py:200(_Framer) - 1 0.000 0.000 0.000 0.000 getlimits.py:613(iinfo) - 1 0.000 0.000 0.000 0.000 {method 'find' of 'str' objects} - 1 0.000 0.000 0.000 0.000 test.py:97() - 1 0.000 0.000 0.000 0.000 _machar.py:17(MachAr) - 1 0.000 0.000 0.000 0.000 core.py:2372(_MaskedPrintOption) - 1 0.000 0.000 0.000 0.000 core.py:195() - 1 0.000 0.000 0.000 0.000 memmap.py:22(memmap) - 1 0.000 0.000 0.000 0.000 function_base.py:2117(vectorize) - 6 0.000 0.000 0.000 0.000 core.py:846(__init__) - 1 0.000 0.000 0.000 0.000 core.py:6712(_extrema_operation) - 7 0.000 0.000 0.000 0.000 {built-in method builtins.vars} - 1 0.000 0.000 0.000 0.000 core.py:1283(_replace_dtype_fields_recursive) - 1 0.000 0.000 0.000 0.000 _pslinux.py:1189(RootFsDeviceFinder) - 5 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects} - 4 0.000 0.000 0.000 0.000 core.py:6521(__has_singleton) - 1 0.000 0.000 0.000 0.000 core.py:190() - 3 0.000 0.000 0.000 0.000 core.py:806(__init__) - 1 0.000 0.000 0.000 0.000 core.py:2589(MaskedIterator) - 1 0.000 0.000 0.000 0.000 core.py:8209(_convert2ma) - 1 0.000 0.000 0.000 0.000 threading.py:246(__enter__) - 5 0.000 0.000 0.000 0.000 inspect.py:72(isclass) - 1 0.000 0.000 0.000 0.000 threading.py:249(__exit__) - 2 0.000 0.000 0.000 0.000 pathlib.py:61(__init__) - 1 0.000 0.000 0.000 0.000 py3k.py:84(contextlib_nullcontext) - 6 0.000 0.000 0.000 0.000 _type_aliases.py:92() - 1 0.000 0.000 0.000 0.000 _iotools.py:133(LineSplitter) - 1 0.000 0.000 0.000 0.000 functions.py:48(PowBackward) - 1 0.000 0.000 0.000 0.000 _internal.py:204(dummy_ctype) - 1 0.000 0.000 0.000 0.000 socket.py:626(SocketIO) - 2 0.000 0.000 0.000 0.000 core.py:3421(shape) - 1 0.000 0.000 0.000 0.000 traceback.py:227(FrameSummary) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:204(_concrete_ndptr) - 1 0.000 0.000 0.000 0.000 subprocess.py:99(CalledProcessError) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1351(StructuredVoidFormat) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:30() - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_md5} - 1 0.000 0.000 0.000 0.000 pathlib.py:601(_PathParents) - 1 0.000 0.000 0.000 0.000 _datasource.py:74(_FileOpeners) - 1 0.000 0.000 0.000 0.000 random.py:103(__init_subclass__) - 1 0.000 0.000 0.000 0.000 records.py:87(format_parser) - 1 0.000 0.000 0.000 0.000 index_tricks.py:306(__init__) - 4 0.000 0.000 0.000 0.000 {built-in method _warnings._filters_mutated} - 1 0.000 0.000 0.000 0.000 parse.py:797(Quoter) - 1 0.000 0.000 0.000 0.000 threading.py:494(Event) - 1 0.000 0.000 0.000 0.000 tokenize.py:162(Untokenizer) - 1 0.000 0.000 0.000 0.000 tokenize.py:45(TokenInfo) - 1 0.000 0.000 0.000 0.000 _pslinux.py:777(Connections) - 1 0.000 0.000 0.000 0.000 _globals.py:80(__new__) - 1 0.000 0.000 0.000 0.000 core.py:903(_MaskedUnaryOperation) - 1 0.000 0.000 0.000 0.000 _exceptions.py:38(_UFuncBinaryResolutionError) - 1 0.000 0.000 0.000 0.000 pickle.py:263(_Unframer) - 1 0.000 0.000 0.000 0.000 extras.py:214(_fromnxfunction) - 1 0.000 0.000 0.000 0.000 ast.py:347(NodeVisitor) - 1 0.000 0.000 0.000 0.000 _compression.py:33(DecompressReader) - 1 0.000 0.000 0.000 0.000 parse.py:191(_NetlocResultMixinStr) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:367(errstate) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:183(_ndptr) - 3 0.000 0.000 0.000 0.000 core.py:867(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:261(_is_owned) - 1 0.000 0.000 0.000 0.000 _datasource.py:99(__init__) - 1 0.000 0.000 0.000 0.000 parse.py:221(_NetlocResultMixinBytes) - 1 0.000 0.000 0.000 0.000 __init__.py:215() - 1 0.000 0.000 0.000 0.000 _exceptions.py:132(AxisError) - 1 0.000 0.000 0.000 0.000 _common.py:653(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:1177(_make_invoke_excepthook) - 3 0.000 0.000 0.000 0.000 __init__.py:499(CFunctionType) - 1 0.000 0.000 0.000 0.000 npyio.py:42(BagObj) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1304(DatetimeFormat) - 1 0.000 0.000 0.000 0.000 {method 'cast' of 'memoryview' objects} - 2 0.000 0.000 0.000 0.000 {built-in method maketrans} - 1 0.000 0.000 0.000 0.000 threading.py:1230(Timer) - 1 0.000 0.000 0.000 0.000 index_tricks.py:619(ndindex) - 1 0.000 0.000 0.000 0.000 decoder.py:254(JSONDecoder) - 1 0.000 0.000 0.000 0.000 pathlib.py:1569(WindowsPath) - 2 0.000 0.000 0.000 0.000 __init__.py:367(_FuncPtr) - 1 0.000 0.000 0.000 0.000 encoder.py:73(JSONEncoder) - 1 0.000 0.000 0.000 0.000 encoder.py:104(__init__) - 1 0.000 0.000 0.000 0.000 parse.py:138(_ResultMixinStr) - 5 0.000 0.000 0.000 0.000 module.py:97(get_name) - 1 0.000 0.000 0.000 0.000 pathlib.py:479(_Selector) - 1 0.000 0.000 0.000 0.000 selectors.py:290(SelectSelector) - 2 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 __init__.py:1287(Popen) - 1 0.000 0.000 0.000 0.000 index_tricks.py:570(ndenumerate) - 1 0.000 0.000 0.000 0.000 _exceptions.py:54(_UFuncNoLoopError) - 1 0.000 0.000 0.000 0.000 enum.py:389(__iter__) - 1 0.000 0.000 0.000 0.000 core.py:194() - 1 0.000 0.000 0.000 0.000 {built-in method posix.confstr} - 2 0.000 0.000 0.000 0.000 index_tricks.py:145(__init__) - 1 0.000 0.000 0.000 0.000 _exceptions.py:81(_UFuncInputCastingError) - 1 0.000 0.000 0.000 0.000 selectors.py:206(_BaseSelectorImpl) - 1 0.000 0.000 0.000 0.000 parse.py:146(_ResultMixinBytes) - 1 0.000 0.000 0.000 0.000 index_tricks.py:212(MGridClass) - 1 0.000 0.000 0.000 0.000 index_tricks.py:110(nd_grid) - 1 0.000 0.000 0.000 0.000 utils.py:126(_Deprecate) - 1 0.000 0.000 0.000 0.000 core.py:2378(__init__) - 1 0.000 0.000 0.000 0.000 core.py:1125(_DomainedBinaryOperation) - 1 0.000 0.000 0.000 0.000 parse.py:326(DefragResult) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1222(IntegerFormat) - 1 0.000 0.000 0.000 0.000 subprocess.py:136(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 traceback.py:318(StackSummary) - 1 0.000 0.000 0.000 0.000 core.py:797(_DomainCheckInterval) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1245(ComplexFloatingFormat) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1278(_TimelikeFormat) - 1 0.000 0.000 0.000 0.000 _pytesttester.py:46(PytestTester) - 1 0.000 0.000 0.000 0.000 test.py:102() - 2 0.000 0.000 0.000 0.000 arrayprint.py:493(_recursive_guard) - 1 0.000 0.000 0.000 0.000 activation.py:4(Activation) - 1 0.000 0.000 0.000 0.000 core.py:893(_MaskedUFunc) - 1 0.000 0.000 0.000 0.000 _exceptions.py:72(_UFuncCastingError) - 1 0.000 0.000 0.000 0.000 threading.py:896(_set_ident) - 1 0.000 0.000 0.000 0.000 selectors.py:442(EpollSelector) - 1 0.000 0.000 0.000 0.000 selectors.py:341(_PollLikeSelector) - 1 0.000 0.000 0.000 0.000 inspect.py:897(BlockFinder) - 1 0.000 0.000 0.000 0.000 core.py:822(_DomainTan) - 1 0.000 0.000 0.000 0.000 optimizer.py:4(Optimizer) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1235(BoolFormat) - 3 0.000 0.000 0.000 0.000 {built-in method builtins.callable} - 1 0.000 0.000 0.000 0.000 _exceptions.py:118(TooHardError) - 2 0.000 0.000 0.000 0.000 core.py:883(__init__) - 2 0.000 0.000 0.000 0.000 index_tricks.py:762(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:456(BoundedSemaphore) - 1 0.000 0.000 0.000 0.000 _common.py:648(_WrapNumbers) - 1 0.000 0.000 0.000 0.000 core.py:840(_DomainSafeDivide) - 1 0.000 0.000 0.000 0.000 pathlib.py:504(_TerminatingSelector) - 1 0.000 0.000 0.000 0.000 stride_tricks.py:15(DummyArray) - 1 0.000 0.000 0.000 0.000 index_tricks.py:718(IndexExpression) - 1 0.000 0.000 0.000 0.000 :1() - 1 0.000 0.000 0.000 0.000 _compression.py:9(BaseStream) - 1 0.000 0.000 0.000 0.000 pathlib.py:526(_WildcardSelector) - 1 0.000 0.000 0.000 0.000 sgd.py:4(SGD) - 1 0.000 0.000 0.000 0.000 numbers.py:12(Number) - 1 0.000 0.000 0.000 0.000 numeric.py:61(ComplexWarning) - 1 0.000 0.000 0.000 0.000 __future__.py:81(_Feature) - 1 0.000 0.000 0.000 0.000 linalg.py:44(LinAlgError) - 1 0.000 0.000 0.000 0.000 pathlib.py:557(_RecursiveWildcardSelector) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.set_typeDict} - 1 0.000 0.000 0.000 0.000 _exceptions.py:32(UFuncTypeError) - 1 0.000 0.000 0.000 0.000 dis.py:209(Instruction) - 1 0.000 0.000 0.000 0.000 _globals.py:60(_NoValueType) - 1 0.000 0.000 0.000 0.000 numerictypes.py:424(_typedict) - 1 0.000 0.000 0.000 0.000 loss.py:4(Loss) - 1 0.000 0.000 0.000 0.000 extras.py:1549(mr_class) - 1 0.000 0.000 0.000 0.000 pathlib.py:1002(PurePosixPath) - 1 0.000 0.000 0.000 0.000 pathlib.py:1012(PureWindowsPath) - 1 0.000 0.000 0.000 0.000 parse.py:345(DefragResultBytes) - 2 0.000 0.000 0.000 0.000 __init__.py:101(CFunctionType) - 1 0.000 0.000 0.000 0.000 {built-in method numpy._set_promotion_state} - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha224} - 1 0.000 0.000 0.000 0.000 {built-in method posix.sysconf} - 1 0.000 0.000 0.000 0.000 linear.py:4(Linear) - 1 0.000 0.000 0.000 0.000 index_tricks.py:436(RClass) - 2 0.000 0.000 0.000 0.000 __init__.py:437(__init__) - 1 0.000 0.000 0.000 0.000 {built-in method psutil._psutil_posix.getpagesize} - 1 0.000 0.000 0.000 0.000 ast.py:520(Ellipsis) - 1 0.000 0.000 0.000 0.000 _common.py:278(Error) - 1 0.000 0.000 0.000 0.000 polyutils.py:47(RankWarning) - 1 0.000 0.000 0.000 0.000 parse.py:353(SplitResultBytes) - 1 0.000 0.000 0.000 0.000 ast.py:476(_ABC) - 1 0.000 0.000 0.000 0.000 ast.py:505(Num) - 1 0.000 0.000 0.000 0.000 parse.py:339(ParseResult) - 1 0.000 0.000 0.000 0.000 ast.py:509(Str) - 1 0.000 0.000 0.000 0.000 copyreg.py:22(constructor) - 1 0.000 0.000 0.000 0.000 {built-in method _thread._set_sentinel} - 1 0.000 0.000 0.000 0.000 parse.py:334(SplitResult) - 1 0.000 0.000 0.000 0.000 selectors.py:60(_SelectorMapping) - 1 0.000 0.000 0.000 0.000 selectors.py:433(PollSelector) - 2 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 extras.py:282(_fromnxfunction_seq) - 1 0.000 0.000 0.000 0.000 pickle.py:73(PickleError) - 1 0.000 0.000 0.000 0.000 parse.py:358(ParseResultBytes) - 1 0.000 0.000 0.000 0.000 core.py:877(_DomainGreaterEqual) - 1 0.000 0.000 0.000 0.000 _endian.py:23(_swapped_meta) - 1 0.000 0.000 0.000 0.000 __init__.py:153(py_object) - 1 0.000 0.000 0.000 0.000 core.py:861(_DomainGreater) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1341(SubArrayFormat) - 1 0.000 0.000 0.000 0.000 activation.py:15(Sigmoid) - 1 0.000 0.000 0.000 0.000 pickle.py:97(_Stop) - 1 0.000 0.000 0.000 0.000 threading.py:1260(_MainThread) - 1 0.000 0.000 0.000 0.000 tokenize.py:157(TokenError) - 1 0.000 0.000 0.000 0.000 extras.py:320(_fromnxfunction_allargs) - 1 0.000 0.000 0.000 0.000 inspect.py:2420(_void) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha384} - 1 0.000 0.000 0.000 0.000 decoder.py:20(JSONDecodeError) - 1 0.000 0.000 0.000 0.000 core.py:84(MaskedArrayFutureWarning) - 5 0.000 0.000 0.000 0.000 enum.py:1009() - 1 0.000 0.000 0.000 0.000 extras.py:295(_fromnxfunction_args) - 1 0.000 0.000 0.000 0.000 __init__.py:396(PyDLL) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha512} - 1 0.000 0.000 0.000 0.000 index_tricks.py:538(CClass) - 1 0.000 0.000 0.000 0.000 polynomial.py:28(RankWarning) - 1 0.000 0.000 0.000 0.000 pickle.py:77(PicklingError) - 1 0.000 0.000 0.000 0.000 pathlib.py:394(_Accessor) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:360(_unspecified) - 1 0.000 0.000 0.000 0.000 functions.py:3(AddBackward) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha256} - 1 0.000 0.000 0.000 0.000 parameter.py:5(Parameter) - 1 0.000 0.000 0.000 0.000 core.py:830(__init__) - 2 0.000 0.000 0.000 0.000 {method 'clear' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 arrayprint.py:1336(TimedeltaFormat) - 1 0.000 0.000 0.000 0.000 __init__.py:436(LibraryLoader) - 1 0.000 0.000 0.000 0.000 core.py:156(MaskError) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencoding} - 1 0.000 0.000 0.000 0.000 __init__.py:248(c_bool) - 1 0.000 0.000 0.000 0.000 threading.py:727(BrokenBarrierError) - 1 0.000 0.000 0.000 0.000 _iotools.py:437(ConversionWarning) - 1 0.000 0.000 0.000 0.000 subprocess.py:419(CompletedProcess) - 1 0.000 0.000 0.000 0.000 ast.py:513(Bytes) - 1 0.000 0.000 0.000 0.000 loss.py:17(MSELoss) - 1 0.000 0.000 0.000 0.000 functions.py:10(SubBackward) - 1 0.000 0.000 0.000 0.000 pathlib.py:1562(PosixPath) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._reload_guard} - 1 0.000 0.000 0.000 0.000 ast.py:517(NameConstant) - 1 0.000 0.000 0.000 0.000 tokenize.py:159(StopTokenizing) - 2 0.000 0.000 0.000 0.000 {built-in method builtins.iter} - 1 0.000 0.000 0.000 0.000 __init__.py:162(c_short) - 1 0.000 0.000 0.000 0.000 _internal.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 _endian.py:46(BigEndianStructure) - 1 0.000 0.000 0.000 0.000 random.py:729(seed) - 2 0.000 0.000 0.000 0.000 {method 'end' of 're.Match' objects} - 1 0.000 0.000 0.000 0.000 inspect.py:895(EndOfBlock) - 1 0.000 0.000 0.000 0.000 _common.py:311(NoSuchProcess) - 1 0.000 0.000 0.000 0.000 core.py:148(MAError) - 1 0.000 0.000 0.000 0.000 inspect.py:2424(_empty) - 1 0.000 0.000 0.000 0.000 pickle.py:84(UnpicklingError) - 1 0.000 0.000 0.000 0.000 _globals.py:33(ModuleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 _pslinux.py:773(_Ipv6UnsupportedError) - 1 0.000 0.000 0.000 0.000 functions.py:17(ScalarMulBackward) - 1 0.000 0.000 0.000 0.000 _iotools.py:421(ConverterError) - 1 0.000 0.000 0.000 0.000 multiarray.py:152(concatenate) - 1 0.000 0.000 0.000 0.000 multiarray.py:1079(copyto) - 1 0.000 0.000 0.000 0.000 _common.py:324(ZombieProcess) - 1 0.000 0.000 0.000 0.000 __init__.py:166(c_ushort) - 1 0.000 0.000 0.000 0.000 threading.py:1095(daemon) - 1 0.000 0.000 0.000 0.000 _iotools.py:429(ConverterLockError) - 2 0.000 0.000 0.000 0.000 :1286(exec_module) - 1 0.000 0.000 0.000 0.000 __init__.py:237(c_char_p) - 3 0.000 0.000 0.000 0.000 {method 'bit_length' of 'int' objects} - 1 0.000 0.000 0.000 0.000 contextlib.py:59(_recreate_cm) - 1 0.000 0.000 0.000 0.000 shutil.py:69(Error) - 1 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 functions.py:32(MatmulBackward) - 1 0.000 0.000 0.000 0.000 socket.py:210(_GiveupOnSendfile) - 1 0.000 0.000 0.000 0.000 __init__.py:191(c_float) - 2 0.000 0.000 0.000 0.000 module.py:83(inner_repr) - 1 0.000 0.000 0.000 0.000 _globals.py:47(VisibleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 _common.py:630(deprecated_method) - 1 0.000 0.000 0.000 0.000 __init__.py:253(c_wchar_p) - 1 0.000 0.000 0.000 0.000 functions.py:66(LogBackward) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._set_madvise_hugepage} - 1 0.000 0.000 0.000 0.000 _common.py:350(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 shutil.py:72(SameFileError) - 1 0.000 0.000 0.000 0.000 __init__.py:258(c_wchar) - 1 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 _common.py:339(AccessDenied) - 1 0.000 0.000 0.000 0.000 _distributor_init.py:1() - 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} - 1 0.000 0.000 0.000 0.000 {method 'items' of 'collections.OrderedDict' objects} - 1 0.000 0.000 0.000 0.000 {built-in method math.sqrt} - 1 0.000 0.000 0.000 0.000 functions.py:25(ElementwiseMulBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 __init__.py:174(c_ulong) - 1 0.000 0.000 0.000 0.000 __init__.py:232(c_char) - 1 0.000 0.000 0.000 0.000 functions.py:91(TransposeBackward) - 1 0.000 0.000 0.000 0.000 functions.py:100(DivisionBackward) - 1 0.000 0.000 0.000 0.000 functions.py:84(ReshapeBackward) - 1 0.000 0.000 0.000 0.000 functions.py:76(SumBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:195(c_double) - 1 0.000 0.000 0.000 0.000 __init__.py:187(c_uint) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencodeerrors} - 1 0.000 0.000 0.000 0.000 subprocess.py:96(SubprocessError) - 1 0.000 0.000 0.000 0.000 __init__.py:199(c_longdouble) - 1 0.000 0.000 0.000 0.000 __init__.py:227(c_byte) - 1 0.000 0.000 0.000 0.000 __init__.py:170(c_long) - 1 0.000 0.000 0.000 0.000 __init__.py:220(c_ubyte) - 1 0.000 0.000 0.000 0.000 shutil.py:82(ReadError) - 1 0.000 0.000 0.000 0.000 shutil.py:79(ExecError) - 1 0.000 0.000 0.000 0.000 shutil.py:85(RegistryError) - 1 0.000 0.000 0.000 0.000 shutil.py:75(SpecialFileError) - 1 0.000 0.000 0.000 0.000 __init__.py:183(c_int) - 1 0.000 0.000 0.000 0.000 shutil.py:89(_GiveupOnFastCopy) - - diff --git a/profile8.txt b/profile8.txt deleted file mode 100644 index f17447d..0000000 --- a/profile8.txt +++ /dev/null @@ -1,1132 +0,0 @@ -CPU Usage: 9.6% -Memory Usage: 74.1% -MeuModulo( - (layer1): Linear(input_dim=100, output_dim=1000, bias=True) - (sigmoid1): Sigmoid() - (layer2): Linear(input_dim=1000, output_dim=2, bias=True) - (sigmoid2): Sigmoid() -) -5.287292242050171 - 1451689 function calls (1342077 primitive calls) in 6.720 seconds - - Ordered by: cumulative time - - ncalls tottime percall cumtime percall filename:lineno(function) - 197/1 0.003 0.000 6.720 6.720 {built-in method builtins.exec} - 1 0.001 0.001 6.720 6.720 test.py:2() - 30 0.093 0.003 5.207 0.174 tensor.py:137(backward) - 2235 0.006 0.000 2.814 0.001 functions.py:36(backward) - 4530 1.601 0.000 1.611 0.000 tensor.py:356(__matmul__) - 5340 1.236 0.000 1.247 0.000 tensor.py:543(transpose) - 23409 1.087 0.000 1.128 0.000 tensor.py:211(__add__) - 1 0.000 0.000 1.002 1.002 __init__.py:1692(cpu_percent) - 1 1.001 1.001 1.001 1.001 {built-in method time.sleep} - 30049 0.845 0.000 0.905 0.000 tensor.py:307(__mul__) - 6904 0.005 0.000 0.429 0.000 functions.py:22(backward) - 18 0.001 0.000 0.394 0.022 __init__.py:1() - 1800 0.095 0.000 0.238 0.000 functions.py:104(backward) - 1 0.000 0.000 0.215 0.215 test.py:80(__init__) - 2 0.001 0.001 0.214 0.107 linear.py:5(__init__) - 197/5 0.001 0.000 0.213 0.043 :986(_find_and_load) - 197/5 0.001 0.000 0.213 0.043 :956(_find_and_load_unlocked) - 4 0.000 0.000 0.213 0.053 parameter.py:9(__init__) - 186/5 0.001 0.000 0.212 0.042 :650(_load_unlocked) - 144/5 0.001 0.000 0.212 0.042 :842(exec_module) - 291/5 0.000 0.000 0.209 0.042 :211(_call_with_frames_removed) - 2205 0.002 0.000 0.203 0.000 functions.py:14(backward) - 2265 0.001 0.000 0.201 0.000 tensor.py:350(__neg__) - 2265 0.010 0.000 0.196 0.000 functions.py:52(backward) - 217/25 0.001 0.000 0.186 0.007 :1017(_handle_fromlist) - 384/12 0.001 0.000 0.186 0.015 {built-in method builtins.__import__} - 76045 0.075 0.000 0.181 0.000 tensor.py:19(__init__) - 36 0.000 0.000 0.106 0.003 tensor.py:57(flatten) -105176/36 0.079 0.000 0.106 0.003 tensor.py:58(flatten_recursively) - 2008/4 0.002 0.000 0.093 0.023 utils.py:5(generate_random_list) - 4 0.001 0.000 0.093 0.023 utils.py:16() - 2004 0.038 0.000 0.090 0.000 utils.py:14() - 3045 0.005 0.000 0.068 0.000 functions.py:29(backward) - 144 0.002 0.000 0.068 0.000 :914(get_code) - 1950 0.030 0.000 0.066 0.000 tensor.py:259(__sub__) - 3930 0.002 0.000 0.064 0.000 tensor.py:347(__rmul__) - 30 0.001 0.000 0.058 0.002 sgd.py:12(step) - 3660 0.046 0.000 0.052 0.000 tensor.py:429(__rpow__) - 103002 0.042 0.000 0.052 0.000 random.py:415(uniform) - 870 0.001 0.000 0.037 0.000 functions.py:97(backward) - 144 0.002 0.000 0.035 0.000 :1034(get_data) - 1 0.000 0.000 0.031 0.031 multiarray.py:1() - 1 0.000 0.000 0.029 0.029 overrides.py:1() - 194 0.002 0.000 0.028 0.000 :890(_find_spec) - 230244 0.027 0.000 0.028 0.000 {built-in method builtins.isinstance} - 144 0.028 0.000 0.028 0.000 {method 'read' of '_io.BufferedReader' objects} - 186/184 0.001 0.000 0.027 0.000 :549(module_from_spec) - 177 0.000 0.000 0.024 0.000 :1399(find_spec) - 144 0.001 0.000 0.024 0.000 :638(_compile_bytecode) - 177 0.001 0.000 0.024 0.000 :1367(_get_spec) - 144 0.024 0.000 0.024 0.000 {built-in method marshal.loads} - 331 0.004 0.000 0.021 0.000 :1498(find_spec) - 1 0.000 0.000 0.021 0.021 __init__.py:7() - 198565 0.020 0.000 0.020 0.000 {built-in method _ctypes.POINTER} - 150/30 0.000 0.000 0.020 0.001 module.py:22(__call__) - 30 0.000 0.000 0.020 0.001 test.py:88(forward) - 1800 0.017 0.000 0.020 0.000 tensor.py:448(__truediv__) - 1890 0.018 0.000 0.020 0.000 tensor.py:74(ones_like) - 23 0.000 0.000 0.019 0.001 :1164(create_module) - 23 0.015 0.001 0.019 0.001 {built-in method _imp.create_dynamic} - 1860 0.015 0.000 0.017 0.000 tensor.py:486(__rtruediv__) - 1 0.000 0.000 0.016 0.016 _pickle.py:1() - 314 0.002 0.000 0.016 0.000 overrides.py:170(decorator) - 1 0.000 0.000 0.016 0.016 numeric.py:1() - 60 0.000 0.000 0.015 0.000 linear.py:12(forward) - 23/18 0.000 0.000 0.014 0.001 :1172(exec_module) - 23/18 0.003 0.000 0.014 0.001 {built-in method _imp.exec_dynamic} - 1 0.000 0.000 0.014 0.014 py3k.py:1() - 294/292 0.006 0.000 0.013 0.000 {built-in method builtins.__build_class__} - 1 0.000 0.000 0.013 0.013 index_tricks.py:1() - 133516 0.012 0.000 0.012 0.000 {method 'append' of 'list' objects} - 1 0.000 0.000 0.012 0.012 core.py:1() - 14685 0.011 0.000 0.011 0.000 functions.py:26(__init__) - 71451 0.011 0.000 0.011 0.000 {method 'copy' of 'list' objects} - 2 0.000 0.000 0.011 0.005 shape_base.py:1() - 153 0.000 0.000 0.010 0.000 re.py:289(_compile) - 107316 0.010 0.000 0.010 0.000 {method 'extend' of 'list' objects} - 103004 0.009 0.000 0.009 0.000 {method 'random' of '_random.Random' objects} - 755 0.001 0.000 0.009 0.000 :135(_path_stat) - 23469 0.009 0.000 0.009 0.000 functions.py:4(__init__) - 28 0.000 0.000 0.009 0.000 re.py:250(compile) - 31 0.000 0.000 0.009 0.000 sre_compile.py:759(compile) - 759 0.009 0.000 0.009 0.000 {built-in method posix.stat} - 284 0.002 0.000 0.009 0.000 overrides.py:88(verify_matching_signatures) - 1 0.001 0.001 0.008 0.008 fromnumeric.py:1() - 1 0.000 0.000 0.008 0.008 inspect.py:1() - 1 0.000 0.000 0.008 0.008 version.py:1() - 186 0.001 0.000 0.007 0.000 :477(_init_module_attrs) - 1 0.000 0.000 0.007 0.007 pathlib.py:1() - 13440 0.007 0.000 0.007 0.000 functions.py:18(__init__) - 1 0.000 0.000 0.007 0.007 defmatrix.py:1() - 960 0.005 0.000 0.006 0.000 tensor.py:410(__pow__) - 1 0.000 0.000 0.006 0.006 _pslinux.py:5() - 618 0.001 0.000 0.006 0.000 _inspect.py:96(getargspec) - 1 0.000 0.000 0.006 0.006 tensor.py:1() - 1 0.000 0.000 0.006 0.006 _version.py:7() - 144 0.006 0.000 0.006 0.000 {built-in method io.open_code} - 51 0.002 0.000 0.006 0.000 __init__.py:313(namedtuple) - 1 0.000 0.000 0.006 0.006 _common.py:5() - 1740 0.002 0.000 0.005 0.000 :121(_path_join) - 317 0.001 0.000 0.005 0.000 function_base.py:483(add_newdoc) - 288 0.002 0.000 0.005 0.000 :354(cache_from_source) - 1 0.000 0.000 0.005 0.005 _add_newdocs.py:1() - 234 0.000 0.000 0.005 0.000 :154(_path_isfile) - 258 0.000 0.000 0.005 0.000 :145(_path_is_mode_type) - 31 0.000 0.000 0.005 0.000 sre_parse.py:937(parse) - 1 0.000 0.000 0.005 0.005 numerictypes.py:1() - 385 0.003 0.000 0.005 0.000 functools.py:34(update_wrapper) - 62/31 0.000 0.000 0.005 0.000 sre_parse.py:435(_parse_sub) - 1 0.000 0.000 0.004 0.004 linalg.py:1() - 1 0.000 0.000 0.004 0.004 secrets.py:1() - 1 0.000 0.000 0.004 0.004 npyio.py:1() - 65/31 0.002 0.000 0.004 0.000 sre_parse.py:493(_parse) - 60 0.000 0.000 0.004 0.000 activation.py:19(forward) - 4440 0.004 0.000 0.004 0.000 functions.py:92(__init__) - 25735 0.004 0.000 0.004 0.000 {method 'add' of 'set' objects} - 311 0.001 0.000 0.004 0.000 :376(cached) - 347 0.001 0.000 0.004 0.000 :194(_lock_unlock_module) - 31 0.000 0.000 0.004 0.000 sre_compile.py:598(_code) - 1 0.000 0.000 0.004 0.004 _methods.py:1() - 1 0.000 0.000 0.004 0.004 _internal.py:1() - 1 0.000 0.000 0.004 0.004 pickle.py:1() - 4530 0.004 0.000 0.004 0.000 functions.py:33(__init__) - 1 0.000 0.000 0.003 0.003 defchararray.py:1() - 614 0.003 0.000 0.003 0.000 _inspect.py:65(getargs) - 167 0.000 0.000 0.003 0.000 :484(_get_cached) - 2 0.000 0.000 0.003 0.002 polynomial.py:1() - 1 0.000 0.000 0.003 0.003 _compat.py:5() - 7 0.000 0.000 0.003 0.000 enum.py:483(_convert_) - 465 0.002 0.000 0.003 0.000 tensor.py:507(log) - 1 0.000 0.000 0.003 0.003 linecache.py:1() - 4620 0.003 0.000 0.003 0.000 functions.py:49(__init__) - 2 0.000 0.000 0.003 0.002 function_base.py:1() - 25098 0.003 0.000 0.003 0.000 {method 'pop' of 'list' objects} - 79 0.000 0.000 0.003 0.000 enum.py:313(__call__) - 118/31 0.001 0.000 0.003 0.000 sre_compile.py:71(_compile) - 5200 0.003 0.000 0.003 0.000 {built-in method builtins.getattr} - 197 0.000 0.000 0.003 0.000 :147(__enter__) - 1 0.000 0.000 0.003 0.003 hmac.py:1() - 544 0.002 0.000 0.003 0.000 :157(_get_module_lock) - 1 0.000 0.000 0.003 0.003 decoder.py:1() - 1740 0.002 0.000 0.003 0.000 :123() - 1 0.000 0.000 0.003 0.003 shutil.py:1() - 1 0.000 0.000 0.003 0.003 scimath.py:1() - 9 0.000 0.000 0.003 0.000 enum.py:430(_create_) - 1 0.000 0.000 0.003 0.003 socket.py:4() - 14 0.001 0.000 0.002 0.000 enum.py:157(__new__) - 1 0.000 0.000 0.002 0.002 tokenize.py:1() - 60 0.000 0.000 0.002 0.000 tensor.py:235(__radd__) - 1 0.000 0.000 0.002 0.002 datetime.py:1() - 17 0.000 0.000 0.002 0.000 :746(create_module) - 17 0.002 0.000 0.002 0.000 {built-in method _imp.create_builtin} - 167 0.000 0.000 0.002 0.000 :1493(_get_spec) - 544 0.002 0.000 0.002 0.000 :78(acquire) - 1 0.000 0.000 0.002 0.002 _ufunc_config.py:1() - 1 0.000 0.000 0.002 0.002 dis.py:1() - 1 0.000 0.000 0.002 0.002 parse.py:1() - 288 0.001 0.000 0.002 0.000 :127(_path_split) - 386 0.000 0.000 0.002 0.000 :1330(_path_importer_cache) - 1802 0.002 0.000 0.002 0.000 {built-in method math.log} - 1 0.000 0.000 0.002 0.002 twodim_base.py:1() - 1 0.000 0.000 0.002 0.002 _pslinux.py:1667(Process) - 810 0.002 0.000 0.002 0.000 {built-in method __new__ of type object at 0x902780} - 544 0.001 0.000 0.002 0.000 :103(release) - 2316 0.001 0.000 0.002 0.000 {built-in method builtins.setattr} - 1 0.000 0.000 0.002 0.002 tensor.py:15(Tensor) - 144 0.000 0.000 0.002 0.000 :1075(path_stats) - 2 0.000 0.000 0.002 0.001 __init__.py:339(__init__) - 2 0.001 0.001 0.001 0.001 {built-in method _ctypes.dlopen} - 1 0.000 0.000 0.001 0.001 scanner.py:1() - 317 0.000 0.000 0.001 0.000 function_base.py:469(_add_docstring) - 3660 0.001 0.000 0.001 0.000 functions.py:101(__init__) - 1 0.000 0.000 0.001 0.001 type_check.py:1() - 1 0.000 0.000 0.001 0.001 sgd.py:6(__init__) - 1 0.000 0.000 0.001 0.001 _type_aliases.py:1() - 14 0.000 0.000 0.001 0.000 core.py:115(doc_note) - 167 0.001 0.000 0.001 0.000 :689(spec_from_file_location) - 37 0.000 0.000 0.001 0.000 abc.py:84(__new__) - 58 0.001 0.000 0.001 0.000 sre_compile.py:276(_optimize_charset) -10890/10766 0.001 0.000 0.001 0.000 {built-in method builtins.len} - 1 0.000 0.000 0.001 0.001 extras.py:1() - 1 0.000 0.000 0.001 0.001 linear.py:1() - 1 0.000 0.000 0.001 0.001 subprocess.py:10() - 1 0.000 0.000 0.001 0.001 _pocketfft.py:1() - 1 0.000 0.000 0.001 0.001 ntpath.py:2() - 2334 0.001 0.000 0.001 0.000 {method 'join' of 'str' objects} - 1 0.000 0.000 0.001 0.001 _add_newdocs_scalars.py:1() - 22 0.000 0.000 0.001 0.000 :1317(_path_hooks) - 2 0.000 0.000 0.001 0.001 utils.py:1() - 1 0.000 0.000 0.001 0.001 signal.py:1() - 22 0.000 0.000 0.001 0.000 :1549(_fill_cache) - 28 0.001 0.000 0.001 0.000 inspect.py:625(cleandoc) - 1 0.000 0.000 0.001 0.001 getlimits.py:158(_register_known_types) - 304 0.000 0.000 0.001 0.000 {built-in method builtins.max} - 7 0.000 0.000 0.001 0.000 enum.py:500() - 197 0.000 0.000 0.001 0.000 :151(__exit__) - 1 0.000 0.000 0.001 0.001 bz2.py:1() - 1867 0.001 0.000 0.001 0.000 :222(_verbose_message) - 2241 0.001 0.000 0.001 0.000 {built-in method builtins.hasattr} - 144 0.001 0.000 0.001 0.000 :553(_classify_pyc) - 1 0.000 0.000 0.001 0.001 pickle.py:197() - 6 0.000 0.000 0.001 0.000 getlimits.py:34(__init__) - 31 0.000 0.000 0.001 0.000 sre_compile.py:536(_compile_info) - 1 0.000 0.000 0.001 0.001 module.py:1() - 22 0.001 0.000 0.001 0.000 {built-in method posix.listdir} - 3600 0.001 0.000 0.001 0.000 functions.py:7(backward) - 1 0.000 0.000 0.001 0.001 nanfunctions.py:1() - 156 0.000 0.000 0.001 0.000 module.py:100(__setattr__) - 317 0.001 0.000 0.001 0.000 function_base.py:451(_needs_add_docstring) - 568 0.000 0.000 0.001 0.000 :1(__new__) - 1 0.000 0.000 0.001 0.001 encoder.py:1() - 1 0.000 0.000 0.001 0.001 optimizer.py:9(__init__) - 107 0.000 0.000 0.001 0.000 re.py:188(match) - 10 0.000 0.000 0.001 0.000 extras.py:234(__init__) - 13/5 0.000 0.000 0.001 0.000 module.py:35(parameters) - 10 0.000 0.000 0.001 0.000 extras.py:238(getdoc) - 1 0.000 0.000 0.001 0.001 opcode.py:2() - 30 0.000 0.000 0.001 0.000 loss.py:13(__call__) - 432 0.001 0.000 0.001 0.000 :79(_unpack_uint32) - 1950 0.001 0.000 0.001 0.000 functions.py:11(__init__) - 144 0.000 0.000 0.001 0.000 :586(_validate_timestamp_pyc) - 516 0.001 0.000 0.001 0.000 :389(parent) - 30 0.000 0.000 0.001 0.000 loss.py:21(forward) - 1 0.000 0.000 0.001 0.001 random.py:1() - 4 0.000 0.000 0.001 0.000 __init__.py:1595(cpu_times) - 192 0.000 0.000 0.001 0.000 enum.py:75(__setitem__) - 618 0.000 0.000 0.001 0.000 _inspect.py:13(ismethod) - 3770 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects} - 23 0.000 0.000 0.001 0.000 overrides.py:221(decorator) - 1 0.000 0.000 0.001 0.001 arrayprint.py:1() - 22 0.000 0.000 0.001 0.000 :1590(path_hook_for_FileFinder) - 24 0.000 0.000 0.001 0.000 _add_newdocs_scalars.py:71(add_newdoc_for_scalar_type) - 383 0.001 0.000 0.001 0.000 functools.py:64(wraps) - 1 0.000 0.000 0.001 0.001 ast.py:1() - 36 0.000 0.000 0.001 0.000 getlimits.py:111(_float_to_str) - 1 0.000 0.000 0.001 0.001 ctypeslib.py:1() - 1255 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects} - 196 0.000 0.000 0.001 0.000 :176(cb) - 1 0.000 0.000 0.001 0.001 sgd.py:10() - 757 0.000 0.000 0.001 0.000 sre_parse.py:164(__getitem__) - 4 0.001 0.000 0.001 0.000 tensor.py:90(zeros_like) - 405 0.000 0.000 0.001 0.000 abc.py:96(__instancecheck__) - 3 0.000 0.000 0.001 0.000 _pslinux.py:584(cpu_times) - 1 0.000 0.000 0.001 0.001 __init__.py:1920(virtual_memory) - 483 0.000 0.000 0.001 0.000 sre_parse.py:254(get) - 1 0.000 0.000 0.001 0.001 _pslinux.py:406(virtual_memory) - 1 0.000 0.000 0.001 0.001 _psposix.py:5() - 146/59 0.000 0.000 0.001 0.000 sre_parse.py:174(getwidth) - 576 0.000 0.000 0.001 0.000 :129() - 50 0.000 0.000 0.001 0.000 core.py:131(get_object_signature) - 196 0.000 0.000 0.001 0.000 :58(__init__) - 618 0.000 0.000 0.001 0.000 _inspect.py:26(isfunction) - 548 0.000 0.000 0.001 0.000 :867(__exit__) - 614 0.000 0.000 0.001 0.000 _inspect.py:41(iscode) - 30 0.000 0.000 0.001 0.000 functions.py:80(backward) - 1 0.000 0.000 0.001 0.001 parameter.py:1() - 18 0.000 0.000 0.001 0.000 arrayprint.py:1571(_array_str_implementation) - 1 0.000 0.000 0.000 0.000 contextvars.py:1() - 1 0.000 0.000 0.000 0.000 threading.py:1() - 1 0.000 0.000 0.000 0.000 sgd.py:1() - 18 0.000 0.000 0.000 0.000 arrayprint.py:506(wrapper) - 621 0.000 0.000 0.000 0.000 sre_parse.py:233(__next) - 1 0.000 0.000 0.000 0.000 arraysetops.py:1() - 405 0.000 0.000 0.000 0.000 {built-in method _abc._abc_instancecheck} - 314 0.000 0.000 0.000 0.000 {method 'replace' of 'code' objects} - 1 0.000 0.000 0.000 0.000 ctypeslib.py:362(_get_scalar_type_map) - 548 0.000 0.000 0.000 0.000 :863(__enter__) - 1 0.000 0.000 0.000 0.000 ctypeslib.py:373() - 5 0.000 0.000 0.000 0.000 inspect.py:325(getmembers) - 1 0.000 0.000 0.000 0.000 hashlib.py:5() - 3 0.000 0.000 0.000 0.000 warnings.py:130(filterwarnings) - 18 0.000 0.000 0.000 0.000 arrayprint.py:1564(_guarded_repr_or_str) - 194 0.000 0.000 0.000 0.000 :725(find_spec) - 2162 0.000 0.000 0.000 0.000 {method 'startswith' of 'str' objects} - 1 0.000 0.000 0.000 0.000 numbers.py:4() - 1 0.000 0.000 0.000 0.000 _exceptions.py:1() - 14 0.000 0.000 0.000 0.000 hashlib.py:123(__get_openssl_constructor) - 1 0.000 0.000 0.000 0.000 lzma.py:1() - 22 0.000 0.000 0.000 0.000 :1459(__init__) - 1288 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock} - 26 0.000 0.000 0.000 0.000 core.py:6832(__init__) - 14 0.000 0.000 0.000 0.000 enum.py:200() - 1288 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock} - 1 0.000 0.000 0.000 0.000 selectors.py:1() - 1 0.000 0.000 0.000 0.000 histograms.py:1() - 129/29 0.000 0.000 0.000 0.000 abc.py:100(__subclasscheck__) - 1 0.000 0.000 0.000 0.000 contextlib.py:72(inner) - 26 0.000 0.000 0.000 0.000 core.py:6837(getdoc) - 22 0.000 0.000 0.000 0.000 :63(__init__) - 37 0.000 0.000 0.000 0.000 {built-in method _abc._abc_init} - 285 0.000 0.000 0.000 0.000 {method 'format' of 'str' objects} - 1107 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident} - 129/29 0.000 0.000 0.000 0.000 {built-in method _abc._abc_subclasscheck} - 52 0.000 0.000 0.000 0.000 core.py:894(__init__) - 8 0.000 0.000 0.000 0.000 hashlib.py:79(__get_builtin_constructor) - 1 0.000 0.000 0.000 0.000 ufunclike.py:1() - 341 0.000 0.000 0.000 0.000 {method 'strip' of 'str' objects} - 144 0.000 0.000 0.000 0.000 :516(_check_name_wrapper) - 1 0.000 0.000 0.000 0.000 {function SeedSequence.generate_state at 0x7fc8693c5c10} - 6 0.000 0.000 0.000 0.000 _common.py:764(open_binary) - 238 0.000 0.000 0.000 0.000 enum.py:417(__setattr__) - 189 0.000 0.000 0.000 0.000 :175(_path_isabs) - 196 0.000 0.000 0.000 0.000 :342(__init__) - 1 0.000 0.000 0.000 0.000 glob.py:1() - 1 0.000 0.000 0.000 0.000 _type_aliases.py:94(_add_aliases) - 28 0.000 0.000 0.000 0.000 sre_parse.py:96(closegroup) - 14 0.000 0.000 0.000 0.000 re.py:223(split) - 6 0.000 0.000 0.000 0.000 {built-in method io.open} - 6 0.000 0.000 0.000 0.000 numeric.py:2536(extend_all) - 14 0.000 0.000 0.000 0.000 core.py:8222(__init__) - 14 0.000 0.000 0.000 0.000 core.py:8227(getdoc) - 342 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.add_docstring} - 31 0.000 0.000 0.000 0.000 enum.py:938(__and__) - 1 0.000 0.000 0.000 0.000 _globals.py:1() - 177 0.000 0.000 0.000 0.000 :800(find_spec) - 58 0.000 0.000 0.000 0.000 {built-in method posix.getcwd} - 422 0.000 0.000 0.000 0.000 {method 'update' of 'dict' objects} - 314 0.000 0.000 0.000 0.000 overrides.py:128(array_function_dispatch) - 46 0.000 0.000 0.000 0.000 _inspect.py:140(formatargspec) - 1 0.000 0.000 0.000 0.000 arraypad.py:1() - 1 0.000 0.000 0.000 0.000 _iotools.py:1() - 465 0.000 0.000 0.000 0.000 functions.py:67(__init__) - 1 0.000 0.000 0.000 0.000 stride_tricks.py:1() - 146 0.000 0.000 0.000 0.000 :35(_new_module) - 984 0.000 0.000 0.000 0.000 {built-in method builtins.min} - 1 0.000 0.000 0.000 0.000 records.py:1() - 5 0.000 0.000 0.000 0.000 _common.py:423(wrapper) - 6 0.000 0.000 0.000 0.000 module.py:13(__init__) - 1 0.000 0.000 0.000 0.000 base64.py:3() - 289 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects} - 24 0.000 0.000 0.000 0.000 :159(_path_isdir) - 12 0.000 0.000 0.000 0.000 datetime.py:488(__new__) - 1 0.000 0.000 0.000 0.000 __init__.py:1733(calculate) - 1 0.000 0.000 0.000 0.000 _compat_pickle.py:9() - 16 0.000 0.000 0.000 0.000 _type_aliases.py:58(bitname) - 297 0.000 0.000 0.000 0.000 sre_parse.py:249(match) - 1 0.000 0.000 0.000 0.000 _string_helpers.py:1() - 1 0.000 0.000 0.000 0.000 mixins.py:1() - 16 0.000 0.000 0.000 0.000 sre_compile.py:411(_mk_bitmap) - 14 0.000 0.000 0.000 0.000 enum.py:143(__prepare__) - 1 0.000 0.000 0.000 0.000 functions.py:1() - 5 0.000 0.000 0.000 0.000 {method 'readline' of '_io.BufferedReader' objects} - 1 0.000 0.000 0.000 0.000 getlimits.py:1() - 581 0.000 0.000 0.000 0.000 {method 'get' of 'dict' objects} - 30 0.000 0.000 0.000 0.000 tensor.py:525(sum) - 118 0.000 0.000 0.000 0.000 {built-in method numpy.array} - 1 0.000 0.000 0.000 0.000 _polybase.py:1() - 70 0.000 0.000 0.000 0.000 enum.py:631(__new__) - 34 0.000 0.000 0.000 0.000 _pslinux.py:1646(wrap_exceptions) - 10 0.000 0.000 0.000 0.000 {built-in method builtins.dir} - 30 0.000 0.000 0.000 0.000 optimizer.py:20(zero_grad) - 53 0.000 0.000 0.000 0.000 sre_compile.py:423(_simple) - 3 0.000 0.000 0.000 0.000 ufunclike.py:58(_fix_and_maybe_deprecate_out_named_y) - 3 0.000 0.000 0.000 0.000 ufunclike.py:41(_fix_out_named_y) - 1 0.000 0.000 0.000 0.000 _pslinux.py:259(set_scputimes_ntuple) - 1 0.000 0.000 0.000 0.000 _string_helpers.py:9() - 1 0.000 0.000 0.000 0.000 laguerre.py:1() - 376 0.000 0.000 0.000 0.000 socket.py:76() - 1 0.000 0.000 0.000 0.000 __init__.py:298(Process) - 1 0.000 0.000 0.000 0.000 legendre.py:1() - 58 0.000 0.000 0.000 0.000 sre_compile.py:249(_compile_charset) - 396 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock} - 103 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects} - 1 0.000 0.000 0.000 0.000 chebyshev.py:1() - 379 0.000 0.000 0.000 0.000 socket.py:91() - 377 0.000 0.000 0.000 0.000 socket.py:81() - 378 0.000 0.000 0.000 0.000 socket.py:86() - 178 0.000 0.000 0.000 0.000 sre_parse.py:286(tell) - 1 0.000 0.000 0.000 0.000 mixins.py:59(NDArrayOperatorsMixin) - 1 0.000 0.000 0.000 0.000 hermite.py:1() - 4 0.000 0.000 0.000 0.000 textwrap.py:414(dedent) - 291 0.000 0.000 0.000 0.000 sre_parse.py:172(append) - 1 0.000 0.000 0.000 0.000 hermite_e.py:1() - 26 0.000 0.000 0.000 0.000 core.py:921(__init__) - 17 0.000 0.000 0.000 0.000 :406(spec_from_loader) - 4 0.000 0.000 0.000 0.000 enum.py:932(__or__) - 240 0.000 0.000 0.000 0.000 sre_parse.py:160(__len__) - 197 0.000 0.000 0.000 0.000 :143(__init__) - 11 0.000 0.000 0.000 0.000 abc.py:89(register) - 1 0.000 0.000 0.000 0.000 pickle.py:407(_Pickler) - 1 0.000 0.000 0.000 0.000 opcode.py:37() - 1 0.000 0.000 0.000 0.000 einsumfunc.py:1() - 1 0.000 0.000 0.000 0.000 helper.py:1() - 50 0.000 0.000 0.000 0.000 _internal.py:869(_ufunc_doc_signature_formatter) - 18 0.000 0.000 0.000 0.000 core.py:997(__init__) - 1603 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects} - 40/28 0.000 0.000 0.000 0.000 sre_compile.py:461(_get_literal_prefix) - 433 0.000 0.000 0.000 0.000 {built-in method from_bytes} - 11 0.000 0.000 0.000 0.000 {built-in method _abc._abc_register} - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:100(dtype_from_ctypes_type) - 1 0.000 0.000 0.000 0.000 defchararray.py:1908(chararray) - 37 0.000 0.000 0.000 0.000 enum.py:532(_get_mixins_) - 1 0.000 0.000 0.000 0.000 token.py:1() - 73 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin} - 194 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects} - 1 0.000 0.000 0.000 0.000 __init__.py:1671(_cpu_times_deltas) - 16 0.000 0.000 0.000 0.000 _type_aliases.py:44(_bits_of) - 1 0.000 0.000 0.000 0.000 umath.py:1() - 31 0.000 0.000 0.000 0.000 sre_parse.py:224(__init__) - 14 0.000 0.000 0.000 0.000 enum.py:579(_find_new_) - 1 0.000 0.000 0.000 0.000 ast.py:405(NodeTransformer) - 31 0.000 0.000 0.000 0.000 sre_parse.py:432(_uniq) - 466 0.000 0.000 0.000 0.000 {built-in method posix.fspath} - 16 0.000 0.000 0.000 0.000 __init__.py:383(__getattr__) - 4 0.000 0.000 0.000 0.000 re.py:203(sub) - 14 0.000 0.000 0.000 0.000 {method 'sort' of 'list' objects} - 1 0.000 0.000 0.000 0.000 struct.py:3() - 144 0.000 0.000 0.000 0.000 :1004(__init__) - 1 0.000 0.000 0.000 0.000 _datasource.py:1() - 2 0.000 0.000 0.000 0.000 enum.py:889(_missing_) - 16 0.000 0.000 0.000 0.000 sre_compile.py:413() - 8 0.000 0.000 0.000 0.000 {built-in method builtins.sorted} - 7 0.000 0.000 0.000 0.000 _common.py:444(memoize_when_activated) - 192 0.000 0.000 0.000 0.000 enum.py:22(_is_dunder) - 2 0.000 0.000 0.000 0.000 enum.py:899(_create_pseudo_member_) - 177 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen} - 112 0.000 0.000 0.000 0.000 {built-in method builtins.repr} - 36 0.000 0.000 0.000 0.000 getlimits.py:91(_float_to_float) - 152 0.000 0.000 0.000 0.000 enum.py:12(_is_descriptor) - 1 0.000 0.000 0.000 0.000 core.py:6527(__new__) - 52 0.000 0.000 0.000 0.000 _add_newdocs.py:6753(refer_to_array_attribute) - 120 0.000 0.000 0.000 0.000 tensor.py:167(zero_grad) - 403 0.000 0.000 0.000 0.000 {built-in method builtins.globals} - 1 0.000 0.000 0.000 0.000 token.py:74() - 192 0.000 0.000 0.000 0.000 enum.py:33(_is_sunder) - 13 0.000 0.000 0.000 0.000 mixins.py:44(_numeric_methods) - 109 0.000 0.000 0.000 0.000 {method 'match' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 _asarray.py:1() - 1 0.000 0.000 0.000 0.000 memmap.py:1() - 17 0.000 0.000 0.000 0.000 :754(exec_module) - 51 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects} - 1 0.000 0.000 0.000 0.000 threading.py:1262(__init__) - 14 0.000 0.000 0.000 0.000 {method 'split' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 _pslinux.py:600(per_cpu_times) - 121 0.000 0.000 0.000 0.000 sre_parse.py:111(__init__) - 172 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects} - 2 0.000 0.000 0.000 0.000 enum.py:978(_decompose) - 28 0.000 0.000 0.000 0.000 sre_parse.py:84(opengroup) - 47 0.000 0.000 0.000 0.000 sre_parse.py:355(_escape) - 331 0.000 0.000 0.000 0.000 :68(_relax_case) - 218 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects} - 257 0.000 0.000 0.000 0.000 hmac.py:18() - 257 0.000 0.000 0.000 0.000 hmac.py:17() - 928 0.000 0.000 0.000 0.000 {method 'lstrip' of 'str' objects} - 37 0.000 0.000 0.000 0.000 enum.py:543(_find_data_type) - 16 0.000 0.000 0.000 0.000 __init__.py:390(__getitem__) - 1 0.000 0.000 0.000 0.000 _endian.py:1() - 288 0.000 0.000 0.000 0.000 {built-in method builtins.chr} - 1 0.000 0.000 0.000 0.000 polyutils.py:1() - 3 0.000 0.000 0.000 0.000 tokenize.py:83(_all_string_prefixes) - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:33(seterr) - 1 0.000 0.000 0.000 0.000 numerictypes.py:588(_register_types) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:211(_set_array_types) - 144 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename} - 317 0.000 0.000 0.000 0.000 __init__.py:385() - 1 0.000 0.000 0.000 0.000 bisect.py:1() - 41 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:83() - 118 0.000 0.000 0.000 0.000 sre_parse.py:81(groups) - 317 0.000 0.000 0.000 0.000 {built-in method sys.intern} - 24 0.000 0.000 0.000 0.000 sre_parse.py:295(_class_escape) - 1 0.000 0.000 0.000 0.000 __future__.py:1() - 1 0.000 0.000 0.000 0.000 selectors.py:80(BaseSelector) - 1 0.000 0.000 0.000 0.000 os.py:42(_get_exports_list) - 1 0.000 0.000 0.000 0.000 _polybase.py:18(ABCPolyBase) - 63 0.000 0.000 0.000 0.000 {method 'split' of 'bytes' objects} - 17 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin} - 1 0.000 0.000 0.000 0.000 activation.py:1() - 1 0.000 0.000 0.000 0.000 core.py:2697(MaskedArray) - 4 0.000 0.000 0.000 0.000 {built-in method builtins.print} - 98 0.000 0.000 0.000 0.000 types.py:171(__get__) - 1 0.000 0.000 0.000 0.000 numerictypes.py:440(_construct_lookups) - 82 0.000 0.000 0.000 0.000 overrides.py:121(decorator) - 36 0.000 0.000 0.000 0.000 _string_helpers.py:16(english_lower) - 14 0.000 0.000 0.000 0.000 {built-in method builtins.round} - 1 0.000 0.000 0.000 0.000 pickle.py:1136(_Unpickler) - 14 0.000 0.000 0.000 0.000 core.py:8239(_replace_return_type) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:430(__enter__) - 1 0.000 0.000 0.000 0.000 traceback.py:1() - 186 0.000 0.000 0.000 0.000 :397(has_location) - 16 0.000 0.000 0.000 0.000 {built-in method builtins.next} - 82 0.000 0.000 0.000 0.000 overrides.py:110(set_module) - 1 0.000 0.000 0.000 0.000 _psposix.py:66() - 24 0.000 0.000 0.000 0.000 numerictypes.py:513(_scalar_type_key) - 1 0.000 0.000 0.000 0.000 _compression.py:1() - 120 0.000 0.000 0.000 0.000 opcode.py:39(def_op) - 31 0.000 0.000 0.000 0.000 {built-in method _sre.compile} - 1 0.000 0.000 0.000 0.000 core.py:2808(__new__) - 176 0.000 0.000 0.000 0.000 :1465() - 76 0.000 0.000 0.000 0.000 signal.py:10() - 30 0.000 0.000 0.000 0.000 _type_aliases.py:203(_add_array_type) - 6 0.000 0.000 0.000 0.000 core.py:1146(__init__) - 1 0.000 0.000 0.000 0.000 format.py:1() - 2 0.000 0.000 0.000 0.000 enum.py:997() - 32 0.000 0.000 0.000 0.000 _type_aliases.py:46() - 1 0.000 0.000 0.000 0.000 linalg.py:74(_determine_error_states) - 4/3 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.ndarray' objects} - 4 0.000 0.000 0.000 0.000 sre_parse.py:267(getuntil) - 144 0.000 0.000 0.000 0.000 :1029(get_filename) - 3 0.000 0.000 0.000 0.000 contextlib.py:211(contextmanager) - 192 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass} - 2 0.000 0.000 0.000 0.000 posixpath.py:372(abspath) - 1 0.000 0.000 0.000 0.000 __init__.py:335(_sanity_check) - 28 0.000 0.000 0.000 0.000 {method 'expandtabs' of 'str' objects} - 3 0.000 0.000 0.000 0.000 datetime.py:1567(__new__) - 62 0.000 0.000 0.000 0.000 sre_compile.py:595(isstring) - 1 0.000 0.000 0.000 0.000 _machar.py:1() - 1 0.000 0.000 0.000 0.000 loss.py:1() - 1 0.000 0.000 0.000 0.000 datetime.py:2181(timezone) - 42 0.000 0.000 0.000 0.000 getlimits.py:101(_float_conv) - 13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:71(_from_ctypes_scalar) - 83 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects} - 18 0.000 0.000 0.000 0.000 sre_compile.py:492(_get_charset_prefix) - 36 0.000 0.000 0.000 0.000 getlimits.py:24(_fr1) - 31 0.000 0.000 0.000 0.000 {built-in method fromkeys} - 1 0.000 0.000 0.000 0.000 __init__.py:261(_reset_cache) - 3 0.000 0.000 0.000 0.000 __init__.py:498(PYFUNCTYPE) - 238 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects} - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:18(numeric_type_aliases) - 317 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects} - 2 0.000 0.000 0.000 0.000 core.py:2966(__array_finalize__) - 1 0.000 0.000 0.000 0.000 tensor.py:5(CTensor) - 1 0.000 0.000 0.000 0.000 optimizer.py:1() - 2 0.000 0.000 0.000 0.000 functools.py:525(decorating_function) - 2 0.000 0.000 0.000 0.000 contextlib.py:71(__call__) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:74(_add_types) - 7 0.000 0.000 0.000 0.000 getlimits.py:668(__init__) - 9 0.000 0.000 0.000 0.000 overrides.py:23(set_array_function_like_doc) - 2 0.000 0.000 0.000 0.000 __init__.py:75(CFUNCTYPE) - 1 0.000 0.000 0.000 0.000 pathlib.py:120(_WindowsFlavour) - 31 0.000 0.000 0.000 0.000 sre_parse.py:921(fix_flags) - 321 0.000 0.000 0.000 0.000 {method 'isidentifier' of 'str' objects} - 2 0.000 0.000 0.000 0.000 tensor.py:569(T) - 4 0.000 0.000 0.000 0.000 genericpath.py:16(exists) - 61 0.000 0.000 0.000 0.000 _inspect.py:144() - 2 0.000 0.000 0.000 0.000 arrayprint.py:503(decorating_function) - 252 0.000 0.000 0.000 0.000 {built-in method builtins.ord} - 1 0.000 0.000 0.000 0.000 arrayterator.py:1() - 1 0.000 0.000 0.000 0.000 fnmatch.py:1() - 3 0.000 0.000 0.000 0.000 _pslinux.py:596() - 85 0.000 0.000 0.000 0.000 _compat_pickle.py:167() - 63 0.000 0.000 0.000 0.000 abc.py:7(abstractmethod) - 144 0.000 0.000 0.000 0.000 :839(create_module) - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:19(type_aliases_gen) - 55 0.000 0.000 0.000 0.000 sre_parse.py:168(__setitem__) - 14 0.000 0.000 0.000 0.000 enum.py:522(_check_for_existing_members) - 72 0.000 0.000 0.000 0.000 {method 'copy' of 'numpy.ndarray' objects} - 1 0.000 0.000 0.000 0.000 inspect.py:2428(_ParameterKind) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:123(_add_integer_aliases) - 4 0.000 0.000 0.000 0.000 _common.py:400(memoize) - 17 0.000 0.000 0.000 0.000 :232(_requires_builtin_wrapper) - 1 0.000 0.000 0.000 0.000 polynomial.py:1472(Polynomial) - 14 0.000 0.000 0.000 0.000 __init__.py:141(_check_size) - 1 0.000 0.000 0.000 0.000 threading.py:761(__init__) - 6 0.000 0.000 0.000 0.000 os.py:670(__getitem__) - 4 0.000 0.000 0.000 0.000 _ufunc_config.py:435(__exit__) - 1 0.000 0.000 0.000 0.000 pathlib.py:629(PurePath) - 20 0.000 0.000 0.000 0.000 mixins.py:16(_binary_method) - 2 0.000 0.000 0.000 0.000 datetime.py:661(__neg__) - 207 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects} - 47 0.000 0.000 0.000 0.000 re.py:270(escape) - 1 0.000 0.000 0.000 0.000 core.py:3115(view) - 1 0.000 0.000 0.000 0.000 _globals.py:93(_CopyMode) - 1 0.000 0.000 0.000 0.000 _version.py:1() - 36 0.000 0.000 0.000 0.000 getlimits.py:16(_fr0) - 31 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__) - 1 0.000 0.000 0.000 0.000 _pytesttester.py:1() - 6 0.000 0.000 0.000 0.000 __init__.py:266(_assert_pid_not_reused) - 2 0.000 0.000 0.000 0.000 __init__.py:1636(_cpu_tot_time) - 93 0.000 0.000 0.000 0.000 _inspect.py:131(strseq) - 1 0.000 0.000 0.000 0.000 _dtype.py:1() - 1 0.000 0.000 0.000 0.000 _common.py:388(usage_percent) - 4 0.000 0.000 0.000 0.000 _collections_abc.py:657(get) - 5 0.000 0.000 0.000 0.000 datetime.py:411(_check_date_fields) - 2 0.000 0.000 0.000 0.000 random.py:94(__init__) - 1 0.000 0.000 0.000 0.000 numbers.py:32(Complex) - 1 0.000 0.000 0.000 0.000 _version.py:20(get_versions) - 10 0.000 0.000 0.000 0.000 sre_compile.py:432(_generate_overlap_table) - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(concatenate) - 2 0.000 0.000 0.000 0.000 core.py:6721(__init__) - 13 0.000 0.000 0.000 0.000 mixins.py:36(_inplace_binary_method) - 8 0.000 0.000 0.000 0.000 {method 'sub' of 're.Pattern' objects} - 1 0.000 0.000 0.000 0.000 numbers.py:294(Integral) - 8 0.000 0.000 0.000 0.000 _ufunc_config.py:132(geterr) - 1 0.000 0.000 0.000 0.000 __init__.py:299(loads) - 14 0.000 0.000 0.000 0.000 enum.py:370(__getattr__) - 2 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function} - 46 0.000 0.000 0.000 0.000 sre_compile.py:65(_combine_flags) - 1 0.000 0.000 0.000 0.000 core.py:6545(__array_finalize__) - 12 0.000 0.000 0.000 0.000 os.py:748(encode) - 1 0.000 0.000 0.000 0.000 ufunclike.py:16(_deprecate_out_named_y) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:151(_set_up_aliases) - 2 0.000 0.000 0.000 0.000 os.py:684(__delitem__) - 1 0.000 0.000 0.000 0.000 random.py:123(seed) - 48 0.000 0.000 0.000 0.000 {method 'encode' of 'str' objects} - 14 0.000 0.000 0.000 0.000 enum.py:175() - 1 0.000 0.000 0.000 0.000 _iotools.py:450(StringConverter) - 1 0.000 0.000 0.000 0.000 threading.py:519(set) - 1 0.000 0.000 0.000 0.000 pathlib.py:1025(Path) - 1 0.000 0.000 0.000 0.000 module.py:86(__repr__) - 1 0.000 0.000 0.000 0.000 decoder.py:332(decode) - 12 0.000 0.000 0.000 0.000 opcode.py:43(name_op) - 8 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects} - 1 0.000 0.000 0.000 0.000 _pslinux.py:118(IOPriority) - 1 0.000 0.000 0.000 0.000 __init__.py:1276() - 43 0.000 0.000 0.000 0.000 _compat_pickle.py:165() - 1 0.000 0.000 0.000 0.000 numbers.py:147(Real) - 4 0.000 0.000 0.000 0.000 warnings.py:181(_add_filter) - 2 0.000 0.000 0.000 0.000 os.py:678(__setitem__) - 14 0.000 0.000 0.000 0.000 mixins.py:26(_reflected_binary_method) - 252 0.000 0.000 0.000 0.000 inspect.py:366() - 1 0.000 0.000 0.000 0.000 os.py:46() - 2 0.000 0.000 0.000 0.000 datetime.py:1236(__new__) - 13 0.000 0.000 0.000 0.000 _internal.py:917(npy_ctypes_check) - 2 0.000 0.000 0.000 0.000 datetime.py:819(__new__) - 2 0.000 0.000 0.000 0.000 activation.py:16(__init__) - 1 0.000 0.000 0.000 0.000 datetime.py:1559(datetime) - 1 0.000 0.000 0.000 0.000 _internal.py:239(_missing_ctypes) - 5 0.000 0.000 0.000 0.000 datetime.py:424(_check_time_fields) - 14 0.000 0.000 0.000 0.000 enum.py:68(__init__) - 1 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:54(_get_platform_and_machine) - 1 0.000 0.000 0.000 0.000 __config__.py:3() - 1 0.000 0.000 0.000 0.000 sre_compile.py:416(_bytes_to_codes) - 1 0.000 0.000 0.000 0.000 polynomial.py:1076(poly1d) - 58 0.000 0.000 0.000 0.000 sre_compile.py:453(_get_iscased) - 1 0.000 0.000 0.000 0.000 _common.py:140(NicDuplex) - 1 0.000 0.000 0.000 0.000 abc.py:1() - 23 0.000 0.000 0.000 0.000 :1153(__init__) - 8 0.000 0.000 0.000 0.000 _pslinux.py:614() - 2 0.000 0.000 0.000 0.000 posixpath.py:334(normpath) - 14 0.000 0.000 0.000 0.000 {built-in method builtins.any} - 2 0.000 0.000 0.000 0.000 activation.py:8(__init__) - 78 0.000 0.000 0.000 0.000 _internal.py:880() - 1 0.000 0.000 0.000 0.000 _dtype_ctypes.py:1() - 1 0.000 0.000 0.000 0.000 legendre.py:1619(Legendre) - 2 0.000 0.000 0.000 0.000 {built-in method posix.uname} - 35 0.000 0.000 0.000 0.000 datetime.py:379(_check_int_field) - 30 0.000 0.000 0.000 0.000 functions.py:77(__init__) - 2 0.000 0.000 0.000 0.000 _collections_abc.py:664(__contains__) - 1 0.000 0.000 0.000 0.000 hermite.py:1658(Hermite) - 1 0.000 0.000 0.000 0.000 defmatrix.py:72(matrix) - 1 0.000 0.000 0.000 0.000 threading.py:750(Thread) - 9 0.000 0.000 0.000 0.000 {built-in method numpy.seterrobj} - 1 0.000 0.000 0.000 0.000 {function Random.seed at 0x7fc87e0dcee0} - 16 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects} - 5 0.000 0.000 0.000 0.000 enum.py:1015(_power_of_two) - 1 0.000 0.000 0.000 0.000 warnings.py:165(simplefilter) - 4 0.000 0.000 0.000 0.000 posixpath.py:71(join) - 1 0.000 0.000 0.000 0.000 chebyshev.py:1995(Chebyshev) - 1 0.000 0.000 0.000 0.000 threading.py:903(_set_tstate_lock) - 23 0.000 0.000 0.000 0.000 overrides.py:217(array_function_from_dispatcher) - 24 0.000 0.000 0.000 0.000 tokenize.py:94() - 101 0.000 0.000 0.000 0.000 enum.py:506() - 4 0.000 0.000 0.000 0.000 sre_parse.py:258(getwhile) - 1 0.000 0.000 0.000 0.000 pathlib.py:399(_NormalAccessor) - 6 0.000 0.000 0.000 0.000 _exceptions.py:17(_display_as_base) - 1 0.000 0.000 0.000 0.000 numeric.py:150(ones) - 96 0.000 0.000 0.000 0.000 {built-in method builtins.abs} - 1 0.000 0.000 0.000 0.000 threading.py:505(__init__) - 2 0.000 0.000 0.000 0.000 :1238(__iter__) - 2 0.000 0.000 0.000 0.000 core.py:2940(_update_from) - 1 0.000 0.000 0.000 0.000 hermite_e.py:1650(HermiteE) - 48 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 datetime.py:789(date) - 1 0.000 0.000 0.000 0.000 _common.py:152(BatteryTime) - 1 0.000 0.000 0.000 0.000 laguerre.py:1606(Laguerre) - 1 0.000 0.000 0.000 0.000 subprocess.py:638(_use_posix_spawn) - 53 0.000 0.000 0.000 0.000 {built-in method sys._getframe} - 1 0.000 0.000 0.000 0.000 threading.py:364(notify_all) - 39 0.000 0.000 0.000 0.000 enum.py:223() - 4 0.000 0.000 0.000 0.000 {method 'findall' of 're.Pattern' objects} - 70 0.000 0.000 0.000 0.000 {method 'items' of 'mappingproxy' objects} - 1 0.000 0.000 0.000 0.000 random.py:721(getrandbits) - 19 0.000 0.000 0.000 0.000 tokenize.py:58(group) - 5 0.000 0.000 0.000 0.000 _common.py:836(get_procfs_path) - 1 0.000 0.000 0.000 0.000 threading.py:222(__init__) - 1 0.000 0.000 0.000 0.000 datetime.py:1211(time) - 60 0.000 0.000 0.000 0.000 {built-in method builtins.divmod} - 1 0.000 0.000 0.000 0.000 decoder.py:284(__init__) - 1 0.000 0.000 0.000 0.000 loss.py:18(__init__) - 3 0.000 0.000 0.000 0.000 enum.py:957(_high_bit) - 1 0.000 0.000 0.000 0.000 __init__.py:187() - 55 0.000 0.000 0.000 0.000 enum.py:748(name) - 1 0.000 0.000 0.000 0.000 _type_aliases.py:41() - 1 0.000 0.000 0.000 0.000 datetime.py:469(timedelta) - 6 0.000 0.000 0.000 0.000 opcode.py:47(jrel_op) - 2 0.000 0.000 0.000 0.000 {built-in method posix.unsetenv} - 4 0.000 0.000 0.000 0.000 :1221(_get_parent_path) - 2 0.000 0.000 0.000 0.000 :1205(__init__) - 18 0.000 0.000 0.000 0.000 {built-in method _struct.calcsize} - 1 0.000 0.000 0.000 0.000 {built-in method math.exp} - 7 0.000 0.000 0.000 0.000 core.py:2544(_arraymethod) - 1 0.000 0.000 0.000 0.000 threading.py:341(notify) - 1 0.000 0.000 0.000 0.000 random.py:78(Random) - 2 0.000 0.000 0.000 0.000 {built-in method posix.putenv} - 16 0.000 0.000 0.000 0.000 _dtype.py:24(_kind_name) - 1 0.000 0.000 0.000 0.000 loss.py:7(__init__) - 1 0.000 0.000 0.000 0.000 threading.py:900(_set_native_id) - 81 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased} - 2 0.000 0.000 0.000 0.000 functools.py:487(lru_cache) - 1 0.000 0.000 0.000 0.000 {method 'dot' of 'numpy.ndarray' objects} - 18 0.000 0.000 0.000 0.000 _add_newdocs_scalars.py:79() - 1 0.000 0.000 0.000 0.000 socket.py:213(socket) - 5 0.000 0.000 0.000 0.000 opcode.py:51(jabs_op) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:441(_setdef) - 4 0.000 0.000 0.000 0.000 getlimits.py:692(max) - 1 0.000 0.000 0.000 0.000 getlimits.py:364(finfo) - 1 0.000 0.000 0.000 0.000 __init__.py:1655(_cpu_busy_time) - 2 0.000 0.000 0.000 0.000 copyreg.py:12(pickle) - 2 0.000 0.000 0.000 0.000 _collections_abc.py:72(_check_methods) - 18 0.000 0.000 0.000 0.000 {built-in method numpy.geterrobj} - 78 0.000 0.000 0.000 0.000 signal.py:22() - 1 0.000 0.000 0.000 0.000 pathlib.py:136() - 1 0.000 0.000 0.000 0.000 _common.py:634(outer) - 9 0.000 0.000 0.000 0.000 _pytesttester.py:76(__init__) - 1 0.000 0.000 0.000 0.000 _collections_abc.py:349(__subclasshook__) - 1 0.000 0.000 0.000 0.000 _datasource.py:196(DataSource) - 1 0.000 0.000 0.000 0.000 decoder.py:343(raw_decode) - 77 0.000 0.000 0.000 0.000 signal.py:17() - 33 0.000 0.000 0.000 0.000 enum.py:393() - 1 0.000 0.000 0.000 0.000 _iotools.py:229(NameValidator) - 43 0.000 0.000 0.000 0.000 enum.py:753(value) - 1 0.000 0.000 0.000 0.000 npyio.py:106(NpzFile) - 1 0.000 0.000 0.000 0.000 <__array_function__ internals>:177(copyto) - 1 0.000 0.000 0.000 0.000 os.py:766(getenv) - 25 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects} - 1 0.000 0.000 0.000 0.000 subprocess.py:688(Popen) - 1 0.000 0.000 0.000 0.000 _inspect.py:1() - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_md5} - 68 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_tolower} - 14 0.000 0.000 0.000 0.000 {method 'mro' of 'type' objects} - 2 0.000 0.000 0.000 0.000 :1225(_recalculate) - 1 0.000 0.000 0.000 0.000 {method 'tolist' of 'memoryview' objects} - 2 0.000 0.000 0.000 0.000 {built-in method builtins.sum} - 10 0.000 0.000 0.000 0.000 __future__.py:83(__init__) - 1 0.000 0.000 0.000 0.000 posixpath.py:150(dirname) - 1 0.000 0.000 0.000 0.000 bz2.py:30(BZ2File) - 13 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects} - 4 0.000 0.000 0.000 0.000 mixins.py:51(_unary_method) - 1 0.000 0.000 0.000 0.000 _internal.py:248(_ctypes) - 1 0.000 0.000 0.000 0.000 module.py:9(Module) - 1 0.000 0.000 0.000 0.000 numbers.py:267(Rational) - 1 0.000 0.000 0.000 0.000 pathlib.py:57(_Flavour) - 17 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 _internal.py:613(_Stream) - 1 0.000 0.000 0.000 0.000 parse.py:364(_fix_result_transcoding) - 2 0.000 0.000 0.000 0.000 linear.py:16(inner_repr) - 1 0.000 0.000 0.000 0.000 __init__.py:216() - 1 0.000 0.000 0.000 0.000 _pslinux.py:337() - 1 0.000 0.000 0.000 0.000 _internal.py:216(_getintp_ctype) - 1 0.000 0.000 0.000 0.000 pathlib.py:137() - 1 0.000 0.000 0.000 0.000 threading.py:376(Semaphore) - 5 0.000 0.000 0.000 0.000 _ufunc_config.py:426(__init__) - 10 0.000 0.000 0.000 0.000 enum.py:398(__members__) - 12 0.000 0.000 0.000 0.000 {method 'islower' of 'str' objects} - 1 0.000 0.000 0.000 0.000 threading.py:573(Barrier) - 2 0.000 0.000 0.000 0.000 posixpath.py:60(isabs) - 1 0.000 0.000 0.000 0.000 arrayprint.py:905(FloatingFormat) - 1 0.000 0.000 0.000 0.000 pathlib.py:285(_PosixFlavour) - 1 0.000 0.000 0.000 0.000 os.py:1073(__subclasshook__) - 3 0.000 0.000 0.000 0.000 index_tricks.py:323(__init__) - 1 0.000 0.000 0.000 0.000 _weakrefset.py:36(__init__) - 1 0.000 0.000 0.000 0.000 core.py:6517(MaskedConstant) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha1} - 1 0.000 0.000 0.000 0.000 inspect.py:2457(Parameter) - 1 0.000 0.000 0.000 0.000 _exceptions.py:99(_UFuncOutputCastingError) - 1 0.000 0.000 0.000 0.000 threading.py:1281(_DummyThread) - 1 0.000 0.000 0.000 0.000 hmac.py:26(HMAC) - 1 0.000 0.000 0.000 0.000 parse.py:154(_NetlocResultMixinBase) - 7 0.000 0.000 0.000 0.000 posixpath.py:41(_get_sep) - 1 0.000 0.000 0.000 0.000 inspect.py:2742(Signature) - 38 0.000 0.000 0.000 0.000 {built-in method _ctypes.sizeof} - 20 0.000 0.000 0.000 0.000 _inspect.py:142() - 1 0.000 0.000 0.000 0.000 pathlib.py:510(_PreciseSelector) - 1 0.000 0.000 0.000 0.000 core.py:1329(make_mask_descr) - 1 0.000 0.000 0.000 0.000 __init__.py:318(CDLL) - 1 0.000 0.000 0.000 0.000 {method 'union' of 'set' objects} - 3 0.000 0.000 0.000 0.000 datetime.py:2201(_create) - 1 0.000 0.000 0.000 0.000 index_tricks.py:264(OGridClass) - 1 0.000 0.000 0.000 0.000 datetime.py:1141(tzinfo) - 1 0.000 0.000 0.000 0.000 getlimits.py:32(MachArLike) - 1 0.000 0.000 0.000 0.000 {built-in method posix.urandom} - 1 0.000 0.000 0.000 0.000 index_tricks.py:531(__init__) - 3 0.000 0.000 0.000 0.000 {built-in method posix.getpid} - 1 0.000 0.000 0.000 0.000 arrayterator.py:16(Arrayterator) - 1 0.000 0.000 0.000 0.000 index_tricks.py:257(__init__) - 1 0.000 0.000 0.000 0.000 index_tricks.py:313(AxisConcatenator) - 1 0.000 0.000 0.000 0.000 test.py:79(MeuModulo) - 17 0.000 0.000 0.000 0.000 :771(is_package) - 21 0.000 0.000 0.000 0.000 _inspect.py:143() - 4 0.000 0.000 0.000 0.000 :1211(_find_parent_path_names) - 1 0.000 0.000 0.000 0.000 core.py:6322(mvoid) - 1 0.000 0.000 0.000 0.000 core.py:1315(_replace_dtype_fields) - 1 0.000 0.000 0.000 0.000 {built-in method _thread.get_native_id} - 1 0.000 0.000 0.000 0.000 _exceptions.py:224(_ArrayMemoryError) - 1 0.000 0.000 0.000 0.000 _version.py:14(NumpyVersion) - 36 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects} - 1 0.000 0.000 0.000 0.000 threading.py:210(Condition) - 8 0.000 0.000 0.000 0.000 getlimits.py:153(_register_type) - 1 0.000 0.000 0.000 0.000 pickle.py:200(_Framer) - 1 0.000 0.000 0.000 0.000 random.py:709(SystemRandom) - 2 0.000 0.000 0.000 0.000 core.py:6620(__setattr__) - 1 0.000 0.000 0.000 0.000 threading.py:94(_RLock) - 1 0.000 0.000 0.000 0.000 lzma.py:38(LZMAFile) - 1 0.000 0.000 0.000 0.000 extras.py:1567(__init__) - 1 0.000 0.000 0.000 0.000 records.py:223(record) - 1 0.000 0.000 0.000 0.000 test.py:97() - 1 0.000 0.000 0.000 0.000 index_tricks.py:563(__init__) - 3 0.000 0.000 0.000 0.000 datetime.py:41(_days_before_year) - 1 0.000 0.000 0.000 0.000 _datasource.py:536(Repository) - 1 0.000 0.000 0.000 0.000 dis.py:479(Bytecode) - 1 0.000 0.000 0.000 0.000 traceback.py:440(TracebackException) - 2 0.000 0.000 0.000 0.000 {built-in method posix.register_at_fork} - 1 0.000 0.000 0.000 0.000 records.py:308(recarray) - 6 0.000 0.000 0.000 0.000 _type_aliases.py:92() - 1 0.000 0.000 0.000 0.000 memmap.py:22(memmap) - 1 0.000 0.000 0.000 0.000 getlimits.py:613(iinfo) - 1 0.000 0.000 0.000 0.000 encoder.py:73(JSONEncoder) - 1 0.000 0.000 0.000 0.000 decoder.py:254(JSONDecoder) - 5 0.000 0.000 0.000 0.000 datetime.py:46(_days_in_month) - 1 0.000 0.000 0.000 0.000 _pslinux.py:789(__init__) - 1 0.000 0.000 0.000 0.000 _weakrefset.py:81(add) - 18 0.000 0.000 0.000 0.000 {method 'discard' of 'set' objects} - 1 0.000 0.000 0.000 0.000 _pslinux.py:1189(RootFsDeviceFinder) - 15 0.000 0.000 0.000 0.000 {method 'startswith' of 'bytes' objects} - 2 0.000 0.000 0.000 0.000 pathlib.py:61(__init__) - 1 0.000 0.000 0.000 0.000 {method 'view' of 'numpy.generic' objects} - 5 0.000 0.000 0.000 0.000 inspect.py:72(isclass) - 1 0.000 0.000 0.000 0.000 threading.py:249(__exit__) - 1 0.000 0.000 0.000 0.000 threading.py:246(__enter__) - 7 0.000 0.000 0.000 0.000 {built-in method builtins.vars} - 1 0.000 0.000 0.000 0.000 {built-in method numpy.empty} - 1 0.000 0.000 0.000 0.000 socket.py:626(SocketIO) - 18 0.000 0.000 0.000 0.000 {built-in method builtins.id} - 1 0.000 0.000 0.000 0.000 _machar.py:17(MachAr) - 1 0.000 0.000 0.000 0.000 index_tricks.py:306(__init__) - 1 0.000 0.000 0.000 0.000 random.py:103(__init_subclass__) - 1 0.000 0.000 0.000 0.000 core.py:6821(_frommethod) - 1 0.000 0.000 0.000 0.000 core.py:977(_MaskedBinaryOperation) - 2 0.000 0.000 0.000 0.000 {built-in method time.time} - 1 0.000 0.000 0.000 0.000 function_base.py:2117(vectorize) - 1 0.000 0.000 0.000 0.000 _internal.py:204(dummy_ctype) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1351(StructuredVoidFormat) - 1 0.000 0.000 0.000 0.000 subprocess.py:99(CalledProcessError) - 1 0.000 0.000 0.000 0.000 pickle.py:263(_Unframer) - 1 0.000 0.000 0.000 0.000 pathlib.py:601(_PathParents) - 1 0.000 0.000 0.000 0.000 threading.py:1177(_make_invoke_excepthook) - 1 0.000 0.000 0.000 0.000 core.py:191() - 1 0.000 0.000 0.000 0.000 _iotools.py:133(LineSplitter) - 1 0.000 0.000 0.000 0.000 __init__.py:255() - 1 0.000 0.000 0.000 0.000 encoder.py:104(__init__) - 1 0.000 0.000 0.000 0.000 test.py:102() - 1 0.000 0.000 0.000 0.000 ctypeslib.py:204(_concrete_ndptr) - 1 0.000 0.000 0.000 0.000 _datasource.py:99(__init__) - 1 0.000 0.000 0.000 0.000 functions.py:48(PowBackward) - 1 0.000 0.000 0.000 0.000 traceback.py:227(FrameSummary) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:30() - 1 0.000 0.000 0.000 0.000 sre_parse.py:861(_parse_flags) - 1 0.000 0.000 0.000 0.000 inspect.py:2612(BoundArguments) - 5 0.000 0.000 0.000 0.000 {method 'insert' of 'list' objects} - 1 0.000 0.000 0.000 0.000 threading.py:494(Event) - 1 0.000 0.000 0.000 0.000 parse.py:797(Quoter) - 1 0.000 0.000 0.000 0.000 records.py:87(format_parser) - 1 0.000 0.000 0.000 0.000 py3k.py:84(contextlib_nullcontext) - 1 0.000 0.000 0.000 0.000 extras.py:264(_fromnxfunction_single) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1304(DatetimeFormat) - 1 0.000 0.000 0.000 0.000 threading.py:261(_is_owned) - 1 0.000 0.000 0.000 0.000 ast.py:347(NodeVisitor) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:367(errstate) - 1 0.000 0.000 0.000 0.000 _compression.py:33(DecompressReader) - 5 0.000 0.000 0.000 0.000 module.py:97(get_name) - 1 0.000 0.000 0.000 0.000 _datasource.py:74(_FileOpeners) - 1 0.000 0.000 0.000 0.000 _globals.py:80(__new__) - 5 0.000 0.000 0.000 0.000 datetime.py:441(_check_tzinfo_arg) - 3 0.000 0.000 0.000 0.000 __init__.py:499(CFunctionType) - 3 0.000 0.000 0.000 0.000 __init__.py:405() - 1 0.000 0.000 0.000 0.000 parse.py:191(_NetlocResultMixinStr) - 1 0.000 0.000 0.000 0.000 _exceptions.py:38(_UFuncBinaryResolutionError) - 2 0.000 0.000 0.000 0.000 __init__.py:367(_FuncPtr) - 1 0.000 0.000 0.000 0.000 parse.py:221(_NetlocResultMixinBytes) - 1 0.000 0.000 0.000 0.000 _common.py:653(__init__) - 2 0.000 0.000 0.000 0.000 index_tricks.py:145(__init__) - 1 0.000 0.000 0.000 0.000 core.py:1283(_replace_dtype_fields_recursive) - 1 0.000 0.000 0.000 0.000 {method 'cast' of 'memoryview' objects} - 1 0.000 0.000 0.000 0.000 parse.py:138(_ResultMixinStr) - 1 0.000 0.000 0.000 0.000 extras.py:1519(MAxisConcatenator) - 1 0.000 0.000 0.000 0.000 __init__.py:215() - 4 0.000 0.000 0.000 0.000 core.py:3405(dtype) - 1 0.000 0.000 0.000 0.000 pathlib.py:1569(WindowsPath) - 1 0.000 0.000 0.000 0.000 index_tricks.py:619(ndindex) - 2 0.000 0.000 0.000 0.000 {built-in method maketrans} - 1 0.000 0.000 0.000 0.000 ctypeslib.py:183(_ndptr) - 1 0.000 0.000 0.000 0.000 index_tricks.py:570(ndenumerate) - 1 0.000 0.000 0.000 0.000 enum.py:389(__iter__) - 1 0.000 0.000 0.000 0.000 _pslinux.py:777(Connections) - 1 0.000 0.000 0.000 0.000 __future__.py:81(_Feature) - 1 0.000 0.000 0.000 0.000 tokenize.py:59(any) - 1 0.000 0.000 0.000 0.000 npyio.py:42(BagObj) - 1 0.000 0.000 0.000 0.000 _exceptions.py:132(AxisError) - 2 0.000 0.000 0.000 0.000 tokenize.py:60(maybe) - 1 0.000 0.000 0.000 0.000 __init__.py:1287(Popen) - 1 0.000 0.000 0.000 0.000 selectors.py:290(SelectSelector) - 1 0.000 0.000 0.000 0.000 index_tricks.py:110(nd_grid) - 1 0.000 0.000 0.000 0.000 threading.py:1230(Timer) - 2 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 pathlib.py:479(_Selector) - 2 0.000 0.000 0.000 0.000 index_tricks.py:762(__init__) - 1 0.000 0.000 0.000 0.000 {method 'find' of 'str' objects} - 1 0.000 0.000 0.000 0.000 _exceptions.py:81(_UFuncInputCastingError) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1245(ComplexFloatingFormat) - 3 0.000 0.000 0.000 0.000 core.py:1362(getmask) - 1 0.000 0.000 0.000 0.000 subprocess.py:136(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 core.py:2372(_MaskedPrintOption) - 1 0.000 0.000 0.000 0.000 _pytesttester.py:46(PytestTester) - 1 0.000 0.000 0.000 0.000 decoder.py:20(JSONDecodeError) - 1 0.000 0.000 0.000 0.000 threading.py:896(_set_ident) - 9 0.000 0.000 0.000 0.000 _globals.py:86(__repr__) - 1 0.000 0.000 0.000 0.000 selectors.py:206(_BaseSelectorImpl) - 1 0.000 0.000 0.000 0.000 traceback.py:318(StackSummary) - 1 0.000 0.000 0.000 0.000 _exceptions.py:54(_UFuncNoLoopError) - 1 0.000 0.000 0.000 0.000 selectors.py:442(EpollSelector) - 1 0.000 0.000 0.000 0.000 tokenize.py:45(TokenInfo) - 1 0.000 0.000 0.000 0.000 core.py:6712(_extrema_operation) - 1 0.000 0.000 0.000 0.000 index_tricks.py:212(MGridClass) - 1 0.000 0.000 0.000 0.000 _exceptions.py:72(_UFuncCastingError) - 6 0.000 0.000 0.000 0.000 core.py:846(__init__) - 1 0.000 0.000 0.000 0.000 core.py:8209(_convert2ma) - 5 0.000 0.000 0.000 0.000 enum.py:1009() - 1 0.000 0.000 0.000 0.000 stride_tricks.py:15(DummyArray) - 1 0.000 0.000 0.000 0.000 selectors.py:341(_PollLikeSelector) - 1 0.000 0.000 0.000 0.000 pathlib.py:557(_RecursiveWildcardSelector) - 4 0.000 0.000 0.000 0.000 core.py:6521(__has_singleton) - 1 0.000 0.000 0.000 0.000 parse.py:146(_ResultMixinBytes) - 1 0.000 0.000 0.000 0.000 parse.py:334(SplitResult) - 1 0.000 0.000 0.000 0.000 utils.py:126(_Deprecate) - 1 0.000 0.000 0.000 0.000 optimizer.py:4(Optimizer) - 1 0.000 0.000 0.000 0.000 dis.py:209(Instruction) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.set_typeDict} - 1 0.000 0.000 0.000 0.000 {built-in method posix.confstr} - 1 0.000 0.000 0.000 0.000 pathlib.py:1002(PurePosixPath) - 3 0.000 0.000 0.000 0.000 core.py:806(__init__) - 4 0.000 0.000 0.000 0.000 {built-in method _warnings._filters_mutated} - 1 0.000 0.000 0.000 0.000 linalg.py:44(LinAlgError) - 1 0.000 0.000 0.000 0.000 core.py:2589(MaskedIterator) - 2 0.000 0.000 0.000 0.000 arrayprint.py:493(_recursive_guard) - 1 0.000 0.000 0.000 0.000 _exceptions.py:32(UFuncTypeError) - 1 0.000 0.000 0.000 0.000 numbers.py:12(Number) - 1 0.000 0.000 0.000 0.000 parse.py:326(DefragResult) - 1 0.000 0.000 0.000 0.000 {built-in method posix.sysconf} - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha256} - 1 0.000 0.000 0.000 0.000 core.py:190() - 1 0.000 0.000 0.000 0.000 index_tricks.py:718(IndexExpression) - 1 0.000 0.000 0.000 0.000 _globals.py:60(_NoValueType) - 1 0.000 0.000 0.000 0.000 _compression.py:9(BaseStream) - 1 0.000 0.000 0.000 0.000 ast.py:476(_ABC) - 2 0.000 0.000 0.000 0.000 core.py:3421(shape) - 2 0.000 0.000 0.000 0.000 __init__.py:101(CFunctionType) - 1 0.000 0.000 0.000 0.000 numerictypes.py:424(_typedict) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1278(_TimelikeFormat) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1222(IntegerFormat) - 1 0.000 0.000 0.000 0.000 parse.py:353(SplitResultBytes) - 1 0.000 0.000 0.000 0.000 loss.py:4(Loss) - 1 0.000 0.000 0.000 0.000 extras.py:214(_fromnxfunction) - 1 0.000 0.000 0.000 0.000 selectors.py:60(_SelectorMapping) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1235(BoolFormat) - 1 0.000 0.000 0.000 0.000 core.py:195() - 2 0.000 0.000 0.000 0.000 __init__.py:437(__init__) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1341(SubArrayFormat) - 3 0.000 0.000 0.000 0.000 {built-in method builtins.callable} - 1 0.000 0.000 0.000 0.000 activation.py:4(Activation) - 1 0.000 0.000 0.000 0.000 _common.py:648(_WrapNumbers) - 1 0.000 0.000 0.000 0.000 index_tricks.py:436(RClass) - 1 0.000 0.000 0.000 0.000 __init__.py:153(py_object) - 1 0.000 0.000 0.000 0.000 {built-in method _thread._set_sentinel} - 1 0.000 0.000 0.000 0.000 pathlib.py:526(_WildcardSelector) - 1 0.000 0.000 0.000 0.000 numeric.py:61(ComplexWarning) - 1 0.000 0.000 0.000 0.000 pathlib.py:504(_TerminatingSelector) - 1 0.000 0.000 0.000 0.000 sgd.py:5(SGD) - 1 0.000 0.000 0.000 0.000 parse.py:345(DefragResultBytes) - 1 0.000 0.000 0.000 0.000 pickle.py:97(_Stop) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha224} - 1 0.000 0.000 0.000 0.000 threading.py:456(BoundedSemaphore) - 1 0.000 0.000 0.000 0.000 _common.py:278(Error) - 1 0.000 0.000 0.000 0.000 core.py:903(_MaskedUnaryOperation) - 1 0.000 0.000 0.000 0.000 parse.py:339(ParseResult) - 1 0.000 0.000 0.000 0.000 ast.py:505(Num) - 1 0.000 0.000 0.000 0.000 activation.py:15(Sigmoid) - 1 0.000 0.000 0.000 0.000 polyutils.py:47(RankWarning) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha384} - 1 0.000 0.000 0.000 0.000 polynomial.py:28(RankWarning) - 1 0.000 0.000 0.000 0.000 selectors.py:433(PollSelector) - 2 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 tokenize.py:162(Untokenizer) - 1 0.000 0.000 0.000 0.000 pathlib.py:1012(PureWindowsPath) - 1 0.000 0.000 0.000 0.000 ast.py:509(Str) - 1 0.000 0.000 0.000 0.000 ast.py:520(Ellipsis) - 1 0.000 0.000 0.000 0.000 _exceptions.py:118(TooHardError) - 1 0.000 0.000 0.000 0.000 copyreg.py:22(constructor) - 1 0.000 0.000 0.000 0.000 linear.py:4(Linear) - 1 0.000 0.000 0.000 0.000 pathlib.py:1562(PosixPath) - 1 0.000 0.000 0.000 0.000 _endian.py:23(_swapped_meta) - 1 0.000 0.000 0.000 0.000 pathlib.py:394(_Accessor) - 1 0.000 0.000 0.000 0.000 arrayprint.py:1336(TimedeltaFormat) - 1 0.000 0.000 0.000 0.000 threading.py:1260(_MainThread) - 1 0.000 0.000 0.000 0.000 _ufunc_config.py:360(_unspecified) - 2 0.000 0.000 0.000 0.000 {method 'end' of 're.Match' objects} - 1 0.000 0.000 0.000 0.000 index_tricks.py:538(CClass) - 1 0.000 0.000 0.000 0.000 {built-in method _hashlib.openssl_sha512} - 1 0.000 0.000 0.000 0.000 __init__.py:396(PyDLL) - 1 0.000 0.000 0.000 0.000 ast.py:517(NameConstant) - 1 0.000 0.000 0.000 0.000 ast.py:513(Bytes) - 1 0.000 0.000 0.000 0.000 parameter.py:5(Parameter) - 1 0.000 0.000 0.000 0.000 core.py:797(_DomainCheckInterval) - 1 0.000 0.000 0.000 0.000 core.py:877(_DomainGreaterEqual) - 1 0.000 0.000 0.000 0.000 core.py:2378(__init__) - 1 0.000 0.000 0.000 0.000 _internal.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 {built-in method psutil._psutil_posix.getpagesize} - 1 0.000 0.000 0.000 0.000 parse.py:358(ParseResultBytes) - 1 0.000 0.000 0.000 0.000 {method 'items' of 'collections.OrderedDict' objects} - 1 0.000 0.000 0.000 0.000 pickle.py:84(UnpicklingError) - 1 0.000 0.000 0.000 0.000 pickle.py:77(PicklingError) - 1 0.000 0.000 0.000 0.000 :1() - 3 0.000 0.000 0.000 0.000 core.py:867(__init__) - 1 0.000 0.000 0.000 0.000 subprocess.py:419(CompletedProcess) - 1 0.000 0.000 0.000 0.000 {built-in method math.sqrt} - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencoding} - 1 0.000 0.000 0.000 0.000 functions.py:3(AddBackward) - 1 0.000 0.000 0.000 0.000 core.py:194() - 3 0.000 0.000 0.000 0.000 {method 'bit_length' of 'int' objects} - 1 0.000 0.000 0.000 0.000 _iotools.py:421(ConverterError) - 1 0.000 0.000 0.000 0.000 __init__.py:436(LibraryLoader) - 1 0.000 0.000 0.000 0.000 threading.py:1095(daemon) - 1 0.000 0.000 0.000 0.000 {built-in method numpy._set_promotion_state} - 2 0.000 0.000 0.000 0.000 {method 'clear' of 'dict' objects} - 1 0.000 0.000 0.000 0.000 pickle.py:73(PickleError) - 2 0.000 0.000 0.000 0.000 core.py:883(__init__) - 1 0.000 0.000 0.000 0.000 multiarray.py:152(concatenate) - 1 0.000 0.000 0.000 0.000 loss.py:17(MSELoss) - 1 0.000 0.000 0.000 0.000 random.py:729(seed) - 1 0.000 0.000 0.000 0.000 core.py:1125(_DomainedBinaryOperation) - 1 0.000 0.000 0.000 0.000 _globals.py:33(ModuleDeprecationWarning) - 1 0.000 0.000 0.000 0.000 inspect.py:897(BlockFinder) - 2 0.000 0.000 0.000 0.000 :1286(exec_module) - 1 0.000 0.000 0.000 0.000 core.py:822(_DomainTan) - 1 0.000 0.000 0.000 0.000 _endian.py:46(BigEndianStructure) - 1 0.000 0.000 0.000 0.000 _common.py:630(deprecated_method) - 1 0.000 0.000 0.000 0.000 __init__.py:166(c_ushort) - 1 0.000 0.000 0.000 0.000 extras.py:1549(mr_class) - 1 0.000 0.000 0.000 0.000 _common.py:311(NoSuchProcess) - 1 0.000 0.000 0.000 0.000 inspect.py:2420(_void) - 2 0.000 0.000 0.000 0.000 {built-in method builtins.iter} - 1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects} - 1 0.000 0.000 0.000 0.000 core.py:840(_DomainSafeDivide) - 1 0.000 0.000 0.000 0.000 functions.py:10(SubBackward) - 1 0.000 0.000 0.000 0.000 _pslinux.py:773(_Ipv6UnsupportedError) - 1 0.000 0.000 0.000 0.000 functions.py:32(MatmulBackward) - 1 0.000 0.000 0.000 0.000 socket.py:210(_GiveupOnSendfile) - 1 0.000 0.000 0.000 0.000 core.py:830(__init__) - 1 0.000 0.000 0.000 0.000 __init__.py:162(c_short) - 1 0.000 0.000 0.000 0.000 core.py:84(MaskedArrayFutureWarning) - 1 0.000 0.000 0.000 0.000 _iotools.py:437(ConversionWarning) - 1 0.000 0.000 0.000 0.000 tokenize.py:157(TokenError) - 1 0.000 0.000 0.000 0.000 _iotools.py:429(ConverterLockError) - 1 0.000 0.000 0.000 0.000 contextlib.py:59(_recreate_cm) - 1 0.000 0.000 0.000 0.000 __init__.py:174(c_ulong) - 1 0.000 0.000 0.000 0.000 inspect.py:895(EndOfBlock) - 1 0.000 0.000 0.000 0.000 _common.py:339(AccessDenied) - 1 0.000 0.000 0.000 0.000 __init__.py:237(c_char_p) - 1 0.000 0.000 0.000 0.000 functions.py:17(ScalarMulBackward) - 1 0.000 0.000 0.000 0.000 threading.py:727(BrokenBarrierError) - 1 0.000 0.000 0.000 0.000 functions.py:25(ElementwiseMulBackward) - 1 0.000 0.000 0.000 0.000 shutil.py:89(_GiveupOnFastCopy) - 1 0.000 0.000 0.000 0.000 _globals.py:47(VisibleDeprecationWarning) - 2 0.000 0.000 0.000 0.000 module.py:83(inner_repr) - 1 0.000 0.000 0.000 0.000 functions.py:66(LogBackward) - 1 0.000 0.000 0.000 0.000 shutil.py:69(Error) - 1 0.000 0.000 0.000 0.000 core.py:861(_DomainGreater) - 1 0.000 0.000 0.000 0.000 extras.py:282(_fromnxfunction_seq) - 1 0.000 0.000 0.000 0.000 __init__.py:170(c_long) - 1 0.000 0.000 0.000 0.000 __init__.py:199(c_longdouble) - 1 0.000 0.000 0.000 0.000 _common.py:324(ZombieProcess) - 1 0.000 0.000 0.000 0.000 __init__.py:253(c_wchar_p) - 1 0.000 0.000 0.000 0.000 shutil.py:72(SameFileError) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._reload_guard} - 1 0.000 0.000 0.000 0.000 functions.py:100(DivisionBackward) - 1 0.000 0.000 0.000 0.000 __init__.py:187(c_uint) - 1 0.000 0.000 0.000 0.000 __init__.py:248(c_bool) - 1 0.000 0.000 0.000 0.000 {built-in method sys.getfilesystemencodeerrors} - 1 0.000 0.000 0.000 0.000 __init__.py:232(c_char) - 1 0.000 0.000 0.000 0.000 functions.py:84(ReshapeBackward) - 1 0.000 0.000 0.000 0.000 functions.py:76(SumBackward) - 1 0.000 0.000 0.000 0.000 functions.py:91(TransposeBackward) - 1 0.000 0.000 0.000 0.000 subprocess.py:96(SubprocessError) - 1 0.000 0.000 0.000 0.000 {method '__enter__' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 core.py:893(_MaskedUFunc) - 1 0.000 0.000 0.000 0.000 extras.py:295(_fromnxfunction_args) - 1 0.000 0.000 0.000 0.000 extras.py:320(_fromnxfunction_allargs) - 1 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects} - 1 0.000 0.000 0.000 0.000 __init__.py:220(c_ubyte) - 1 0.000 0.000 0.000 0.000 __init__.py:227(c_byte) - 1 0.000 0.000 0.000 0.000 _distributor_init.py:1() - 1 0.000 0.000 0.000 0.000 __init__.py:243(c_void_p) - 1 0.000 0.000 0.000 0.000 multiarray.py:1079(copyto) - 1 0.000 0.000 0.000 0.000 _common.py:350(TimeoutExpired) - 1 0.000 0.000 0.000 0.000 inspect.py:2424(_empty) - 1 0.000 0.000 0.000 0.000 core.py:148(MAError) - 1 0.000 0.000 0.000 0.000 __init__.py:195(c_double) - 1 0.000 0.000 0.000 0.000 __init__.py:191(c_float) - 1 0.000 0.000 0.000 0.000 shutil.py:79(ExecError) - 1 0.000 0.000 0.000 0.000 __init__.py:183(c_int) - 1 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath._set_madvise_hugepage} - 1 0.000 0.000 0.000 0.000 shutil.py:85(RegistryError) - 1 0.000 0.000 0.000 0.000 shutil.py:82(ReadError) - 1 0.000 0.000 0.000 0.000 shutil.py:75(SpecialFileError) - 1 0.000 0.000 0.000 0.000 core.py:156(MaskError) - 1 0.000 0.000 0.000 0.000 __init__.py:258(c_wchar) - 1 0.000 0.000 0.000 0.000 tokenize.py:159(StopTokenizing) - - diff --git a/profile9sem.txt b/profile9sem.txt deleted file mode 100644 index e69de29..0000000 diff --git a/test.py b/test.py index 3fc72da..7c26de2 100644 --- a/test.py +++ b/test.py @@ -20,8 +20,11 @@ if __name__ == "__main__": import random import numpy as np import psutil + from norch.utils import utils - """a = norch.Tensor([ + + + a = norch.Tensor([ [[1.234, 2.123], [3.635, 4.456], [5.678, 6.789]], [[7.890, 8.901], [9.012, 1.234], [2.345, 3.456]], [[4.567, 5.678], [6.789, 7.890], [8.901, 9.012]], @@ -29,6 +32,27 @@ if __name__ == "__main__": [[7.890, 8.901], [9.012, 1.234], [2.345, 3.456]] ], requires_grad=True) + print(a) + print(a[0, 2,0]) + + a = utils.to_torch(a) + + import torch + + b = torch.tensor([ + [[1.234, 2.123], [3.635, 4.456], [5.678, 6.789]], + [[7.890, 8.901], [9.012, 1.234], [2.345, 3.456]], + [[4.567, 5.678], [6.789, 7.890], [8.901, 9.012]], + [[1.234, 2.345], [3.456, 4.567], [5.678, 6.789]], + [[7.890, 8.901], [9.012, 1.234], [2.345, 3.456]] + ]) + + print(utils.torch_compare(a, b)) + + exit() + + """ + b = norch.Tensor([[ [1.234, 2.123, 1.5], [5.678, 6.789, 1.293], diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..fef67f5 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1 @@ +from .test_operations import * \ No newline at end of file diff --git a/tests/test_operations.py b/tests/test_operations.py new file mode 100644 index 0000000..5d46c62 --- /dev/null +++ b/tests/test_operations.py @@ -0,0 +1,186 @@ +import unittest +import norch +from norch import utils +import torch + +class TestTensorOperations(unittest.TestCase): + def test_creation_and_conversion(self): + """ + Test creation and convertion of norch tensor to pytorch + """ + norch_tensor = norch.Tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + torch_tensor = utils.to_torch(norch_tensor) + self.assertTrue(torch.is_tensor(torch_tensor)) + + def test_addition(self): + """ + Test addition two tensors: tensor1 + tensor2 + """ + norch_tensor1 = norch.Tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + norch_tensor2 = norch.Tensor([[[1, 1], [1, 1]], [[1, 1], [1, 1]]]) + norch_result = norch_tensor1 + norch_tensor2 + torch_result = utils.to_torch(norch_result) + + torch_tensor1 = torch.tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + torch_tensor2 = torch.tensor([[[1, 1], [1, 1]], [[1, 1], [1, 1]]]) + torch_expected = torch_tensor1 + torch_tensor2 + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_subtraction(self): + """ + Test subtraction of two tensors: tensor1 - tensor2 + """ + norch_tensor1 = norch.Tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + norch_tensor2 = norch.Tensor([[[1, 1], [1, 1]], [[1, 1], [1, 1]]]) + norch_result = norch_tensor1 - norch_tensor2 + torch_result = utils.to_torch(norch_result) + + torch_tensor1 = torch.tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + torch_tensor2 = torch.tensor([[[1, 1], [1, 1]], [[1, 1], [1, 1]]]) + torch_expected = torch_tensor1 - torch_tensor2 + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_division_by_scalar(self): + """ + Test division of a tensor by a scalar: tensor / scalar + """ + norch_tensor = norch.Tensor([[[2, 4], [6, -8]], [[10, 12], [14, 16]]]) + scalar = 2 + norch_result = norch_tensor / scalar + torch_result = utils.to_torch(norch_result) + + torch_tensor = torch.tensor([[[2, 4], [6, -8]], [[10, 12], [14, 16]]]) + torch_expected = torch_tensor / scalar + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_scalar_division_by_tensor(self): + """ + Test scalar division by a tensor: scalar / tensor + """ + scalar = 10 + norch_tensor = norch.Tensor([[[2, 4], [6, -8]], [[10, 12], [14, 16]]]) + norch_result = scalar / norch_tensor + torch_result = utils.to_torch(norch_result) + + torch_tensor = torch.tensor([[[2, 4], [6, -8]], [[10, 12], [14, 16]]]) + torch_expected = scalar / torch_tensor + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_matrix_multiplication(self): + """ + Test matrix multiplication: tensor1 @ tensor2 + """ + norch_tensor1 = norch.Tensor([[[1, 2], [3, 4]], [[5, 6], [7, 8]]]) + norch_tensor2 = norch.Tensor([[[1, 0], [0, 1]], [[-1, 0], [0, -1]]]) + norch_result = norch_tensor1 @ norch_tensor2 + torch_result = utils.to_torch(norch_result) + + torch_tensor1 = torch.tensor([[[1, 2], [3, 4]], [[5, 6], [7, 8]]]) + torch_tensor2 = torch.tensor([[[1, 0], [0, 1]], [[-1, 0], [0, -1]]]) + torch_expected = torch_tensor1 @ torch_tensor2 + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_elementwise_multiplication_by_scalar(self): + """ + Test elementwise multiplication of a tensor by a scalar: tensor * scalar + """ + norch_tensor = norch.Tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + scalar = 2 + norch_result = norch_tensor * scalar + torch_result = utils.to_torch(norch_result) + + torch_tensor = torch.tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + torch_expected = torch_tensor * scalar + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_elementwise_multiplication_by_tensor(self): + """ + Test elementwise multiplication of two tensors: tensor1 * tensor2 + """ + norch_tensor1 = norch.Tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + norch_tensor2 = norch.Tensor([[[2, 2], [2, 2]], [[2, 2], [2, 2]]]) + norch_result = norch_tensor1 * norch_tensor2 + torch_result = utils.to_torch(norch_result) + + torch_tensor1 = torch.tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + torch_tensor2 = torch.tensor([[[2, 2], [2, 2]], [[2, 2], [2, 2]]]) + torch_expected = torch_tensor1 * torch_tensor2 + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_reshape(self): + """ + Test reshaping of a tensor: tensor.reshape(shape) + """ + norch_tensor = norch.Tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + new_shape = [2, 4] + norch_result = norch_tensor.reshape(new_shape) + torch_result = utils.to_torch(norch_result) + + torch_tensor = torch.tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + torch_expected = torch_tensor.reshape(new_shape) + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_transpose(self): + """ + Test transposition of a tensor: tensor.transpose(dim1, dim2) + """ + norch_tensor = norch.Tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + dim1, dim2 = 0, 2 + norch_result = norch_tensor.transpose(dim1, dim2) + torch_result = utils.to_torch(norch_result) + + torch_tensor = torch.tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + torch_expected = torch_tensor.transpose(dim1, dim2) + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_logarithm(self): + """ + Test elementwise logarithm of a tensor: tensor.log() + """ + norch_tensor = norch.Tensor([[[1, 2], [3, 4]], [[5, 6], [7, 8]]]) + norch_result = norch_tensor.log() + torch_result = utils.to_torch(norch_result) + + torch_tensor = torch.tensor([[[1, 2], [3, 4]], [[5, 6], [7, 8]]]) + torch_expected = torch.log(torch_tensor) + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_sum(self): + """ + Test summation of a tensor: tensor.sum() + """ + norch_tensor = norch.Tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + norch_result = norch_tensor.sum() + torch_result = utils.to_torch(norch_result) + + torch_tensor = torch.tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + torch_expected = torch.sum(torch_tensor) + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + def test_transpose_T(self): + """ + Test transposition of a tensor: tensor.T + """ + norch_tensor = norch.Tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + norch_result = norch_tensor.T + torch_result = utils.to_torch(norch_result) + + torch_tensor = torch.tensor([[[1, 2], [3, -4]], [[5, 6], [7, 8]]]) + torch_expected = torch.transpose(torch_tensor, 0, 2) + + self.assertTrue(utils.compare_torch(torch_result, torch_expected)) + + +if __name__ == '__main__': + unittest.main()