-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.text
3437 lines (3426 loc) · 511 KB
/
profile.text
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
first-order IPS @t=0, average speed 0.00
100 particles in 2D space
custom properties: ['alpha', 'phi']
V: fixed value: [0 0]
K: <lambda> function(x, phi, alpha): vectorised: True, numba: False
python :
At line:1 char:1
+ python -m cProfile -s time src/interacting_particle_system.py > profi ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
0%| | 0/1000 [00:00<?, ?it/s]
22%|██▏ | 223/1000 [00:00<00:00, 2144.84it/s]
44%|████▍ | 438/1000 [00:00<00:00, 2061.89it/s]
64%|██████▍ | 645/1000 [00:00<00:00, 1954.41it/s]
84%|████████▍ | 841/1000 [00:00<00:00, 1409.28it/s]
100%|█████████▉| 998/1000 [00:00<00:00, 1196.01it/s]
100%|██████████| 1000/1000 [00:00<00:00, 1417.77it/s]
first-order IPS @t=1.0000000000000007, average speed 0.00
100 particles in 2D space
custom properties: ['alpha', 'phi']
V: fixed value: [0 0]
K: <lambda> function(x, phi, alpha): vectorised: True, numba: False
OutputTemplate(position=array([[[ 1.00447084, 0.55335769],
[ 0.4568051 , 0.66636873],
[ 0.40966529, 0.14702166],
...,
[ 0.17667101, 0.33768634],
[ 0.74360366, 0.24937349],
[ 0.28968548, 0.70961154]],
[[ 0.02048806, 0.89015813],
[ 0.58082216, 0.92479797],
[ 0.56120476, 0.5650484 ],
...,
[ 0.57057052, 0.38486794],
[ 0.15986367, 0.0580131 ],
[ 0.01159508, 0.92664443]],
[[ 0.57312121, 0.38457699],
[ 0.33649975, 0.39248936],
[ 0.1988463 , 0.61268279],
...,
[ 0.79558066, 0.20201145],
[ 0.01998381, 0.89374998],
[ 0.0890024 , 0.55437827]],
...,
[[ 1.00981413, 1.00732924],
[ 1.01391661, 1.00162379],
[-1.01591143, 1.0025357 ],
...,
[ 1.02322289, -1.01392218],
[ 1.01738335, 1.01659279],
[-1.00806907, 1.01465223]],
[[ 1.00377842, -1.02558968],
[-1.01852468, -1.01229886],
[ 1.02582726, -1.01501516],
...,
[ 1.00697882, -1.0202167 ],
[ 1.00519422, 1.01649477],
[ 1.01697537, -1.01547923]],
[[-1.00733121, -1.00841788],
[ 1.02700374, -1.01974358],
[ 1.01740877, 1.01804165],
...,
[ 1.00835568, -1.01026136],
[-1.00782822, 1.02434385],
[ 1.0057481 , 1.00869782]]]), index=array([[78., 90., 9., ..., 83., 82., 88.],
[ 7., 1., 70., ..., 33., 53., 3.],
[33., 79., 45., ..., 93., 7., 65.],
...,
[44., 87., 63., ..., 69., 24., 23.],
[33., 14., 60., ..., 82., 18., 93.],
[ 6., 0., 91., ..., 12., 88., 70.]]), attr_names=['position', 'index'])
Time Elapsed: 0.71952 sec
2756171 function calls (2725536 primitive calls) in 1.960 seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
9496/5246 0.225 0.000 0.247 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function}
1001 0.204 0.000 0.205 0.000 particles.py:204(pairwise_diff)
32050 0.203 0.000 0.341 0.000 inspect.py:744(cleandoc)
1001 0.064 0.000 0.064 0.000 {function SeedSequence.generate_state at 0x000002BB6D1DF400}
37 0.060 0.002 0.061 0.002 {built-in method _imp.create_dynamic}
1555 0.049 0.000 0.049 0.000 {built-in method nt.stat}
8618 0.047 0.000 0.133 0.000 inspect.py:2276(_signature_from_function)
1000 0.041 0.000 0.123 0.000 {method 'seed' of 'numpy.random.mtrand.RandomState' objects}
536405/532843 0.037 0.000 0.038 0.000 {built-in method builtins.len}
1000 0.032 0.000 0.258 0.000 output_template.py:26(append)
296437 0.031 0.000 0.031 0.000 {method 'lstrip' of 'str' objects}
8764/8725 0.030 0.000 0.186 0.000 inspect.py:2371(_signature_from_callable)
202916 0.027 0.000 0.027 0.000 {built-in method builtins.min}
322 0.027 0.000 0.027 0.000 {built-in method marshal.loads}
23427 0.025 0.000 0.043 0.000 inspect.py:2630(__init__)
2781/246 0.024 0.000 0.067 0.000 sre_parse.py:493(_parse)
216 0.023 0.000 0.360 0.002 artist.py:1422(get_setters)
33099 0.022 0.000 0.368 0.000 inspect.py:725(getdoc)
355 0.020 0.000 0.020 0.000 {built-in method builtins.compile}
118007 0.019 0.000 0.019 0.000 {built-in method builtins.getattr}
32061 0.019 0.000 0.019 0.000 {method 'expandtabs' of 'str' objects}
197780 0.019 0.000 0.021 0.000 {built-in method builtins.isinstance}
38087 0.017 0.000 0.017 0.000 {method 'split' of 'str' objects}
130359 0.017 0.000 0.017 0.000 {method 'startswith' of 'str' objects}
9096 0.017 0.000 0.017 0.000 {method 'search' of 're.Pattern' objects}
8837 0.017 0.000 0.028 0.000 inspect.py:2913(__init__)
438 0.016 0.000 0.016 0.000 {built-in method builtins.dir}
3486/241 0.015 0.000 0.040 0.000 sre_compile.py:71(_compile)
27386 0.014 0.000 0.321 0.000 artist.py:1441(is_alias)
1312/1075 0.014 0.000 0.840 0.001 {built-in method builtins.__build_class__}
290 0.014 0.000 0.015 0.000 sre_compile.py:276(_optimize_charset)
1000 0.013 0.000 0.160 0.000 particles.py:189(shuffle)
3300 0.013 0.000 0.021 0.000 <frozen importlib._bootstrap_external>:96(_path_join)
40652/40568 0.013 0.000 0.027 0.000 {method 'join' of 'str' objects}
322 0.012 0.000 0.012 0.000 {built-in method io.open_code}
216 0.011 0.000 0.238 0.001 artist.py:1347(get_aliases)
8618 0.011 0.000 0.016 0.000 inspect.py:66(get_annotations)
23948 0.010 0.000 0.015 0.000 enum.py:359(__call__)
216 0.010 0.000 0.018 0.000 artist.py:1358(<listcomp>)
4000 0.010 0.000 0.119 0.000 artist.py:1375(get_valid_values)
108586 0.010 0.000 0.010 0.000 {method 'append' of 'list' objects}
8756 0.009 0.000 0.016 0.000 inspect.py:612(unwrap)
1001 0.009 0.000 0.009 0.000 interacting_particle_system.py:497(<lambda>)
39471 0.008 0.000 0.012 0.000 sre_parse.py:164(__getitem__)
322 0.008 0.000 0.008 0.000 {method 'read' of '_io.BufferedReader' objects}
28444 0.008 0.000 0.010 0.000 inspect.py:2962(<genexpr>)
3735/510 0.008 0.000 0.009 0.000 sre_parse.py:174(getwidth)
1000 0.007 0.000 0.014 0.000 interacting_particle_system.py:286(apply_stochastic_terms)
23684 0.007 0.000 0.007 0.000 sre_parse.py:233(__next)
1000 0.007 0.000 0.007 0.000 {method 'randn' of 'numpy.random.mtrand.RandomState' objects}
1000 0.007 0.000 0.176 0.000 interacting_particle_system.py:307(shuffle)
43467 0.006 0.000 0.006 0.000 {method 'pop' of 'list' objects}
1000 0.006 0.000 0.232 0.000 interacting_particle_system.py:251(apply_controllers)
1 0.006 0.006 0.718 0.718 interacting_particle_system.py:422(evolve)
8004/6003 0.006 0.000 0.018 0.000 interacting_particle_system.py:156(get_property)
20002 0.005 0.000 0.011 0.000 sre_parse.py:254(get)
1044 0.005 0.000 0.005 0.000 {method 'reduce' of 'numpy.ufunc' objects}
7023 0.005 0.000 0.122 0.000 re.py:288(_compile)
2 0.005 0.003 0.005 0.003 {method 'read' of '_io.TextIOWrapper' objects}
19655 0.005 0.000 0.007 0.000 inspect.py:277(isfunction)
1000 0.005 0.000 0.005 0.000 {method 'shuffle' of 'numpy.random.mtrand.RandomState' objects}
42635 0.005 0.000 0.005 0.000 {method 'get' of 'dict' objects}
8725 0.005 0.000 0.195 0.000 inspect.py:3245(signature)
114 0.005 0.000 0.322 0.003 artist.py:1491(pprint_setters)
2002 0.005 0.000 0.006 0.000 interacting_particle_system.py:496(<lambda>)
2184 0.005 0.000 0.014 0.000 inspect.py:663(_finddoc)
8725 0.004 0.000 0.190 0.000 inspect.py:2991(from_callable)
676 0.004 0.000 0.066 0.000 <frozen importlib._bootstrap_external>:1527(find_spec)
16994 0.004 0.000 0.006 0.000 sre_parse.py:172(append)
476 0.004 0.000 0.072 0.000 __init__.py:653(__getitem__)
18826 0.004 0.000 0.004 0.000 {built-in method builtins.hasattr}
1004 0.004 0.000 0.017 0.000 particles.py:182(calc_speed)
1000 0.004 0.000 0.440 0.000 interacting_particle_system.py:323(update_rbm)
4000 0.004 0.000 0.008 0.000 artist.py:1448(aliased_name)
23941 0.004 0.000 0.004 0.000 enum.py:678(__new__)
45230 0.004 0.000 0.004 0.000 {built-in method builtins.callable}
30 0.004 0.000 0.018 0.001 __init__.py:759(_rc_params_in_file)
2012 0.004 0.000 0.008 0.000 _ufunc_config.py:32(seterr)
2000 0.003 0.000 0.021 0.000 interacting_particle_system.py:231(wrapper)
7428 0.003 0.000 0.003 0.000 {method 'format' of 'str' objects}
2002 0.003 0.000 0.011 0.000 interacting_particle_system.py:139(inner)
2184 0.003 0.000 0.006 0.000 inspect.py:653(_findclass)
9653 0.003 0.000 0.005 0.000 inspect.py:632(_is_wrapper)
1001 0.003 0.000 0.445 0.000 interacting_particle_system.py:351(evolve_generator)
5185 0.003 0.000 0.036 0.000 re.py:197(search)
23822 0.003 0.000 0.003 0.000 {method 'isidentifier' of 'str' objects}
11914 0.003 0.000 0.004 0.000 _mathtext.py:2469(<genexpr>)
1000 0.003 0.000 0.003 0.000 interacting_particle_system.py:300(update_states)
24942 0.003 0.000 0.003 0.000 inspect.py:2680(name)
579/241 0.003 0.000 0.068 0.000 sre_parse.py:435(_parse_sub)
3167 0.003 0.000 0.223 0.000 <__array_function__ internals>:2(concatenate)
2012 0.003 0.000 0.003 0.000 _ufunc_config.py:131(geterr)
1042 0.002 0.000 0.009 0.000 fromnumeric.py:69(_wrapreduction)
322 0.002 0.000 0.070 0.000 <frozen importlib._bootstrap_external>:950(get_code)
44 0.002 0.000 0.002 0.000 {built-in method nt.listdir}
408/6 0.002 0.000 1.245 0.208 <frozen importlib._bootstrap>:1022(_find_and_load)
398 0.002 0.000 0.076 0.000 <frozen importlib._bootstrap>:921(_find_spec)
367 0.002 0.000 0.002 0.000 {method '__exit__' of '_io._IOBase' objects}
1001 0.002 0.000 0.076 0.000 contextlib.py:76(inner)
1 0.002 0.002 0.002 0.002 {built-in method _winapi.CreateProcess}
1031 0.002 0.000 0.002 0.000 {built-in method numpy.arange}
724 0.002 0.000 0.003 0.000 functools.py:35(update_wrapper)
2247 0.002 0.000 0.002 0.000 {built-in method __new__ of type object at 0x00007FFA8019B920}
644 0.002 0.000 0.010 0.000 <frozen importlib._bootstrap_external>:380(cache_from_source)
2000 0.002 0.000 0.222 0.000 function_base.py:4762(append)
1000 0.002 0.000 0.008 0.000 numeric.py:76(zeros_like)
2000 0.002 0.000 0.225 0.000 <__array_function__ internals>:2(append)
3300 0.002 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:119(<listcomp>)
12440 0.002 0.000 0.002 0.000 {method 'endswith' of 'str' objects}
1004 0.002 0.000 0.010 0.000 fromnumeric.py:2123(sum)
101 0.002 0.000 0.007 0.000 artist.py:139(<listcomp>)
2107 0.002 0.000 0.002 0.000 {built-in method builtins.abs}
662/1 0.002 0.000 1.960 1.960 {built-in method builtins.exec}
4173 0.002 0.000 0.002 0.000 {built-in method builtins.sorted}
37/32 0.002 0.000 0.010 0.000 {built-in method _imp.exec_dynamic}
44 0.002 0.000 0.004 0.000 {built-in method builtins.eval}
782 0.001 0.000 0.003 0.000 <frozen importlib._bootstrap>:179(_get_module_lock)
19686 0.001 0.000 0.001 0.000 {built-in method builtins.ord}
2 0.001 0.001 0.001 0.001 {method 'encode' of 'str' objects}
1001 0.001 0.000 0.003 0.000 random.py:826(getrandbits)
1541/170 0.001 0.000 0.002 0.000 {built-in method _abc._abc_subclasscheck}
12832 0.001 0.000 0.001 0.000 {method 'rstrip' of 'str' objects}
5140 0.001 0.000 0.002 0.000 sre_parse.py:249(match)
1001 0.001 0.000 0.447 0.000 std.py:1174(__iter__)
6377 0.001 0.000 0.001 0.000 {built-in method builtins.setattr}
392/6 0.001 0.000 1.243 0.207 <frozen importlib._bootstrap>:664(_load_unlocked)
10003 0.001 0.000 0.001 0.000 {built-in method builtins.id}
367/366 0.001 0.000 0.071 0.000 <frozen importlib._bootstrap_external>:1390(_get_spec)
392 0.001 0.000 0.009 0.000 <frozen importlib._bootstrap>:492(_init_module_attrs)
782 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:100(acquire)
829 0.001 0.000 0.001 0.000 {built-in method _thread.allocate_lock}
2013 0.001 0.000 0.001 0.000 {built-in method numpy.seterrobj}
1006 0.001 0.000 0.006 0.000 _ufunc_config.py:429(__enter__)
33 0.001 0.000 0.001 0.000 {built-in method io.open}
776 0.001 0.000 0.006 0.000 {built-in method builtins.any}
5281 0.001 0.000 0.002 0.000 sre_parse.py:160(__len__)
5593 0.001 0.000 0.001 0.000 {method 'group' of 're.Match' objects}
782 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:125(release)
47 0.001 0.000 2.527 0.054 __init__.py:1(<module>)
1004 0.001 0.000 0.001 0.000 {built-in method numpy.zeros}
403/6 0.001 0.000 1.245 0.208 <frozen importlib._bootstrap>:987(_find_and_load_unlocked)
2000 0.001 0.000 0.010 0.000 controller.py:101(apply_to)
1004 0.001 0.000 0.012 0.000 <__array_function__ internals>:2(sum)
1000 0.001 0.000 0.010 0.000 interacting_particle_system.py:245(reset_states)
28 0.001 0.000 0.002 0.000 __init__.py:328(namedtuple)
1266 0.001 0.000 0.012 0.000 __init__.py:623(__setitem__)
8897 0.001 0.000 0.001 0.000 inspect.py:2999(parameters)
3548 0.001 0.000 0.001 0.000 sre_parse.py:111(__init__)
322 0.001 0.000 0.023 0.000 <frozen importlib._bootstrap_external>:1070(get_data)
1006 0.001 0.000 0.004 0.000 _ufunc_config.py:434(__exit__)
1000 0.001 0.000 0.003 0.000 <__array_function__ internals>:2(empty_like)
1002 0.001 0.000 0.001 0.000 {built-in method nt.urandom}
360 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:721(spec_from_file_location)
612 0.001 0.000 0.001 0.000 _inspect.py:65(getargs)
3733 0.001 0.000 0.001 0.000 inspect.py:191(isclass)
188 0.001 0.000 0.001 0.000 colors.py:1001(<listcomp>)
241 0.001 0.000 0.115 0.000 sre_compile.py:759(compile)
3252 0.001 0.000 0.002 0.000 {built-in method builtins.max}
3582 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap>:244(_verbose_message)
8756 0.001 0.000 0.001 0.000 {built-in method sys.getrecursionlimit}
459 0.001 0.000 0.003 0.000 font_manager.py:968(_json_decode)
542/86 0.001 0.000 1.101 0.013 <frozen importlib._bootstrap>:1053(_handle_fromlist)
28 0.001 0.000 0.002 0.000 util.py:182(_collapse_string_to_ranges)
241 0.001 0.000 0.004 0.000 sre_compile.py:536(_compile_info)
1061 0.001 0.000 0.001 0.000 {method 'copy' of 'numpy.ndarray' objects}
1035 0.001 0.000 0.002 0.000 <__array_function__ internals>:2(copyto)
3627/861 0.001 0.000 0.001 0.000 docstring.py:48(_recursive_subclasses)
1000 0.001 0.000 0.441 0.000 interacting_particle_system.py:343(update)
645 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:132(_path_split)
4471 0.001 0.000 0.001 0.000 artist.py:1456(<genexpr>)
1000 0.001 0.000 0.009 0.000 <__array_function__ internals>:2(zeros_like)
44 0.001 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:1578(_fill_cache)
322/5 0.001 0.000 1.243 0.249 <frozen importlib._bootstrap_external>:877(exec_module)
402 0.001 0.000 0.002 0.000 copy.py:66(copy)
1539 0.001 0.000 0.049 0.000 <frozen importlib._bootstrap_external>:140(_path_stat)
677 0.001 0.000 0.001 0.000 ntpath.py:124(splitdrive)
4 0.001 0.000 0.004 0.001 decoder.py:343(raw_decode)
4026 0.001 0.000 0.001 0.000 {built-in method numpy.geterrobj}
2184 0.001 0.000 0.001 0.000 inspect.py:199(ismethod)
92 0.001 0.000 0.010 0.000 __init__.py:1338(_preprocess_data)
2714 0.001 0.000 0.001 0.000 util.py:185(is_consecutive)
1566 0.001 0.000 0.001 0.000 {method 'match' of 're.Pattern' objects}
150 0.001 0.000 0.003 0.000 deprecation.py:133(deprecate)
286 0.001 0.000 0.003 0.000 overrides.py:89(verify_matching_signatures)
404 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:172(_path_isabs)
101 0.001 0.000 0.687 0.007 artist.py:128(_update_set_signature_and_docstring)
260/11 0.001 0.000 0.002 0.000 core.py:769(_parseNoCache)
316 0.001 0.000 0.018 0.000 overrides.py:183(decorator)
241 0.001 0.000 0.069 0.000 sre_parse.py:937(parse)
222 0.001 0.000 0.001 0.000 core.py:447(__init__)
2640 0.001 0.000 0.001 0.000 {method 'rpartition' of 'str' objects}
1678 0.001 0.000 0.001 0.000 {method 'update' of 'dict' objects}
1969 0.001 0.000 0.001 0.000 sre_parse.py:286(tell)
458 0.001 0.000 0.002 0.000 ntpath.py:61(isabs)
5778 0.001 0.000 0.001 0.000 {method 'strip' of 'str' objects}
1042 0.001 0.000 0.001 0.000 fromnumeric.py:70(<dictcomp>)
2512 0.001 0.000 0.001 0.000 {built-in method numpy.asanyarray}
392/389 0.001 0.000 0.072 0.000 <frozen importlib._bootstrap>:564(module_from_spec)
322 0.001 0.000 0.028 0.000 <frozen importlib._bootstrap_external>:670(_compile_bytecode)
322 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:585(_classify_pyc)
1338 0.001 0.000 0.002 0.000 re.py:187(match)
1 0.001 0.001 0.001 0.001 {built-in method _winapi.WaitForSingleObject}
159 0.001 0.000 0.001 0.000 colors.py:195(_to_rgba_no_colorcycle)
1935 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:134(<genexpr>)
1 0.001 0.001 0.001 0.001 {method 'readlines' of '_io._IOBase' objects}
966 0.001 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:84(_unpack_uint32)
216 0.001 0.000 0.239 0.001 artist.py:1327(__init__)
616 0.001 0.000 0.002 0.000 _inspect.py:96(getargspec)
3167 0.001 0.000 0.001 0.000 multiarray.py:148(concatenate)
1967 0.001 0.000 0.001 0.000 {built-in method from_bytes}
5950 0.001 0.000 0.001 0.000 inspect.py:2692(kind)
17 0.001 0.000 0.002 0.000 enum.py:180(__new__)
361 0.000 0.000 0.001 0.000 sre_parse.py:355(_escape)
2019 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects}
423/13 0.000 0.000 1.223 0.094 {built-in method builtins.__import__}
402 0.000 0.000 0.001 0.000 copy.py:259(_reconstruct)
127 0.000 0.000 0.056 0.000 docstring.py:36(__call__)
30 0.000 0.000 0.001 0.000 function_base.py:23(linspace)
2921 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects}
3 0.000 0.000 0.000 0.000 {built-in method _ctypes.LoadLibrary}
359 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:1522(_get_spec)
497 0.000 0.000 0.015 0.000 <frozen importlib._bootstrap_external>:150(_path_is_mode_type)
415 0.000 0.000 0.000 0.000 {method 'sub' of 're.Pattern' objects}
13 0.000 0.000 0.000 0.000 {method 'decompress' of 'zlib.Decompress' objects}
3051 0.000 0.000 0.000 0.000 {method 'keys' of 'dict' objects}
428 0.000 0.000 0.004 0.000 rcsetup.py:310(validate_color)
114 0.000 0.000 0.450 0.004 artist.py:1730(kwdoc)
1 0.000 0.000 0.000 0.000 entities.py:1(<module>)
719 0.000 0.000 0.001 0.000 sre_compile.py:423(_simple)
448 0.000 0.000 0.002 0.000 colors.py:152(to_rgba)
1 0.000 0.000 0.000 0.000 __init__.py:783(Grouper)
409 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:198(cb)
1 0.000 0.000 0.001 0.001 helpers.py:687(<dictcomp>)
1521 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:897(__exit__)
749 0.000 0.000 0.001 0.000 typing.py:972(__setattr__)
1 0.000 0.000 0.000 0.000 gridspec.py:27(GridSpecBase)
409 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap>:71(__init__)
322 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename}
766 0.000 0.000 0.000 0.000 __init__.py:879(<lambda>)
241 0.000 0.000 0.001 0.000 enum.py:986(__and__)
876 0.000 0.000 0.002 0.000 colors.py:106(_is_nth_color)
404 0.000 0.000 0.000 0.000 {built-in method nt._path_splitroot}
796 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:404(parent)
359 0.000 0.000 0.006 0.000 <frozen importlib._bootstrap_external>:510(_get_cached)
676 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:67(_relax_case)
402 0.000 0.000 0.003 0.000 core.py:492(copy)
681 0.000 0.000 0.006 0.000 <frozen importlib._bootstrap>:391(cached)
192 0.000 0.000 0.001 0.000 typing.py:146(_type_check)
284 0.000 0.000 0.002 0.000 function_base.py:475(add_newdoc)
1521 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:893(__enter__)
436 0.000 0.000 0.001 0.000 function_base.py:244(iterable)
4 0.000 0.000 0.000 0.000 {built-in method gc.collect}
160 0.000 0.000 0.001 0.000 shape_base.py:612(column_stack)
760 0.000 0.000 0.004 0.000 <frozen importlib._bootstrap_external>:1347(_path_importer_cache)
2000 0.000 0.000 0.000 0.000 function_base.py:4758(_append_dispatcher)
1745 0.000 0.000 0.000 0.000 {method 'setdefault' of 'dict' objects}
241 0.000 0.000 0.044 0.000 sre_compile.py:598(_code)
1377 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects}
164/4 0.000 0.000 0.001 0.000 arrayprint.py:751(recurser)
234/16 0.000 0.000 0.001 0.000 ast.py:412(generic_visit)
290 0.000 0.000 0.000 0.000 sre_compile.py:249(_compile_charset)
374 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap>:216(_lock_unlock_module)
2712 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock}
568/7 0.000 0.000 1.242 0.177 <frozen importlib._bootstrap>:233(_call_with_frames_removed)
690 0.000 0.000 0.000 0.000 functools.py:65(wraps)
1 0.000 0.000 0.002 0.002 pyplot.py:2025(_setup_pyplot_info_docstrings)
408 0.000 0.000 0.004 0.000 <frozen importlib._bootstrap>:169(__enter__)
322 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:618(_validate_timestamp_pyc)
2712 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock}
366 0.000 0.000 0.072 0.000 <frozen importlib._bootstrap_external>:1422(find_spec)
3 0.000 0.000 0.024 0.008 core.py:1(<module>)
1170 0.000 0.000 0.002 0.000 {built-in method _abc._abc_instancecheck}
62 0.000 0.000 0.002 0.000 deprecation.py:318(delete_parameter)
264/235 0.000 0.000 0.000 0.000 sre_compile.py:461(_get_literal_prefix)
2970 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects}
322 0.000 0.000 0.010 0.000 <frozen importlib._bootstrap_external>:1089(path_stats)
536 0.000 0.000 0.000 0.000 {built-in method numpy.array}
241 0.000 0.000 0.000 0.000 {built-in method _sre.compile}
242 0.000 0.000 0.000 0.000 sre_parse.py:224(__init__)
144 0.000 0.000 0.001 0.000 enum.py:89(__setitem__)
268 0.000 0.000 0.001 0.000 sre_parse.py:84(opengroup)
1649 0.000 0.000 0.000 0.000 {method 'items' of 'dict' objects}
393 0.000 0.000 0.001 0.000 re.py:202(sub)
104 0.000 0.000 0.000 0.000 {built-in method _abc._abc_init}
1023 0.000 0.000 0.000 0.000 sre_parse.py:81(groups)
2327 0.000 0.000 0.000 0.000 {built-in method nt.fspath}
323 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:542(_check_name_wrapper)
402 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:357(__init__)
90 0.000 0.000 0.001 0.000 typing.py:1002(__init__)
902 0.000 0.000 0.000 0.000 inspect.py:2406(<lambda>)
1 0.000 0.000 0.001 0.001 backend_agg.py:418(FigureCanvasAgg)
452 0.000 0.000 0.014 0.000 <frozen importlib._bootstrap_external>:159(_path_isfile)
731 0.000 0.000 0.000 0.000 rcsetup.py:180(validator)
19 0.000 0.000 0.000 0.000 {built-in method _imp.create_builtin}
100 0.000 0.000 0.681 0.007 artist.py:104(__init_subclass__)
1541/170 0.000 0.000 0.002 0.000 abc.py:121(__subclasscheck__)
749 0.000 0.000 0.000 0.000 typing.py:921(_is_dunder)
1170 0.000 0.000 0.002 0.000 abc.py:117(__instancecheck__)
17 0.000 0.000 0.000 0.000 enum.py:222(<setcomp>)
277 0.000 0.000 0.000 0.000 results.py:136(__new__)
1567 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects}
335 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:48(_new_module)
47 0.000 0.000 0.005 0.000 __init__.py:1294(_add_data_doc)
1586 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident}
1004 0.000 0.000 0.000 0.000 fromnumeric.py:2118(_sum_dispatcher)
428 0.000 0.000 0.003 0.000 colors.py:111(is_color_like)
108 0.000 0.000 0.000 0.000 arrayprint.py:980(__call__)
19 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin}
1 0.000 0.000 0.005 0.005 _mathtext.py:2467(<listcomp>)
67 0.000 0.000 0.000 0.000 sre_compile.py:413(<listcomp>)
402 0.000 0.000 0.000 0.000 {method '__reduce_ex__' of 'object' objects}
25/6 0.000 0.000 0.001 0.000 core.py:3795(streamline)
147 0.000 0.000 0.000 0.000 sre_parse.py:861(_parse_flags)
408 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:173(__exit__)
1035 0.000 0.000 0.000 0.000 multiarray.py:1071(copyto)
1 0.000 0.000 0.923 0.923 pyplot.py:1(<module>)
323 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1040(__init__)
17 0.000 0.000 0.005 0.000 rcsetup.py:710(validate_cycler)
692 0.000 0.000 0.000 0.000 {built-in method builtins.iter}
1000 0.000 0.000 0.000 0.000 numeric.py:72(_zeros_like_dispatcher)
32 0.000 0.000 0.004 0.000 colors.py:927(from_list)
63 0.000 0.000 0.001 0.000 core.py:3764(__init__)
211 0.000 0.000 0.000 0.000 sre_compile.py:492(_get_charset_prefix)
72/4 0.000 0.000 0.001 0.000 core.py:902(_parseCache)
481 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects}
893 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects}
1 0.000 0.000 0.000 0.000 _cm_listed.py:1(<module>)
29 0.000 0.000 0.000 0.000 pathlib.py:438(_select_from)
137 0.000 0.000 0.003 0.000 rcsetup.py:88(f)
2356 0.000 0.000 0.000 0.000 {built-in method builtins.chr}
748 0.000 0.000 0.000 0.000 sre_parse.py:168(__setitem__)
1001 0.000 0.000 0.000 0.000 particles.py:225(num)
1000 0.000 0.000 0.000 0.000 particles.py:230(index)
385 0.000 0.000 0.000 0.000 _virtualenv.py:54(find_spec)
482 0.000 0.000 0.000 0.000 sre_compile.py:595(isstring)
1 0.000 0.000 0.000 0.000 six.py:1(<module>)
192 0.000 0.000 0.000 0.000 enum.py:470(__setattr__)
616 0.000 0.000 0.000 0.000 _inspect.py:13(ismethod)
1 0.000 0.000 0.008 0.008 mathtext.py:1(<module>)
928 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects}
241 0.000 0.000 0.000 0.000 sre_parse.py:921(fix_flags)
239 0.000 0.000 0.003 0.000 rcsetup.py:282(validate_color_for_prop_cycle)
44 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1607(<setcomp>)
106 0.000 0.000 0.000 0.000 ntpath.py:77(join)
32 0.000 0.000 0.001 0.000 colors.py:287(to_rgba_array)
38 0.000 0.000 0.001 0.000 typing.py:482(Union)
2 0.000 0.000 0.000 0.000 unicode.py:63(<listcomp>)
408 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:165(__init__)
115/105 0.000 0.000 0.055 0.001 docstring.py:83(__call__)
186 0.000 0.000 0.000 0.000 sre_parse.py:432(_uniq)
7 0.000 0.000 0.000 0.000 std.py:355(format_meter)
13 0.000 0.000 0.001 0.000 docstring.py:61(<listcomp>)
1000 0.000 0.000 0.000 0.000 interacting_particle_system.py:381(continues_if)
616 0.000 0.000 0.000 0.000 _inspect.py:26(isfunction)
79 0.000 0.000 0.001 0.000 core.py:3582(__init__)
138 0.000 0.000 0.000 0.000 feature.py:118(feature_import)
44 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1485(__init__)
234/16 0.000 0.000 0.001 0.000 ast.py:406(visit)
1 0.000 0.000 0.008 0.008 numeric.py:1(<module>)
1000 0.000 0.000 0.000 0.000 multiarray.py:80(empty_like)
90 0.000 0.000 0.000 0.000 typing.py:205(_collect_type_vars)
1 0.000 0.000 0.027 0.027 _axes.py:46(Axes)
640 0.000 0.000 0.000 0.000 ast.py:247(iter_fields)
67 0.000 0.000 0.000 0.000 sre_compile.py:411(_mk_bitmap)
39 0.000 0.000 0.000 0.000 {built-in method _ctypes.POINTER}
31 0.000 0.000 0.000 0.000 inspect.py:3199(__str__)
12 0.000 0.000 0.001 0.000 __init__.py:1821(_define_aliases)
44 0.000 0.000 0.002 0.000 <frozen zipimport>:64(__init__)
1001 0.000 0.000 0.000 0.000 contextlib.py:63(_recreate_cm)
612 0.000 0.000 0.000 0.000 _inspect.py:41(iscode)
962 0.000 0.000 0.000 0.000 {method 'partition' of 'str' objects}
61 0.000 0.000 0.001 0.000 core.py:4326(__init__)
40 0.000 0.000 0.000 0.000 colors.py:1040(__init__)
2 0.000 0.000 0.003 0.001 function_base.py:1(<module>)
138 0.000 0.000 0.000 0.000 pyplot.py:2018(<genexpr>)
284 0.000 0.000 0.000 0.000 function_base.py:443(_needs_add_docstring)
124 0.000 0.000 0.001 0.000 ast.py:422(visit_Constant)
61 0.000 0.000 0.003 0.000 rcsetup.py:107(<listcomp>)
268 0.000 0.000 0.008 0.000 sre_parse.py:96(closegroup)
1051 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects}
1842 0.000 0.000 0.000 0.000 __init__.py:759(<lambda>)
63/11 0.000 0.000 0.002 0.000 core.py:3838(parseImpl)
1 0.000 0.000 0.000 0.000 _color_data.py:989(<dictcomp>)
6 0.000 0.000 0.001 0.000 enum.py:553(<listcomp>)
1 0.000 0.000 0.000 0.000 _color_data.py:1(<module>)
402 0.000 0.000 0.000 0.000 copyreg.py:100(__newobj__)
55/8 0.000 0.000 0.002 0.000 core.py:3616(leave_whitespace)
366 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:826(find_spec)
198 0.000 0.000 0.000 0.000 pyplot.py:88(_copy_docstring_and_deprecators)
44 0.000 0.000 0.003 0.000 <frozen importlib._bootstrap_external>:1334(_path_hooks)
231 0.000 0.000 0.000 0.000 rcsetup.py:140(validate_bool)
241 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__)
284 0.000 0.000 0.000 0.000 function_base.py:461(_add_docstring)
75 0.000 0.000 0.000 0.000 rcsetup.py:91(<listcomp>)
63 0.000 0.000 0.001 0.000 colors.py:999(<dictcomp>)
194/181 0.000 0.000 0.003 0.000 typing.py:305(inner)
443 0.000 0.000 0.000 0.000 {built-in method builtins.vars}
322 0.000 0.000 0.000 0.000 sre_compile.py:65(_combine_flags)
8 0.000 0.000 0.002 0.000 core.py:2669(__init__)
851 0.000 0.000 0.000 0.000 {method '__subclasses__' of 'type' objects}
432 0.000 0.000 0.000 0.000 colors.py:226(<genexpr>)
29 0.000 0.000 0.000 0.000 pathlib.py:56(parse_parts)
216 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.dragon4_positional}
227 0.000 0.000 0.000 0.000 typing.py:137(_type_convert)
35/5 0.000 0.000 0.001 0.000 core.py:3656(streamline)
2 0.000 0.000 0.000 0.000 {built-in method nt._getfinalpathname}
2 0.000 0.000 0.014 0.007 core.py:193(read_style_directory)
166 0.000 0.000 0.000 0.000 colors.py:565(__init__)
1 0.000 0.000 0.000 0.000 _mathtext_data.py:1(<module>)
97 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin}
366 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen}
40 0.000 0.000 0.000 0.000 _inspect.py:140(formatargspec)
385 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:746(find_spec)
28 0.000 0.000 0.000 0.000 __init__.py:1435(__init__)
144 0.000 0.000 0.000 0.000 enum.py:44(_is_private)
1 0.000 0.000 0.005 0.005 cm.py:39(_gen_cmap_registry)
28 0.000 0.000 0.080 0.003 core.py:2906(__init__)
743 0.000 0.000 0.000 0.000 {built-in method builtins.issubclass}
2 0.000 0.000 0.000 0.000 unicode.py:55(_chars_for_ranges)
122 0.000 0.000 0.000 0.000 inspect.py:2714(__str__)
316 0.000 0.000 0.000 0.000 overrides.py:141(array_function_dispatch)
52 0.000 0.000 0.000 0.000 core.py:889(__init__)
118 0.000 0.000 0.001 0.000 inspect.py:3007(replace)
60 0.000 0.000 0.002 0.000 __init__.py:738(_open_file_or_url)
77 0.000 0.000 0.000 0.000 {built-in method builtins.sum}
104 0.000 0.000 0.002 0.000 abc.py:105(__new__)
112/55 0.000 0.000 0.002 0.000 core.py:3703(copy)
213/110 0.000 0.000 0.001 0.000 core.py:1825(default_name)
32 0.000 0.000 0.001 0.000 _collections_abc.py:983(update)
1 0.000 0.000 0.000 0.000 markers.py:146(MarkerStyle)
275 0.000 0.000 0.000 0.000 {built-in method builtins.repr}
461 0.000 0.000 0.000 0.000 ntpath.py:34(_get_bothseps)
98 0.000 0.000 0.000 0.000 sre_parse.py:295(_class_escape)
6 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.lock' objects}
56 0.000 0.000 0.000 0.000 pathlib.py:619(__str__)
3 0.000 0.000 0.001 0.000 dataclasses.py:882(_process_class)
1 0.000 0.000 0.000 0.000 getlimits.py:94(_register_known_types)
28 0.000 0.000 0.000 0.000 __init__.py:1315(getLogger)
1 0.000 0.000 0.135 0.135 rcsetup.py:1(<module>)
28 0.000 0.000 0.013 0.000 __init__.py:837(rc_params_from_file)
783 0.000 0.000 0.000 0.000 {function RcParams.__getitem__ at 0x000002BB6E382F80}
504 0.000 0.000 0.002 0.000 {built-in method builtins.next}
39 0.000 0.000 0.000 0.000 inspect.py:1964(_signature_bound_method)
264/157 0.000 0.000 0.001 0.000 core.py:1850(name)
82 0.000 0.000 0.000 0.000 __init__.py:1842(make_alias)
475 0.000 0.000 0.000 0.000 sre_compile.py:453(_get_iscased)
63 0.000 0.000 0.000 0.000 deprecation.py:192(finalize)
186 0.000 0.000 0.000 0.000 {built-in method fromkeys}
1 0.000 0.000 0.001 0.001 _base.py:541(_AxesBase)
126 0.000 0.000 0.000 0.000 colors.py:858(__init__)
24 0.000 0.000 0.000 0.000 dviread.py:159(decorate)
9 0.000 0.000 0.000 0.000 {method 'write' of '_io.TextIOWrapper' objects}
360 0.000 0.000 0.000 0.000 utils.py:330(<genexpr>)
32 0.000 0.000 0.000 0.000 colors.py:369(<setcomp>)
1 0.000 0.000 0.000 0.000 __init__.py:713(<dictcomp>)
6 0.000 0.000 0.000 0.000 {built-in method _winapi.CloseHandle}
45 0.000 0.000 0.000 0.000 sre_parse.py:267(getuntil)
1 0.000 0.000 0.002 0.002 axes3d.py:44(Axes3D)
118 0.000 0.000 0.000 0.000 arrayprint.py:701(_extendLine)
1 0.000 0.000 0.000 0.000 {built-in method binascii.a2b_base64}
136/74 0.000 0.000 0.000 0.000 typing.py:1230(__hash__)
785 0.000 0.000 0.000 0.000 inspect.py:2684(default)
1 0.000 0.000 0.001 0.001 zipfile.py:1317(_RealGetContents)
1 0.000 0.000 0.000 0.000 mapping.py:1(<module>)
13 0.000 0.000 0.000 0.000 zipfile.py:1467(open)
26 0.000 0.000 0.000 0.000 {built-in method zlib.crc32}
1 0.000 0.000 0.022 0.022 common.py:8(pyparsing_common)
41 0.000 0.000 0.000 0.000 enum.py:590(_find_data_type)
63 0.000 0.000 0.000 0.000 deprecation.py:159(_deprecated_property)
112/55 0.000 0.000 0.002 0.000 core.py:3705(<listcomp>)
1 0.000 0.000 0.004 0.004 __init__.py:895(<dictcomp>)
145 0.000 0.000 0.000 0.000 inspect.py:850(getmodule)
138 0.000 0.000 0.000 0.000 loader.py:89(feature_import)
44 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:1619(path_hook_for_FileFinder)
37 0.000 0.000 0.062 0.002 <frozen importlib._bootstrap_external>:1174(create_module)
1 0.000 0.000 0.004 0.004 shutil.py:1(<module>)
2 0.000 0.000 0.000 0.000 arrayprint.py:896(fillFormat)
160 0.000 0.000 0.001 0.000 <__array_function__ internals>:2(column_stack)
309 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.add_docstring}
31 0.000 0.000 0.001 0.000 _base.py:68(__set_name__)
6 0.000 0.000 0.000 0.000 getlimits.py:35(__init__)
868 0.000 0.000 0.000 0.000 {method 'isupper' of 'str' objects}
35 0.000 0.000 0.000 0.000 core.py:2306(__init__)
1 0.000 0.000 0.003 0.003 defchararray.py:1(<module>)
38 0.000 0.000 0.000 0.000 typing.py:266(_remove_dups_flatten)
17 0.000 0.000 0.000 0.000 cycler.py:364(by_key)
37 0.000 0.000 0.000 0.000 core.py:2965(parseImpl)
112 0.000 0.000 0.000 0.000 arrayprint.py:715(_extendLine_pretty)
63 0.000 0.000 0.001 0.000 colors.py:980(reversed)
24 0.000 0.000 0.014 0.001 _add_newdocs_scalars.py:55(add_newdoc_for_scalar_type)
90 0.000 0.000 0.000 0.000 typing.py:933(__init__)
1 0.000 0.000 0.000 0.000 signature_bootstrap.py:94(<genexpr>)
13 0.000 0.000 0.054 0.004 docstring.py:55(__missing__)
1 0.000 0.000 0.067 0.067 helpers.py:1(<module>)
1 0.000 0.000 0.003 0.003 fromnumeric.py:1(<module>)
39 0.000 0.000 0.000 0.000 deprecation.py:352(<genexpr>)
277/275 0.000 0.000 0.000 0.000 results.py:159(__init__)
1 0.000 0.000 0.002 0.002 _add_newdocs.py:1(<module>)
62 0.000 0.000 0.001 0.000 core.py:1345(__add__)
42 0.000 0.000 0.000 0.000 __init__.py:218(__getattr__)
133 0.000 0.000 0.000 0.000 rcsetup.py:66(__call__)
1 0.000 0.000 0.000 0.000 calendar.py:1(<module>)
39 0.000 0.000 0.000 0.000 zipfile.py:736(read)
12 0.000 0.000 0.000 0.000 datetime.py:461(__new__)
35 0.000 0.000 0.000 0.000 transforms.py:1332(__init_subclass__)
10 0.000 0.000 0.000 0.000 version.py:261(__init__)
145 0.000 0.000 0.000 0.000 {built-in method builtins.all}
1 0.000 0.000 0.000 0.000 TiffTags.py:381(_populate)
13/3 0.000 0.000 0.014 0.005 signature_bootstrap.py:162(exec_module)
25 0.000 0.000 0.001 0.000 core.py:252(_trim_arity)
139 0.000 0.000 0.000 0.000 core.py:750(preParse)
143 0.000 0.000 0.000 0.000 enum.py:22(_is_dunder)
6 0.000 0.000 0.000 0.000 numeric.py:2514(extend_all)
1 0.000 0.000 0.012 0.012 multiarray.py:1(<module>)
1 0.000 0.000 0.002 0.002 numerictypes.py:1(<module>)
144 0.000 0.000 0.000 0.000 enum.py:33(_is_sunder)
27 0.000 0.000 0.000 0.000 __init__.py:1366(_fixupParents)
304 0.000 0.000 0.000 0.000 rcsetup.py:790(_convert_validator_spec)
150 0.000 0.000 0.000 0.000 deprecation.py:104(deprecated)
1 0.000 0.000 0.000 0.000 {built-in method sys.getwindowsversion}
31 0.000 0.000 0.000 0.000 _base.py:53(__init__)
26 0.000 0.000 0.000 0.000 deprecation.py:365(<listcomp>)
19 0.000 0.000 0.000 0.000 path.py:99(__init__)
2 0.000 0.000 0.000 0.000 {built-in method nt.mkdir}
191/112 0.000 0.000 0.000 0.000 typing.py:1023(__hash__)
343/153 0.000 0.000 0.000 0.000 {built-in method builtins.hash}
7 0.000 0.000 0.001 0.000 enum.py:483(_create_)
14 0.000 0.000 0.000 0.000 {method 'split' of 're.Pattern' objects}
50 0.000 0.000 0.000 0.000 _internal.py:815(_ufunc_doc_signature_formatter)
1 0.000 0.000 0.000 0.000 rcsetup.py:1244(<dictcomp>)
1 0.000 0.000 0.002 0.002 scimath.py:1(<module>)
1 0.000 0.000 0.001 0.001 rrule.py:1(<module>)
1 0.000 0.000 0.000 0.000 umath.py:1(<module>)
245 0.000 0.000 0.000 0.000 {built-in method time.time}
26 0.000 0.000 0.000 0.000 pathlib.py:567(_parse_args)
82 0.000 0.000 0.000 0.000 core.py:2257(__init__)
16 0.000 0.000 0.002 0.000 rcsetup.py:618(cycler)
13 0.000 0.000 0.001 0.000 zipfile.py:980(_read1)
1 0.000 0.000 0.000 0.000 colors.py:77(<dictcomp>)
323 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1065(get_filename)
24 0.000 0.000 0.001 0.000 typing.py:1206(__getitem__)
17 0.000 0.000 0.000 0.000 enum.py:626(_find_new_)
763 0.000 0.000 0.000 0.000 {built-in method builtins.globals}
392 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:412(has_location)
27 0.000 0.000 0.000 0.000 artist.py:23(allow_rasterization)
32 0.000 0.000 0.000 0.000 {built-in method numpy.asarray}
128 0.000 0.000 0.000 0.000 core.py:1704(set_whitespace_chars)
29 0.000 0.000 0.001 0.000 deprecation.py:259(rename_parameter)
30 0.000 0.000 0.000 0.000 getlimits.py:41(<lambda>)
1 0.000 0.000 0.002 0.002 hmac.py:1(<module>)
34 0.000 0.000 0.000 0.000 functools.py:518(decorating_function)
1 0.000 0.000 0.005 0.005 socket.py:1(<module>)
211 0.000 0.000 0.000 0.000 socket.py:93(<lambda>)
208 0.000 0.000 0.000 0.000 socket.py:78(<lambda>)
352 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1491(<genexpr>)
131 0.000 0.000 0.000 0.000 core.py:1908(__eq__)
2 0.000 0.000 0.005 0.002 shape_base.py:1(<module>)
63 0.000 0.000 0.000 0.000 deprecation.py:181(finalize)
49 0.000 0.000 0.000 0.000 {built-in method numpy.empty}
209 0.000 0.000 0.000 0.000 socket.py:83(<lambda>)
45 0.000 0.000 0.000 0.000 pathlib.py:606(_format_parsed_parts)
1 0.000 0.000 0.000 0.000 mathtext.py:37(<dictcomp>)
1 0.000 0.000 0.000 0.000 _parser.py:241(parserinfo)
146 0.000 0.000 0.000 0.000 textwrap.py:485(prefixed_lines)
210 0.000 0.000 0.000 0.000 socket.py:88(<lambda>)
1 0.000 0.000 0.004 0.004 linalg.py:1(<module>)
312 0.000 0.000 0.000 0.000 typing.py:1008(<genexpr>)
242 0.000 0.000 0.000 0.000 core.py:3595(<genexpr>)
2 0.000 0.000 1.961 0.981 interacting_particle_system.py:1(<module>)
28 0.000 0.000 0.000 0.000 __init__.py:2071(getLogger)
21 0.000 0.000 0.001 0.000 core.py:588(set_parse_action)
93 0.000 0.000 0.000 0.000 exceptions.py:24(__init__)
16 0.000 0.000 0.000 0.000 dataclasses.py:723(_get_field)
3 0.000 0.000 0.002 0.001 patches.py:2163(<listcomp>)
212 0.000 0.000 0.000 0.000 transforms.py:1337(<genexpr>)
42 0.000 0.000 0.000 0.000 results.py:533(copy)
160 0.000 0.000 0.000 0.000 shape_base.py:608(_column_stack_dispatcher)
160 0.000 0.000 0.000 0.000 shape_base.py:207(_arrays_for_stack_dispatcher)
221 0.000 0.000 0.000 0.000 typing.py:1017(__eq__)
1 0.000 0.000 0.118 0.118 patches.py:1(<module>)
31 0.000 0.000 0.000 0.000 warnings.py:458(__enter__)
1 0.000 0.000 0.014 0.014 Image.py:1(<module>)
26 0.000 0.000 0.000 0.000 contextlib.py:252(contextmanager)
1 0.000 0.000 0.006 0.006 _mathtext.py:1(<module>)
322 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:874(create_module)
1 0.000 0.000 0.000 0.000 _compat_pickle.py:1(<module>)
243 0.000 0.000 0.000 0.000 {built-in method sys.intern}
48 0.000 0.000 0.000 0.000 inspect.py:2696(replace)
88 0.000 0.000 0.000 0.000 six.py:146(__init__)
13 0.000 0.000 0.000 0.000 zipfile.py:788(__init__)
41 0.000 0.000 0.000 0.000 enum.py:579(_get_mixins_)
37/32 0.000 0.000 0.010 0.000 <frozen importlib._bootstrap_external>:1182(exec_module)
1 0.000 0.000 0.000 0.000 datetime.py:1(<module>)
353 0.000 0.000 0.000 0.000 {built-in method unicodedata.east_asian_width}
2 0.000 0.000 0.002 0.001 polynomial.py:1(<module>)
1 0.000 0.000 0.007 0.007 font_manager.py:1(<module>)
1 0.000 0.000 0.000 0.000 zipfile.py:774(ZipExtFile)
1 0.000 0.000 0.025 0.025 colors.py:1(<module>)
1 0.000 0.000 0.055 0.055 legend.py:1(<module>)
34 0.000 0.000 0.000 0.000 ntpath.py:289(expanduser)
1 0.000 0.000 0.000 0.000 TiffTags.py:1(<module>)
212 0.000 0.000 0.000 0.000 transforms.py:1343(<genexpr>)
16 0.000 0.000 0.000 0.000 cycler.py:206(_from_iter)
38 0.000 0.000 0.001 0.000 typing.py:1130(copy_with)
1 0.000 0.000 0.002 0.002 tz.py:1(<module>)
17 0.000 0.000 0.000 0.000 enum.py:165(__prepare__)
24/12 0.000 0.000 0.001 0.000 core.py:4085(parseImpl)
1 0.000 0.000 0.000 0.000 arrayprint.py:1(<module>)
72 0.000 0.000 0.000 0.000 util.py:111(set_)
34 0.000 0.000 0.000 0.000 contextlib.py:102(__init__)
1 0.000 0.000 0.001 0.001 _type_aliases.py:1(<module>)
87 0.000 0.000 0.000 0.000 enum.py:12(_is_descriptor)
1 0.000 0.000 0.001 0.001 core.py:392(ParserElement)
114 0.000 0.000 0.000 0.000 TiffTags.py:26(__new__)
1 0.000 0.000 0.000 0.000 ctypeslib.py:365(<dictcomp>)
4/2 0.000 0.000 0.068 0.034 pyplot.py:206(switch_backend)
1 0.000 0.000 0.218 0.218 _axes.py:1(<module>)
1 0.000 0.000 0.002 0.002 backend_qt.py:1(<module>)
146/39 0.000 0.000 0.000 0.000 core.py:1855(__str__)
1 0.000 0.000 0.000 0.000 contour.py:76(ContourLabeler)
20 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:421(spec_from_loader)
93 0.000 0.000 0.095 0.001 re.py:249(compile)
34 0.000 0.000 0.000 0.000 numeric.py:149(ones)
2 0.000 0.000 0.000 0.000 {built-in method nt.scandir}
181 0.000 0.000 0.000 0.000 {method 'values' of 'mappingproxy' objects}
156 0.000 0.000 0.000 0.000 typing.py:1225(__eq__)
18 0.000 0.000 0.001 0.000 core.py:4866(parseImpl)
1 0.000 0.000 0.001 0.001 animation.py:1(<module>)
14 0.000 0.000 0.001 0.000 core.py:116(doc_note)
34 0.000 0.000 0.000 0.000 contextlib.py:139(__exit__)
3 0.000 0.000 0.004 0.001 version.py:1(<module>)
1 0.000 0.000 0.000 0.000 unicode.py:111(<listcomp>)
29/8 0.000 0.000 0.003 0.000 core.py:4356(leave_whitespace)
51 0.000 0.000 0.000 0.000 rcsetup.py:360(validate_fontsize)
1 0.000 0.000 0.145 0.145 backend_bases.py:1(<module>)
141 0.000 0.000 0.000 0.000 cycler.py:239(__iter__)
3 0.000 0.000 0.005 0.002 utils.py:1(<module>)
1 0.000 0.000 0.001 0.001 random.py:1(<module>)
93 0.000 0.000 0.000 0.000 inspect.py:1872(_signature_get_user_defined_method)
1 0.000 0.000 0.000 0.000 transforms.py:1895(Affine2D)
2 0.000 0.000 0.000 0.000 interacting_particle_system.py:475(__str__)
1 0.000 0.000 0.002 0.002 npyio.py:1(<module>)
38 0.000 0.000 0.000 0.000 core.py:2962(_generateDefaultName)
30 0.000 0.000 0.000 0.000 {method 'any' of 'numpy.generic' objects}
20 0.000 0.000 0.000 0.000 colors.py:1080(reversed)
24 0.000 0.000 0.000 0.000 os.py:674(__getitem__)
2 0.000 0.000 0.000 0.000 glob.py:128(_iterdir)
42 0.000 0.000 0.000 0.000 pathlib.py:147(splitroot)
110 0.000 0.000 0.000 0.000 arrayprint.py:946(<genexpr>)
15 0.000 0.000 0.000 0.000 arrayprint.py:1527(_guarded_repr_or_str)
110 0.000 0.000 0.000 0.000 arrayprint.py:951(<genexpr>)
24 0.000 0.000 0.000 0.000 deprecation.py:144(finalize)
9 0.000 0.000 0.001 0.000 dataclasses.py:412(_create_fn)
1 0.000 0.000 0.113 0.113 axes3d.py:1(<module>)
30 0.000 0.000 0.000 0.000 numerictypes.py:358(issubdtype)
30 0.000 0.000 0.000 0.000 {built-in method _locale._get_locale_encoding}
28 0.000 0.000 0.000 0.000 pathlib.py:743(stem)
5 0.000 0.000 0.001 0.000 std.py:1212(update)
55 0.000 0.000 0.002 0.000 core.py:3624(<listcomp>)
2 0.000 0.000 0.000 0.000 util.py:1(<module>)
38 0.000 0.000 0.000 0.000 typing.py:252(_deduplicate)
1 0.000 0.000 0.000 0.000 _cm.py:1(<module>)
33 0.000 0.000 0.001 0.000 {method 'decode' of 'bytes' objects}
2 0.000 0.000 0.004 0.002 ElementTree.py:1(<module>)
1 0.000 0.000 0.001 0.001 extras.py:1(<module>)
2 0.000 0.000 0.000 0.000 {built-in method nt.access}
1 0.000 0.000 0.002 0.002 pickle.py:1(<module>)
19 0.000 0.000 0.002 0.000 arrayprint.py:468(wrapper)
1 0.000 0.000 0.000 0.000 winterm.py:22(WinTerm)
2 0.000 0.000 0.000 0.000 {built-in method nt._add_dll_directory}
3 0.000 0.000 0.000 0.000 {built-in method nt.putenv}
1 0.000 0.000 0.001 0.001 twodim_base.py:1(<module>)
26 0.000 0.000 0.000 0.000 core.py:6755(getdoc)
28 0.000 0.000 0.000 0.000 rcsetup.py:64(<dictcomp>)
31 0.000 0.000 0.000 0.000 warnings.py:477(__exit__)
125 0.000 0.000 0.000 0.000 typing.py:514(<genexpr>)
12 0.000 0.000 0.000 0.000 __init__.py:65(check_isinstance)
14 0.000 0.000 0.000 0.000 typing.py:1121(__getitem__)
3 0.000 0.000 0.000 0.000 six.py:882(wrapper)
1 0.000 0.000 0.000 0.000 hermite_e.py:1(<module>)
6 0.000 0.000 0.002 0.000 enum.py:536(_convert_)
14 0.000 0.000 0.000 0.000 utils.py:222(_is_ascii)
44 0.000 0.000 0.000 0.000 core.py:1837(set_name)
14 0.000 0.000 0.000 0.000 copyreg.py:109(_slotnames)
60 0.000 0.000 0.000 0.000 numerictypes.py:284(issubclass_)
1 0.000 0.000 0.009 0.009 index_tricks.py:1(<module>)
1 0.000 0.000 0.000 0.000 {built-in method _socket.gethostname}
1 0.000 0.000 0.001 0.001 parse.py:1(<module>)
1 0.000 0.000 0.002 0.002 dates.py:1(<module>)
18/2 0.000 0.000 0.000 0.000 arrayprint.py:333(_leading_trailing)
3 0.000 0.000 0.000 0.000 ansi.py:26(__init__)
24 0.000 0.000 0.000 0.000 core.py:3880(_generateDefaultName)
148 0.000 0.000 0.000 0.000 __init__.py:402(<genexpr>)
30 0.000 0.000 0.000 0.000 fromnumeric.py:2268(any)
144 0.000 0.000 0.000 0.000 core.py:1917(__hash__)
212 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects}
13 0.000 0.000 0.000 0.000 {built-in method zlib.decompressobj}
31 0.000 0.000 0.000 0.000 std.py:233(__call__)
1 0.000 0.000 0.037 0.037 polar.py:1(<module>)
1 0.000 0.000 0.000 0.000 cp437.py:1(<module>)
1 0.000 0.000 0.000 0.000 {built-in method winreg.ConnectRegistry}
1 0.000 0.000 0.001 0.001 type_check.py:1(<module>)
19 0.000 0.000 0.000 0.000 __init__.py:132(check_shape)
1 0.000 0.000 0.000 0.000 dviread.py:177(Dvi)
28 0.000 0.000 0.000 0.000 {method 'fullmatch' of 're.Pattern' objects}
1 0.000 0.000 0.023 0.023 lines.py:1(<module>)
1 0.000 0.000 0.001 0.001 backend_agg.py:1(<module>)
44 0.000 0.000 0.000 0.000 core.py:132(get_object_signature)
1 0.000 0.000 0.000 0.000 core.py:2706(MaskedArray)
1 0.000 0.000 0.467 0.467 figure.py:1(<module>)
124 0.000 0.000 0.000 0.000 {method 'splitlines' of 'str' objects}
1 0.000 0.000 0.120 0.120 widgets.py:1(<module>)
31 0.000 0.000 0.000 0.000 inspect.py:1990(_signature_is_builtin)
20 0.000 0.000 0.000 0.000 core.py:952(reset_cache)
7 0.000 0.000 0.000 0.000 _parser.py:309(_convert)
1 0.000 0.000 0.000 0.000 {built-in method winreg.OpenKeyEx}
1 0.000 0.000 0.006 0.006 _mathtext.py:1882(Parser)
24 0.000 0.000 0.000 0.000 sre_compile.py:432(_generate_overlap_table)
20 0.000 0.000 0.001 0.000 core.py:4756(parseImpl)
32 0.000 0.000 0.000 0.000 __init__.py:219(_acquireLock)
39 0.000 0.000 0.013 0.000 _add_newdocs_scalars.py:62(<genexpr>)
1 0.000 0.000 0.339 0.339 colorbar.py:1(<module>)
32 0.000 0.000 0.001 0.000 __init__.py:620(__init__)
1 0.000 0.000 0.001 0.001 dviread.py:1(<module>)
14 0.000 0.000 0.000 0.000 typing.py:1191(__getitem_inner__)
51/38 0.000 0.000 0.002 0.000 typing.py:400(__getitem__)
135 0.000 0.000 0.000 0.000 textwrap.py:482(predicate)
7 0.000 0.000 0.000 0.000 std.py:1460(format_dict)
2 0.000 0.000 0.025 0.013 common.py:1(<module>)
56 0.000 0.000 0.000 0.000 types.py:176(__get__)
28 0.000 0.000 0.000 0.000 pathlib.py:964(_make_child_relpath)
9 0.000 0.000 0.001 0.000 patches.py:2262(__init_subclass__)
1 0.000 0.000 0.050 0.050 _base.py:1(<module>)
17 0.000 0.000 0.000 0.000 enum.py:569(_check_for_existing_members)
1 0.000 0.000 0.002 0.002 pathlib.py:1(<module>)
1 0.000 0.000 0.001 0.001 _internal.py:1(<module>)
5 0.000 0.000 0.000 0.000 deprecation.py:418(make_keyword_only)
1 0.000 0.000 0.061 0.061 art3d.py:1(<module>)
45 0.000 0.000 0.000 0.000 pathlib.py:629(__fspath__)
45 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:164(_path_isdir)
145 0.000 0.000 0.000 0.000 inspect.py:182(ismodule)
42 0.000 0.000 0.000 0.000 core.py:281(wrapper)
1 0.000 0.000 0.030 0.030 image.py:1(<module>)
10 0.000 0.000 0.000 0.000 __init__.py:391(__getitem__)
1 0.000 0.000 0.001 0.001 nanfunctions.py:1(<module>)
1 0.000 0.000 0.000 0.000 threading.py:1(<module>)
85 0.000 0.000 0.000 0.000 core.py:3881(<genexpr>)
16 0.000 0.000 0.000 0.000 core.py:4061(__init__)
1 0.000 0.000 0.001 0.001 figure.py:181(FigureBase)
1 0.000 0.000 0.000 0.000 _polybase.py:18(ABCPolyBase)
84 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects}
34 0.000 0.000 0.000 0.000 functools.py:479(lru_cache)
1 0.000 0.000 0.145 0.145 collections.py:1(<module>)
1 0.000 0.000 0.003 0.003 PngImagePlugin.py:1(<module>)
15 0.000 0.000 0.000 0.000 deprecation.py:244(__set_name__)
1 0.000 0.000 0.001 0.001 _methods.py:1(<module>)
1 0.000 0.000 0.008 0.008 _parser.py:1(<module>)
1 0.000 0.000 0.000 0.000 {built-in method _thread.start_new_thread}
16 0.000 0.000 0.000 0.000 cycler.py:52(_process_keys)
4 0.000 0.000 0.002 0.000 {built-in method builtins.print}
1 0.000 0.000 0.000 0.000 process.py:1(<module>)
41 0.000 0.000 0.000 0.000 pathlib.py:598(_from_parsed_parts)
1 0.000 0.000 0.000 0.000 _type_aliases.py:94(_add_aliases)
19 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:254(_requires_builtin_wrapper)
48 0.000 0.000 0.000 0.000 traceback.py:288(__getitem__)
1 0.000 0.000 0.000 0.000 axis.py:602(Axis)
154 0.000 0.000 0.000 0.000 core.py:1693(leave_whitespace)
1 0.000 0.000 0.001 0.001 helpers.py:587(_makeTags)
1 0.000 0.000 0.002 0.002 std.py:846(__init__)
1 0.000 0.000 0.000 0.000 zipfile.py:1(<module>)
1 0.000 0.000 0.003 0.003 subprocess.py:1(<module>)
7 0.000 0.000 0.000 0.000 std.py:1164(__str__)
1 0.000 0.000 0.004 0.004 scale.py:1(<module>)
16 0.000 0.000 0.000 0.000 _type_aliases.py:58(bitname)
257 0.000 0.000 0.000 0.000 hmac.py:19(<genexpr>)
1 0.000 0.000 0.000 0.000 encoder.py:1(<module>)
1 0.000 0.000 0.061 0.061 qt_compat.py:1(<module>)
18 0.000 0.000 0.000 0.000 zipfile.py:344(__init__)
1 0.000 0.000 0.179 0.179 contour.py:1(<module>)
167 0.000 0.000 0.000 0.000 {built-in method sys._getframe}
2 0.000 0.000 0.001 0.001 dataclasses.py:1334(make_dataclass)
16 0.000 0.000 0.000 0.000 pathlib.py:587(_from_parts)
136 0.000 0.000 0.000 0.000 core.py:3782(<genexpr>)
1 0.000 0.000 0.000 0.000 reduction.py:1(<module>)
1 0.000 0.000 0.003 0.003 exceptions.py:1(<module>)
10/3 0.000 0.000 0.001 0.000 unicode.py:14(__get__)
47 0.000 0.000 0.000 0.000 core.py:2336(parseImpl)
24/7 0.000 0.000 0.001 0.000 core.py:4386(streamline)
1 0.000 0.000 0.000 0.000 _string_helpers.py:9(<listcomp>)
1 0.000 0.000 0.001 0.001 win32.py:1(<module>)
1 0.000 0.000 0.000 0.000 path.py:24(Path)
20 0.000 0.000 0.001 0.000 core.py:4933(parseImpl)
2 0.000 0.000 0.000 0.000 types.py:69(new_class)
1 0.000 0.000 0.001 0.001 _pocketfft.py:1(<module>)
67 0.000 0.000 0.000 0.000 {method 'translate' of 'bytearray' objects}
104 0.000 0.000 0.000 0.000 docstring.py:90(copy)
16 0.000 0.000 0.000 0.000 cycler.py:135(__init__)
12 0.000 0.000 0.000 0.000 __init__.py:1862(get_aliased_and_aliases)
104 0.000 0.000 0.000 0.000 docstring.py:92(do_copy)
19 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:770(create_module)
1 0.000 0.000 0.000 0.000 {built-in method winreg.OpenKey}
1 0.000 0.000 0.000 0.000 pickle.py:197(<listcomp>)
1 0.000 0.000 0.066 0.066 backend_qtagg.py:1(<module>)
17 0.000 0.000 0.000 0.000 enum.py:82(__init__)
257 0.000 0.000 0.000 0.000 hmac.py:20(<genexpr>)
37 0.000 0.000 0.000 0.000 rcsetup.py:438(_validate_linestyle)
12/5 0.000 0.000 0.001 0.000 core.py:4069(streamline)
27 0.000 0.000 0.000 0.000 {built-in method _codecs.utf_8_decode}
4 0.000 0.000 0.000 0.000 ntpath.py:463(normpath)
34 0.000 0.000 0.002 0.000 contextlib.py:130(__enter__)
1 0.000 0.000 0.000 0.000 utils.py:246(_screen_shape_windows)
1 0.000 0.000 0.000 0.000 wintypes.py:143(WIN32_FIND_DATAA)
60 0.000 0.000 0.000 0.000 patches.py:2193(_register_style)
1 0.000 0.000 0.000 0.000 helpers.py:1044(<listcomp>)
1 0.000 0.000 0.000 0.000 backend_bases.py:1653(FigureCanvasBase)
1 0.000 0.000 0.006 0.006 std.py:1(<module>)
168 0.000 0.000 0.000 0.000 rcsetup.py:59(func)
13 0.000 0.000 0.001 0.000 typing.py:522(Optional)
2 0.000 0.000 0.000 0.000 fnmatch.py:80(translate)
13 0.000 0.000 0.000 0.000 zipfile.py:1032(close)
50 0.000 0.000 0.001 0.000 traceback.py:301(line)
1 0.000 0.000 0.003 0.003 backend_tools.py:1(<module>)
11 0.000 0.000 0.003 0.000 core.py:1069(parse_string)
10 0.000 0.000 0.001 0.000 core.py:2782(_generateDefaultName)
4 0.000 0.000 0.001 0.000 arrayprint.py:485(_array2string)
26 0.000 0.000 0.000 0.000 core.py:916(__init__)
3 0.000 0.000 0.000 0.000 dataclasses.py:529(_init_fn)
31 0.000 0.000 0.000 0.000 warnings.py:437(__init__)
3 0.000 0.000 0.000 0.000 enum.py:1026(_decompose)
1 0.000 0.000 0.000 0.000 wintypes.py:1(<module>)
94 0.000 0.000 0.000 0.000 core.py:1861(streamline)
49 0.000 0.000 0.000 0.000 results.py:191(__getitem__)
1 0.000 0.000 0.001 0.001 fontconfig_pattern.py:62(__init__)
1 0.000 0.000 0.001 0.001 core.py:5775(<listcomp>)
34 0.000 0.000 0.000 0.000 contextlib.py:279(helper)
306 0.000 0.000 0.000 0.000 __init__.py:688(__iter__)
3 0.000 0.000 0.000 0.000 deprecation.py:459(<listcomp>)
30 0.000 0.000 0.001 0.000 pathlib.py:1021(glob)
1 0.000 0.000 0.000 0.000 lines.py:198(Line2D)
1 0.000 0.000 0.024 0.024 text.py:1(<module>)
10 0.000 0.000 0.000 0.000 std.py:104(acquire)
13 0.000 0.000 0.000 0.000 zipfile.py:1016(_read2)
1 0.000 0.000 0.000 0.000 __init__.py:48(create_string_buffer)
1 0.000 0.000 0.002 0.002 subprocess.py:753(__init__)
1 0.000 0.000 0.006 0.006 artist.py:1(<module>)
8 0.000 0.000 0.000 0.000 weakref.py:105(__init__)
1 0.000 0.000 0.000 0.000 legend.py:284(Legend)
1 0.000 0.000 0.023 0.023 quiver.py:1(<module>)
2 0.000 0.000 0.015 0.007 {_init_pyside_extension}
1 0.000 0.000 0.022 0.022 _add_newdocs_scalars.py:1(<module>)
130 0.000 0.000 0.000 0.000 cycler.py:227(<genexpr>)
54 0.000 0.000 0.000 0.000 six.py:182(_add_module)
90 0.000 0.000 0.000 0.000 _inspect.py:131(strseq)
1 0.000 0.000 0.049 0.049 offsetbox.py:1(<module>)
1 0.000 0.000 0.000 0.000 _formlayout.py:1(<module>)
3 0.000 0.000 0.002 0.001 patches.py:2159(pprint_styles)
30 0.000 0.000 0.000 0.000 {method 'reshape' of 'numpy.ndarray' objects}
1 0.000 0.000 0.000 0.000 pyplot.py:2058(<listcomp>)
120 0.000 0.000 0.000 0.000 patches.py:2177(<genexpr>)
1 0.000 0.000 0.007 0.007 cm.py:1(<module>)
159 0.000 0.000 0.000 0.000 {method '__contains__' of 'frozenset' objects}
30 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(any)
4 0.000 0.000 0.000 0.000 arrayprint.py:416(_get_format_function)
1 0.000 0.000 0.002 0.002 transforms.py:1(<module>)
16 0.000 0.000 0.000 0.000 core.py:2811(parseImpl)
114 0.000 0.000 0.000 0.000 {method 'read' of '_io.BytesIO' objects}
19 0.000 0.000 0.000 0.000 path.py:191(_update_values)
9 0.000 0.000 0.000 0.000 sre_compile.py:416(_bytes_to_codes)
7 0.000 0.000 0.001 0.000 std.py:1478(display)
1 0.000 0.000 0.002 0.002 synchronize.py:1(<module>)
10 0.000 0.000 0.000 0.000 std.py:108(release)
6 0.000 0.000 0.000 0.000 __init__.py:193(caching_module_getattr)
30 0.000 0.000 0.000 0.000 pathlib.py:708(name)
29 0.000 0.000 0.000 0.000 os.py:746(encodekey)
1 0.000 0.000 0.013 0.013 cli.py:1(<module>)
1 0.000 0.000 0.001 0.001 context.py:1(<module>)
2 0.000 0.000 0.000 0.000 interacting_particle_system.py:175(add_controller)
1 0.000 0.000 0.012 0.012 _pickle.py:1(<module>)
13 0.000 0.000 0.000 0.000 std.py:288(format_interval)
47 0.000 0.000 0.000 0.000 six.py:110(__init__)
1 0.000 0.000 0.000 0.000 pyplot.py:2006(get_plot_commands)
187 0.000 0.000 0.000 0.000 {built-in method _sre.unicode_iscased}
1 0.000 0.000 0.007 0.007 platform.py:1(<module>)
1 0.000 0.000 0.000 0.000 mlab.py:1(<module>)
1 0.000 0.000 0.059 0.059 geo.py:1(<module>)
10 0.000 0.000 0.000 0.000 version.py:444(_cmpkey)
1 0.000 0.000 0.000 0.000 model.py:1(<module>)
1 0.000 0.000 0.000 0.000 patches.py:26(Patch)
6 0.000 0.000 0.000 0.000 textwrap.py:422(dedent)
75 0.000 0.000 0.000 0.000 overrides.py:122(decorator)
30 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(result_type)
17 0.000 0.000 0.000 0.000 arrayprint.py:1534(_array_str_implementation)
30 0.000 0.000 0.001 0.000 <__array_function__ internals>:2(linspace)
7 0.000 0.000 0.000 0.000 std.py:188(__format__)
30 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(ndim)
47 0.000 0.000 0.000 0.000 {method 'issuperset' of 'set' objects}
70 0.000 0.000 0.000 0.000 {method 'translate' of 'str' objects}
64 0.000 0.000 0.000 0.000 typing.py:1217(<genexpr>)
75 0.000 0.000 0.000 0.000 overrides.py:111(set_module)
1 0.000 0.000 0.001 0.001 uuid.py:1(<module>)
108 0.000 0.000 0.000 0.000 patches.py:2170(<genexpr>)
6 0.000 0.000 0.000 0.000 colors.py:1479(make_norm_from_scale)
1 0.000 0.000 0.000 0.000 {method 'rand' of 'numpy.random.mtrand.RandomState' objects}
49 0.000 0.000 0.000 0.000 core.py:2324(_generateDefaultName)
16 0.000 0.000 0.000 0.000 cycler.py:474(_cycler)
2 0.000 0.000 0.000 0.000 {built-in method nt.unsetenv}
14 0.000 0.000 0.000 0.000 hashlib.py:126(__get_openssl_constructor)
10 0.000 0.000 0.001 0.000 extras.py:239(getdoc)
161 0.000 0.000 0.000 0.000 util.py:196(escape_re_range_char)
23 0.000 0.000 0.000 0.000 core.py:4925(__init__)
1 0.000 0.000 0.000 0.000 getlimits.py:1(<module>)
8 0.000 0.000 0.000 0.000 threading.py:90(RLock)
13 0.000 0.000 0.000 0.000 _dtype_ctypes.py:100(dtype_from_ctypes_type)
32 0.000 0.000 0.000 0.000 __init__.py:228(_releaseLock)
1 0.000 0.000 0.013 0.013 loader.py:1(<module>)