-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathprofiling_stats.txt
1014 lines (1010 loc) · 77.3 KB
/
profiling_stats.txt
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
861485887 function calls (715187414 primitive calls) in 270.435 seconds
Ordered by: internal time
ncalls tottime percall cumtime percall filename:lineno(function)
135088244/6003 142.871 0.000 268.064 0.045 copy.py:128(deepcopy)
859576 39.783 0.000 139.074 0.000 copy.py:200(_deepcopy_list)
10356430/6031 31.850 0.000 268.042 0.044 copy.py:226(_deepcopy_dict)
271905946 14.182 0.000 14.182 0.000 {method 'get' of 'dict' objects}
160987474 7.650 0.000 7.650 0.000 {built-in method builtins.id}
113213717 6.442 0.000 6.442 0.000 copy.py:182(_deepcopy_atomic)
1730605/865570 6.345 0.000 261.219 0.000 copy.py:258(_reconstruct)
95867760 5.149 0.000 5.149 0.000 {method 'append' of 'list' objects}
12946611 4.716 0.000 6.357 0.000 copy.py:242(_keep_alive)
10380442 3.282 0.000 3.282 0.000 {method 'items' of 'dict' objects}
12378703 1.227 0.000 1.227 0.000 {built-in method builtins.getattr}
3461210 1.173 0.000 3.592 0.000 copy.py:263(<genexpr>)
2603 0.911 0.000 0.911 0.000 {built-in method builtins.print}
1730605 0.776 0.000 0.776 0.000 {method '__reduce_ex__' of 'object' objects}
10646723 0.646 0.000 0.646 0.000 {built-in method builtins.issubclass}
1730605 0.506 0.000 0.668 0.000 copyreg.py:94(__newobj__)
1730608 0.467 0.000 0.467 0.000 {method 'update' of 'dict' objects}
6000 0.422 0.000 270.103 0.045 simulation.py:103(partial_state_update)
8915931 0.370 0.000 0.370 0.000 {method '__deepcopy__' of 'decimal.Decimal' objects}
3464623 0.312 0.000 0.312 0.000 {built-in method builtins.isinstance}
1 0.286 0.286 0.286 0.286 {built-in method _pickle.dump}
1731007 0.166 0.000 0.166 0.000 {built-in method builtins.hasattr}
1730633 0.162 0.000 0.162 0.000 {built-in method __new__ of type object at 0x00007FFE3C3AE670}
48000 0.109 0.000 0.265 0.000 simulation.py:37(policy_scope_tuner)
6000 0.105 0.000 0.567 0.000 simulation.py:24(get_policy_input)
18000 0.077 0.000 0.970 0.000 simulation.py:124(state_scope_tuner)
24403 0.040 0.000 0.052 0.000 {built-in method _functools.reduce}
6000 0.039 0.000 0.333 0.000 simulation.py:36(get_col_results)
48000 0.029 0.000 0.294 0.000 simulation.py:42(<lambda>)
6000 0.020 0.000 0.038 0.000 simulation.py:71(apply_env_proc)
6000 0.019 0.000 0.066 0.000 simulation.py:63(<dictcomp>)
48000 0.019 0.000 0.023 0.000 simulation.py:56(<lambda>)
18400 0.018 0.000 0.047 0.000 simulation.py:44(compose)
24000 0.018 0.000 0.988 0.000 simulation.py:123(generate_record)
400 0.017 0.000 270.120 0.675 simulation.py:150(state_update_pipeline)
6000 0.013 0.000 0.013 0.000 simulation.py:133(transfer_missing_fields)
2400 0.013 0.000 0.015 0.000 revenue.py:6(revenue_amt)
6000 0.012 0.000 0.015 0.000 simulation.py:91(<dictcomp>)
307 0.011 0.000 0.011 0.000 portfolio_behaviors.py:19(<listcomp>)
307 0.011 0.000 0.011 0.000 delegator_behaviors.py:53(<listcomp>)
747 0.010 0.000 0.010 0.000 {built-in method builtins.sum}
162049 0.009 0.000 0.009 0.000 {method 'keys' of 'dict' objects}
400 0.009 0.000 0.026 0.000 portfolio_behaviors.py:4(delegate_portfolio)
42800 0.008 0.000 0.008 0.000 __init__.py:136(p_identity)
400 0.007 0.000 0.171 0.000 delegator_behaviors.py:31(delegate)
400 0.007 0.000 0.254 0.001 bookkeeping.py:1(set_block_number)
18400 0.007 0.000 0.029 0.000 simulation.py:46(<lambda>)
307 0.006 0.000 0.149 0.000 delegator_behaviors.py:94(process_delegation_event)
44/1 0.005 0.000 0.027 0.027 {built-in method builtins.exec}
44 0.005 0.000 0.005 0.000 {built-in method io.open_code}
400 0.004 0.000 0.161 0.000 revenue.py:112(store_indexing_revenue)
36800 0.004 0.000 0.004 0.000 __init__.py:50(<lambda>)
400 0.004 0.000 0.081 0.000 delegator_behaviors.py:113(undelegate)
63 0.004 0.000 0.004 0.000 {pandas._libs.lib.maybe_convert_objects}
24000 0.004 0.000 0.004 0.000 utils.py:27(engine_exception)
400 0.004 0.000 0.137 0.000 revenue.py:136(store_query_revenue)
6000 0.004 0.000 0.004 0.000 simulation.py:57(<dictcomp>)
400 0.004 0.000 0.127 0.000 indexer_behaviors.py:6(get_stake_deposited_events)
11200 0.003 0.000 0.003 0.000 __init__.py:146(<lambda>)
5 0.002 0.000 0.005 0.001 {pandas._libs.lib.fast_unique_multiple_list_gen}
191 0.002 0.000 0.002 0.000 {built-in method nt.stat}
6066 0.002 0.000 0.002 0.000 construction.py:862(<genexpr>)
49 0.002 0.000 0.002 0.000 delegator_behaviors.py:119(<listcomp>)
5 0.002 0.000 0.002 0.000 {pandas._libs.lib.dicts_to_array}
400 0.002 0.000 0.002 0.000 portfolio_behaviors.py:46(undelegate_portfolio)
80 0.002 0.000 0.002 0.000 {built-in method builtins.__build_class__}
281 0.001 0.000 0.001 0.000 portfolio.py:4(__init__)
355 0.001 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:91(_path_join)
44 0.001 0.000 0.001 0.000 {built-in method marshal.loads}
6000 0.001 0.000 0.001 0.000 simulation.py:92(<dictcomp>)
400 0.001 0.000 0.010 0.000 revenue.py:70(distribute_revenue_to_pool)
1 0.001 0.001 270.121 270.121 simulation.py:185(run_pipeline)
400 0.001 0.000 0.011 0.000 revenue.py:43(distribute_revenue_to_indexer)
400 0.001 0.000 0.008 0.000 subgraph_behaviors.py:8(create_allocations)
5 0.001 0.000 0.001 0.000 construction.py:869(<listcomp>)
400 0.001 0.000 0.001 0.000 delegator_behaviors.py:16(undelegate_actions)
400 0.001 0.000 0.001 0.000 indexer_behaviors.py:18(get_delegation_parameter_events)
400 0.001 0.000 0.001 0.000 subgraph_behaviors.py:3(allocation_created_events)
400 0.001 0.000 0.001 0.000 delegator_behaviors.py:24(withdraw_actions)
400 0.001 0.000 0.001 0.000 subgraph_behaviors.py:32(allocation_closed_events)
400 0.001 0.000 0.001 0.000 delegator_behaviors.py:8(delegate_actions)
400 0.001 0.000 0.004 0.000 indexer_behaviors.py:43(cumulative_deposited_stake)
400 0.001 0.000 0.005 0.000 indexer_behaviors.py:63(store_delegation_parameters)
1 0.001 0.001 0.001 0.001 {built-in method _imp.create_dynamic}
400 0.001 0.000 0.001 0.000 delegator_behaviors.py:182(withdraw)
400 0.001 0.000 0.001 0.000 revenue.py:97(cumulative_non_indexer_revenue)
70 0.001 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:1505(find_spec)
44 0.001 0.000 0.001 0.000 {method 'read' of '_io.BufferedReader' objects}
400 0.001 0.000 0.001 0.000 subgraph_behaviors.py:37(close_allocations)
281 0.001 0.000 0.001 0.000 delegator.py:8(__init__)
400 0.001 0.000 0.001 0.000 revenue.py:35(mint_GRT)
400 0.001 0.000 0.001 0.000 portfolio_behaviors.py:65(withdraw_portfolio)
2 0.000 0.000 0.001 0.000 {built-in method io.open}
44 0.000 0.000 0.009 0.000 <frozen importlib._bootstrap_external>:916(get_code)
22 0.000 0.000 0.001 0.000 managers.py:1015(iset)
47 0.000 0.000 0.006 0.000 <frozen importlib._bootstrap>:901(_find_spec)
2409/2148 0.000 0.000 0.000 0.000 {built-in method builtins.len}
26/4 0.000 0.000 0.007 0.002 generic.py:6186(fillna)
1 0.000 0.000 270.151 270.151 run.py:6(run)
45 0.000 0.000 0.000 0.000 {method '__exit__' of '_io._IOBase' objects}
8 0.000 0.000 0.000 0.000 {built-in method nt.listdir}
88 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:361(cache_from_source)
6 0.000 0.000 0.000 0.000 managers.py:1943(_stack_arrays)
48/1 0.000 0.000 0.028 0.028 <frozen importlib._bootstrap>:1002(_find_and_load)
46 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:486(_init_module_attrs)
16/9 0.000 0.000 0.001 0.000 base.py:375(__new__)
46/1 0.000 0.000 0.028 0.028 <frozen importlib._bootstrap>:659(_load_unlocked)
1 0.000 0.000 270.137 270.137 __init__.py:68(execute)
928 0.000 0.000 0.000 0.000 generic.py:43(_check)
355 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:114(<listcomp>)
48/1 0.000 0.000 0.028 0.028 <frozen importlib._bootstrap>:967(_find_and_load_unlocked)
35 0.000 0.000 0.001 0.000 construction.py:463(sanitize_array)
145 0.000 0.000 0.000 0.000 generic.py:5480(__setattr__)
22 0.000 0.000 0.002 0.000 blocks.py:430(fillna)
100 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:166(_get_module_lock)
46 0.000 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:1374(_get_spec)
27 0.000 0.000 0.000 0.000 revenue.py:148(calculate_revenue_to_indexer_pool)
1 0.000 0.000 270.123 270.123 execution.py:112(local_simulations)
623 0.000 0.000 0.000 0.000 {method 'is_zero' of 'decimal.Decimal' objects}
100 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:87(acquire)
62 0.000 0.000 0.000 0.000 blocks.py:1875(get_block_type)
30 0.000 0.000 0.000 0.000 generic.py:5426(__finalize__)
26 0.000 0.000 0.003 0.000 managers.py:276(apply)
1336 0.000 0.000 0.000 0.000 {method 'endswith' of 'str' objects}
113 0.000 0.000 0.000 0.000 {built-in method numpy.empty}
32 0.000 0.000 0.000 0.000 cast.py:1586(maybe_cast_to_datetime)
88 0.000 0.000 0.000 0.000 {built-in method builtins.max}
143/79 0.000 0.000 0.028 0.000 <frozen importlib._bootstrap>:1033(_handle_fromlist)
57 0.000 0.000 0.000 0.000 generic.py:230(__init__)
30 0.000 0.000 0.001 0.000 blocks.py:1916(new_block)
46 0.000 0.000 0.001 0.000 series.py:315(__init__)
24 0.000 0.000 0.001 0.000 frame.py:3871(_get_item_cache)
11 0.000 0.000 0.015 0.001 frame.py:573(__init__)
49 0.000 0.000 0.000 0.000 delegator.py:49(set_undelegated_tokens)
670 0.000 0.000 0.000 0.000 {method 'values' of 'dict' objects}
23 0.000 0.000 0.000 0.000 managers.py:970(iget)
100 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:112(release)
951 0.000 0.000 0.000 0.000 {method 'startswith' of 'str' objects}
44 0.000 0.000 0.006 0.000 <frozen importlib._bootstrap_external>:1036(get_data)
25 0.000 0.000 0.002 0.000 frame.py:3418(__getitem__)
400 0.000 0.000 0.000 0.000 {method 'copy' of 'dict' objects}
10 0.000 0.000 0.002 0.000 subgraph.py:18(ROI_query)
10 0.000 0.000 0.003 0.000 subgraph.py:14(ROI_indexing)
52 0.000 0.000 0.000 0.000 cast.py:1474(maybe_infer_to_datetimelike)
44/1 0.000 0.000 0.028 0.028 <frozen importlib._bootstrap_external>:844(exec_module)
46 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap>:558(module_from_spec)
88 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:127(_path_split)
5 0.000 0.000 0.013 0.003 construction.py:726(to_arrays)
45 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:696(spec_from_file_location)
27/5 0.000 0.000 0.008 0.002 _decorators.py:302(wrapper)
33 0.000 0.000 0.000 0.000 {built-in method builtins.any}
53 0.000 0.000 0.000 0.000 blocks.py:1843(maybe_coerce_values)
3/1 0.000 0.000 0.000 0.000 sre_parse.py:493(_parse)
63 0.000 0.000 0.000 0.000 numeric.py:289(full)
22 0.000 0.000 0.001 0.000 series.py:1216(_maybe_update_cacher)
5 0.000 0.000 0.001 0.000 managers.py:1804(_form_blocks)
1 0.000 0.000 0.000 0.000 concat.py:564(_get_concat_axis)
69 0.000 0.000 0.000 0.000 {built-in method builtins.all}
44 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:560(_classify_pyc)
33 0.000 0.000 0.000 0.000 {method 'reduce' of 'numpy.ufunc' objects}
22 0.000 0.000 0.001 0.000 generic.py:4214(_update_inplace)
43 0.000 0.000 0.000 0.000 base.py:41(shape)
44 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:645(_compile_bytecode)
6 0.000 0.000 0.000 0.000 managers.py:224(_rebuild_blknos_and_blklocs)
1153 0.000 0.000 0.000 0.000 {method 'rstrip' of 'str' objects}
22 0.000 0.000 0.000 0.000 putmask.py:29(putmask_inplace)
54 0.000 0.000 0.000 0.000 revenue.py:15(<listcomp>)
52 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:203(_lock_unlock_module)
76/72 0.000 0.000 0.000 0.000 {built-in method numpy.core._multiarray_umath.implement_array_function}
71 0.000 0.000 0.000 0.000 generic.py:5464(__getattr__)
62 0.000 0.000 0.000 0.000 common.py:190(is_sparse)
8 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1556(_fill_cache)
11/1 0.000 0.000 0.000 0.000 sre_compile.py:71(_compile)
5 0.000 0.000 0.009 0.002 construction.py:838(_list_of_dict_to_arrays)
22 0.000 0.000 0.001 0.000 blocks.py:1811(convert)
45 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1500(_get_spec)
63 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(copyto)
10 0.000 0.000 0.000 0.000 typing.py:831(copy_with)
371 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:231(_verbose_message)
22 0.000 0.000 0.000 0.000 cast.py:1312(soft_convert_objects)
22 0.000 0.000 0.001 0.000 frame.py:3894(_maybe_cache_changed)
167 0.000 0.000 0.000 0.000 construction.py:369(extract_array)
49 0.000 0.000 0.000 0.000 base.py:4537(__contains__)
44 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:593(_validate_timestamp_pyc)
264 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:129(<genexpr>)
4 0.000 0.000 0.010 0.002 __init__.py:172(create_matrix_field)
132 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:79(_unpack_uint32)
1 0.000 0.000 0.006 0.006 __init__.py:185(generate_config)
69 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:145(_path_is_mode_type)
7 0.000 0.000 0.000 0.000 {pandas._libs.lib.infer_dtype}
22 0.000 0.000 0.000 0.000 {built-in method pandas._libs.missing.isnaobj}
191 0.000 0.000 0.002 0.000 <frozen importlib._bootstrap_external>:135(_path_stat)
48 0.000 0.000 0.000 0.000 series.py:627(name)
48 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:156(__enter__)
89 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap>:385(cached)
32 0.000 0.000 0.004 0.000 construction.py:971(convert)
45 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:491(_get_cached)
444 0.000 0.000 0.000 0.000 {method 'join' of 'str' objects}
73 0.000 0.000 0.000 0.000 common.py:1578(_is_dtype_type)
34 0.000 0.000 0.000 0.000 construction.py:671(_try_cast)
46 0.000 0.000 0.000 0.000 base.py:5696(_maybe_cast_indexer)
46 0.000 0.000 0.000 0.000 base.py:3317(get_loc)
5 0.000 0.000 0.004 0.001 construction.py:875(_finalize_columns_and_data)
94 0.000 0.000 0.000 0.000 {built-in method _thread.allocate_lock}
1 0.000 0.000 270.122 270.122 simulation.py:207(simulation)
23 0.000 0.000 0.000 0.000 frame.py:3855(_box_col_values)
22 0.000 0.000 0.000 0.000 missing.py:259(_isna_string_dtype)
19/3 0.000 0.000 0.000 0.000 {built-in method _abc._abc_subclasscheck}
20/1 0.000 0.000 0.028 0.028 {built-in method builtins.__import__}
301 0.000 0.000 0.000 0.000 {method 'rpartition' of 'str' objects}
4 0.000 0.000 0.002 0.001 connection.py:10(<module>)
49 0.000 0.000 0.000 0.000 series.py:577(name)
46 0.000 0.000 0.005 0.000 <frozen importlib._bootstrap_external>:1406(find_spec)
60 0.000 0.000 0.000 0.000 typing.py:703(__setattr__)
22 0.000 0.000 0.001 0.000 missing.py:221(_isna_array)
47 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:58(__init__)
1 0.000 0.000 270.122 270.122 execution.py:14(single_proc_exec)
90 0.000 0.000 0.000 0.000 typing.py:269(inner)
33 0.000 0.000 0.000 0.000 common.py:388(is_timedelta64_dtype)
44 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:523(_check_name_wrapper)
22 0.000 0.000 0.001 0.000 blocks.py:510(_maybe_downcast)
76 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1337(_path_importer_cache)
26 0.000 0.000 0.000 0.000 _validators.py:348(validate_fillna_kwargs)
105/103 0.000 0.000 0.000 0.000 {built-in method numpy.asarray}
27 0.000 0.000 0.000 0.000 _decorators.py:214(_format_argument_list)
155 0.000 0.000 0.000 0.000 {pandas._libs.lib.is_list_like}
47 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:185(cb)
1 0.000 0.000 0.004 0.004 __init__.py:8(<module>)
45 0.000 0.000 0.000 0.000 blocks.py:2011(ensure_block_shape)
23 0.000 0.000 0.000 0.000 cast.py:2147(can_hold_element)
10 0.000 0.000 0.000 0.000 typing.py:729(__init__)
136 0.000 0.000 0.000 0.000 _validators.py:213(validate_bool_kwarg)
29 0.000 0.000 0.000 0.000 generic.py:5535(_protect_consolidate)
22 0.000 0.000 0.000 0.000 blocks.py:352(set_inplace)
3 0.000 0.000 0.029 0.010 __init__.py:1(<module>)
26 0.000 0.000 0.000 0.000 common.py:574(is_dtype_equal)
48 0.000 0.000 0.000 0.000 blocks.py:1995(extend_blocks)
5 0.000 0.000 0.000 0.000 construction.py:558(_homogenize)
5 0.000 0.000 0.013 0.003 construction.py:467(nested_data_to_arrays)
88 0.000 0.000 0.000 0.000 common.py:569(<genexpr>)
1 0.000 0.000 0.001 0.001 simulation.py:1(<module>)
6 0.000 0.000 0.000 0.000 range.py:105(__new__)
30 0.000 0.000 0.000 0.000 blocks.py:1931(check_ndim)
1 0.000 0.000 0.023 0.023 __init__.py:11(<module>)
71 0.000 0.000 0.000 0.000 base.py:263(is_dtype)
61 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:154(_path_isfile)
24 0.000 0.000 0.001 0.000 missing.py:144(_isna)
4 0.000 0.000 0.000 0.000 __init__.py:158(<dictcomp>)
8 0.000 0.000 0.000 0.000 sre_compile.py:249(_compile_charset)
46 0.000 0.000 0.000 0.000 managers.py:1532(__init__)
44 0.000 0.000 0.001 0.000 <frozen importlib._bootstrap_external>:1077(path_stats)
14 0.000 0.000 0.000 0.000 typing.py:137(_type_check)
29 0.000 0.000 0.000 0.000 generic.py:5553(f)
22 0.000 0.000 0.005 0.000 series.py:4804(fillna)
98 0.000 0.000 0.000 0.000 common.py:1737(<genexpr>)
1 0.000 0.000 0.000 0.000 base.py:2838(union)
1 0.000 0.000 0.001 0.001 transport.py:28(<module>)
60 0.000 0.000 0.000 0.000 {method 'extend' of 'list' objects}
1 0.000 0.000 0.001 0.001 concat.py:315(__init__)
16 0.000 0.000 0.000 0.000 common.py:220(asarray_tuplesafe)
22 0.000 0.000 0.000 0.000 putmask.py:173(validate_putmask)
179 0.000 0.000 0.000 0.000 {method 'rfind' of 'str' objects}
57 0.000 0.000 0.000 0.000 flags.py:47(__init__)
5 0.000 0.000 0.001 0.000 managers.py:1753(create_block_manager_from_arrays)
90 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:398(parent)
141 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:878(__exit__)
22 0.000 0.000 0.001 0.000 blocks.py:134(newfunc)
47 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:351(__init__)
44 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:35(_new_module)
22 0.000 0.000 0.001 0.000 blocks.py:520(<listcomp>)
88 0.000 0.000 0.000 0.000 {method 'format' of 'str' objects}
14 0.000 0.000 0.000 0.000 {built-in method numpy.arange}
48 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:160(__exit__)
23 0.000 0.000 0.001 0.000 base.py:6280(ensure_index)
64 0.000 0.000 0.000 0.000 construction.py:431(ensure_wrapped_if_datetimelike)
9 0.000 0.000 0.000 0.000 base.py:737(__iter__)
1 0.000 0.000 0.001 0.001 __init__.py:10(<module>)
2 0.000 0.000 0.024 0.012 execution.py:1(<module>)
31 0.000 0.000 0.000 0.000 {method 'any' of 'numpy.ndarray' objects}
97 0.000 0.000 0.000 0.000 inference.py:321(is_hashable)
68/1 0.000 0.000 0.028 0.028 <frozen importlib._bootstrap>:220(_call_with_frames_removed)
22 0.000 0.000 0.000 0.000 blocks.py:618(_can_hold_element)
2 0.000 0.000 0.000 0.000 util.py:10(<module>)
23 0.000 0.000 0.000 0.000 base.py:4587(__getitem__)
1 0.000 0.000 0.000 0.000 process.py:10(<module>)
6 0.000 0.000 0.000 0.000 _asarray.py:22(require)
22 0.000 0.000 0.000 0.000 dtypes.py:950(is_dtype)
35 0.000 0.000 0.000 0.000 construction.py:603(_sanitize_ndim)
8 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1466(__init__)
22 0.000 0.000 0.000 0.000 managers.py:1553(from_blocks)
46 0.000 0.000 0.000 0.000 {method 'get_loc' of 'pandas._libs.index.IndexEngine' objects}
1 0.000 0.000 0.007 0.007 __init__.py:115(get_final_results)
212/188 0.000 0.000 0.000 0.000 {built-in method builtins.hash}
15 0.000 0.000 0.000 0.000 base.py:605(_simple_new)
141 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:874(__enter__)
22 0.000 0.000 0.003 0.000 managers.py:405(fillna)
24 0.000 0.000 0.000 0.000 series.py:528(_set_axis)
1 0.000 0.000 0.000 0.000 reduction.py:10(<module>)
1 0.000 0.000 0.000 0.000 simulation.py:12(Executor)
9 0.000 0.000 0.000 0.000 typing.py:822(__getitem__)
2 0.000 0.000 0.001 0.000 depreciationHandler.py:17(sanitize_partial_state_updates)
108 0.000 0.000 0.000 0.000 range.py:806(__len__)
9 0.000 0.000 0.000 0.000 base.py:511(_dtype_to_subclass)
129 0.000 0.000 0.000 0.000 base.py:43(<genexpr>)
8 0.000 0.000 0.000 0.000 cast.py:1960(construct_1d_object_array_from_listlike)
44 0.000 0.000 0.000 0.000 {built-in method _imp._fix_co_filename}
6 0.000 0.000 0.000 0.000 managers.py:909(_verify_integrity)
70 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:64(_relax_case)
8 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1324(_path_hooks)
22 0.000 0.000 0.000 0.000 common.py:1519(_is_dtype)
22 0.000 0.000 0.000 0.000 generic.py:1927(__contains__)
22 0.000 0.000 0.000 0.000 blocks.py:177(_can_hold_na)
116 0.000 0.000 0.000 0.000 {pandas._libs.lib.is_scalar}
49 0.000 0.000 0.000 0.000 common.py:1718(validate_all_hashable)
1 0.000 0.000 0.000 0.000 range.py:881(_arith_method)
52 0.000 0.000 0.000 0.000 {pandas._libs.lib.infer_datetimelike_array}
23 0.000 0.000 0.000 0.000 base.py:6382(maybe_extract_name)
8 0.000 0.000 0.000 0.000 <frozen zipimport>:63(__init__)
1 0.000 0.000 0.000 0.000 api.py:113(_get_combined_index)
39 0.000 0.000 0.000 0.000 {built-in method _abc._abc_instancecheck}
1 0.000 0.000 0.000 0.000 concat.py:167(concatenate_managers)
1 0.000 0.000 0.003 0.003 _pp.py:28(<module>)
288 0.000 0.000 0.000 0.000 {built-in method _imp.acquire_lock}
29 0.000 0.000 0.000 0.000 generic.py:5549(_consolidate_inplace)
1 0.000 0.000 0.000 0.000 concat.py:78(concat_compat)
1 0.000 0.000 0.001 0.001 concat.py:90(concat)
78 0.000 0.000 0.000 0.000 common.py:1543(get_dtype)
7 0.000 0.000 0.000 0.000 config.py:96(_get_single_key)
22 0.000 0.000 0.000 0.000 common.py:532(is_string_dtype)
1 0.000 0.000 0.001 0.001 context.py:1(<module>)
78 0.000 0.000 0.000 0.000 sre_parse.py:164(__getitem__)
5 0.000 0.000 0.004 0.001 construction.py:977(<listcomp>)
22 0.000 0.000 0.000 0.000 generic.py:3491(_maybe_update_cacher)
1 0.000 0.000 0.000 0.000 range.py:466(copy)
1 0.000 0.000 0.000 0.000 simulation.py:195(<listcomp>)
5 0.000 0.000 0.000 0.000 inference.py:390(is_dataclass)
44 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1006(__init__)
8 0.000 0.000 0.000 0.000 base.py:6398(_maybe_cast_data_without_dtype)
22 0.000 0.000 0.000 0.000 blocks.py:624(should_store)
34 0.000 0.000 0.000 0.000 common.py:1744(pandas_dtype)
1 0.000 0.000 0.000 0.000 generic.py:2042(__getstate__)
4 0.000 0.000 0.000 0.000 generic.py:5818(copy)
22 0.000 0.000 0.000 0.000 blocks.py:246(make_block)
22 0.000 0.000 0.000 0.000 common.py:422(is_period_dtype)
2 0.000 0.000 0.000 0.000 __init__.py:1284(getLogger)
7 0.000 0.000 0.000 0.000 _dtype.py:321(_name_get)
30 0.000 0.000 0.000 0.000 flags.py:83(allows_duplicate_labels)
132 0.000 0.000 0.000 0.000 {built-in method from_bytes}
23 0.000 0.000 0.000 0.000 dtypes.py:1201(is_dtype)
2 0.000 0.000 0.000 0.000 __init__.py:28(configs_as_spec)
1 0.000 0.000 0.000 0.000 base.py:4682(_concat)
69 0.000 0.000 0.000 0.000 common.py:151(cast_scalar_indexer)
89 0.000 0.000 0.000 0.000 base.py:794(__len__)
13/3 0.000 0.000 0.000 0.000 sre_parse.py:174(getwidth)
1 0.000 0.000 0.001 0.001 concat.py:549(<listcomp>)
1 0.000 0.000 0.000 0.000 concat.py:481(get_result)
1 0.000 0.000 0.000 0.000 __init__.py:188(no_update_handler)
1 0.000 0.000 0.007 0.007 __init__.py:16(create_tensor_field)
60 0.000 0.000 0.000 0.000 {built-in method numpy.array}
4 0.000 0.000 0.007 0.002 __init__.py:150(apply_identity_funcs)
23 0.000 0.000 0.000 0.000 common.py:458(is_interval_dtype)
29 0.000 0.000 0.000 0.000 managers.py:599(consolidate)
5 0.000 0.000 0.002 0.000 construction.py:98(arrays_to_mgr)
200 0.000 0.000 0.000 0.000 {method '__exit__' of '_thread.lock' objects}
187 0.000 0.000 0.000 0.000 typing.py:1340(cast)
4 0.000 0.000 0.007 0.002 frame.py:5160(fillna)
8 0.000 0.000 0.000 0.000 sre_compile.py:276(_optimize_charset)
1 0.000 0.000 270.121 270.121 simulation.py:230(execute_run)
11 0.000 0.000 0.000 0.000 range.py:160(_simple_new)
2 0.000 0.000 0.000 0.000 managers.py:1404(as_array)
1 0.000 0.000 0.000 0.000 api.py:165(union_indexes)
1 0.000 0.000 0.000 0.000 series.py:4358(_reduce)
4 0.000 0.000 0.000 0.000 __init__.py:69(flatten)
26 0.000 0.000 0.000 0.000 common.py:496(is_categorical_dtype)
66/42 0.000 0.000 0.000 0.000 typing.py:746(__hash__)
288 0.000 0.000 0.000 0.000 {built-in method _imp.release_lock}
12 0.000 0.000 0.000 0.000 common.py:1230(is_float_dtype)
23 0.000 0.000 0.000 0.000 series.py:1194(_set_as_cached)
1 0.000 0.000 0.003 0.003 pool.py:10(<module>)
45 0.000 0.000 0.000 0.000 {method 'reshape' of 'numpy.ndarray' objects}
25 0.000 0.000 0.000 0.000 series.py:674(_values)
1 0.000 0.000 0.002 0.002 __init__.py:15(<module>)
48 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:152(__init__)
40 0.000 0.000 0.000 0.000 {built-in method builtins.setattr}
6 0.000 0.000 0.000 0.000 _ufunc_config.py:32(seterr)
10 0.000 0.000 0.000 0.000 typing.py:667(__init__)
25 0.000 0.000 0.000 0.000 managers.py:1667(internal_values)
22 0.000 0.000 0.000 0.000 common.py:561(condition)
201 0.000 0.000 0.000 0.000 {built-in method _thread.get_ident}
1 0.000 0.000 0.000 0.000 base.py:4652(append)
46 0.000 0.000 0.000 0.000 base.py:2130(is_floating)
75 0.000 0.000 0.000 0.000 common.py:1409(is_1d_only_ea_dtype)
23 0.000 0.000 0.000 0.000 base.py:34(__len__)
6 0.000 0.000 0.000 0.000 base.py:767(_engine)
32 0.000 0.000 0.000 0.000 common.py:1474(is_ea_or_datetimelike_dtype)
1 0.000 0.000 0.000 0.000 __init__.py:42(configs_as_objs)
1 0.000 0.000 0.000 0.000 selector.py:25(Selector)
8 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1597(path_hook_for_FileFinder)
1 0.000 0.000 0.000 0.000 index_tricks.py:323(__getitem__)
46 0.000 0.000 0.000 0.000 managers.py:158(blknos)
1 0.000 0.000 0.000 0.000 managers.py:1137(insert)
2 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(append)
32 0.000 0.000 0.000 0.000 managers.py:1749(_extract_array)
5 0.000 0.000 0.000 0.000 managers.py:1763(<listcomp>)
1 0.000 0.000 0.014 0.014 __init__.py:9(<module>)
60 0.000 0.000 0.000 0.000 typing.py:655(_is_dunder)
24 0.000 0.000 0.001 0.000 missing.py:61(isna)
1 0.000 0.000 0.000 0.000 __init__.py:54(flattenDict)
11 0.000 0.000 0.000 0.000 managers.py:877(__init__)
46 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:811(find_spec)
47 0.000 0.000 0.000 0.000 generic.py:628(_info_axis)
10 0.000 0.000 0.000 0.000 typing.py:189(_collect_type_vars)
22 0.000 0.000 0.000 0.000 common.py:564(is_excluded_dtype)
1 0.000 0.000 0.011 0.011 pp_helper.py:9(<module>)
8 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1585(<setcomp>)
1 0.000 0.000 0.001 0.001 concat.py:547(_get_new_axes)
1 0.000 0.000 0.000 0.000 concat.py:622(_concat_indexes)
2 0.000 0.000 0.000 0.000 concat.py:235(_get_mgr_concatenation_plan)
1 0.000 0.000 0.000 0.000 {built-in method _imp.exec_builtin}
1 0.000 0.000 0.000 0.000 {pandas._libs.algos.take_2d_axis1_int64_int64}
28 0.000 0.000 0.000 0.000 {method 'copy' of 'numpy.ndarray' objects}
7 0.000 0.000 0.000 0.000 managers.py:473(<listcomp>)
7 0.000 0.000 0.000 0.000 managers.py:472(_consolidate_check)
30 0.000 0.000 0.000 0.000 blocks.py:1973(extract_pandas_array)
1 0.000 0.000 0.000 0.000 api.py:69(get_objs_combined_axis)
1 0.000 0.000 0.001 0.001 execution.py:4(print_exec_info)
6 0.000 0.000 0.000 0.000 base.py:4729(equals)
31 0.000 0.000 0.000 0.000 _methods.py:54(_any)
85 0.000 0.000 0.000 0.000 {method 'partition' of 'str' objects}
1 0.000 0.000 0.001 0.001 multiprocessing.py:8(<module>)
41 0.000 0.000 0.000 0.000 generic.py:539(_get_axis_number)
39 0.000 0.000 0.000 0.000 abc.py:117(__instancecheck__)
1 0.000 0.000 0.000 0.000 {built-in method builtins.dir}
1 0.000 0.000 0.000 0.000 pstats.py:117(init)
9 0.000 0.000 0.000 0.000 common.py:779(is_unsigned_integer_dtype)
2 0.000 0.000 0.000 0.000 __init__.py:1335(_fixupParents)
22 0.000 0.000 0.000 0.000 putmask.py:185(extract_bool_array)
5 0.000 0.000 0.000 0.000 managers.py:1888(_simple_blockify)
46 0.000 0.000 0.000 0.000 {built-in method _imp.is_frozen}
9 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:167(_path_isabs)
2 0.000 0.000 0.000 0.000 __init__.py:27(logger)
6 0.000 0.000 0.000 0.000 base.py:2018(is_unique)
4 0.000 0.000 0.000 0.000 __init__.py:119(key_filter)
1 0.000 0.000 0.000 0.000 {method 'max' of 'numpy.ndarray' objects}
7 0.000 0.000 0.000 0.000 config.py:565(_get_root)
23 0.000 0.000 0.000 0.000 cast.py:840(maybe_infer_dtype_type)
5 0.000 0.000 0.004 0.001 construction.py:955(_convert_object_array)
3 0.000 0.000 0.000 0.000 funcs.py:40(curry)
1 0.000 0.000 0.000 0.000 re.py:289(_compile)
2 0.000 0.000 0.000 0.000 numerictypes.py:575(_can_coerce_all)
1 0.000 0.000 0.000 0.000 nanops.py:119(f)
5 0.000 0.000 0.000 0.000 base.py:6376(default_index)
4 0.000 0.000 0.000 0.000 managers.py:570(copy)
1 0.000 0.000 0.000 0.000 nanops.py:996(reduction)
6 0.000 0.000 0.000 0.000 _ufunc_config.py:131(geterr)
1 0.000 0.000 0.000 0.000 {pandas._libs.algos.take_2d_axis1_object_object}
1 0.000 0.000 0.016 0.016 pools.py:8(<module>)
47 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:736(find_spec)
35 0.000 0.000 0.000 0.000 construction.py:640(_sanitize_str_dtypes)
3 0.000 0.000 0.000 0.000 common.py:74(get_op_result_name)
1 0.000 0.000 0.000 0.000 concat.py:554(_get_comb_axis)
1 0.000 0.000 0.000 0.000 sre_compile.py:759(compile)
6 0.000 0.000 0.000 0.000 config.py:114(_get_option)
135 0.000 0.000 0.000 0.000 {built-in method nt.fspath}
1 0.000 0.000 0.000 0.000 pstats.py:107(__init__)
2 0.000 0.000 0.000 0.000 frame.py:10586(values)
88 0.000 0.000 0.000 0.000 {method 'add' of 'set' objects}
1 0.000 0.000 0.000 0.000 arraylike.py:90(__add__)
1 0.000 0.000 0.000 0.000 __init__.py:64(<listcomp>)
4 0.000 0.000 0.000 0.000 copyreg.py:103(_slotnames)
6 0.000 0.000 0.000 0.000 common.py:192(all_none)
23 0.000 0.000 0.000 0.000 blocks.py:349(iget)
46 0.000 0.000 0.000 0.000 managers.py:174(blklocs)
3 0.000 0.000 0.000 0.000 base.py:683(_get_attributes_dict)
8 0.000 0.000 0.000 0.000 base.py:848(view)
63 0.000 0.000 0.000 0.000 multiarray.py:1071(copyto)
1 0.000 0.000 0.000 0.000 array_ops.py:229(comparison_op)
1 0.000 0.000 0.000 0.000 generic.py:2050(<dictcomp>)
14 0.000 0.000 0.000 0.000 config.py:579(_get_deprecated_option)
51 0.000 0.000 0.000 0.000 common.py:144(classes)
1 0.000 0.000 0.000 0.000 __main__.py:28(<module>)
21 0.000 0.000 0.000 0.000 sre_parse.py:233(__next)
136 0.000 0.000 0.000 0.000 {pandas._libs.lib.is_bool}
35 0.000 0.000 0.000 0.000 construction.py:660(_maybe_repeat)
2 0.000 0.000 0.000 0.000 take.py:111(_take_nd_ndarray)
1 0.000 0.000 0.000 0.000 pstats.py:136(load_stats)
1 0.000 0.000 0.000 0.000 core.py:8(<module>)
1 0.000 0.000 0.001 0.001 worker.py:8(<module>)
1 0.000 0.000 0.000 0.000 base.py:4638(_can_hold_identifiers_and_holds_name)
51 0.000 0.000 0.000 0.000 common.py:146(<lambda>)
26 0.000 0.000 0.000 0.000 base.py:756(_reset_identity)
47 0.000 0.000 0.000 0.000 {method 'pop' of 'dict' objects}
1 0.000 0.000 0.000 0.000 __init__.py:49(configs_as_dicts)
1 0.000 0.000 0.000 0.000 generic.py:10354(max)
1 0.000 0.000 0.000 0.000 parallel.py:15(<module>)
1 0.000 0.000 0.000 0.000 concat.py:402(<listcomp>)
1 0.000 0.000 0.000 0.000 _inspect.py:101(get_spec)
1 0.000 0.000 0.000 0.000 nanops.py:395(new_func)
27 0.000 0.000 0.000 0.000 frame.py:1352(__len__)
64 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1472(<genexpr>)
12 0.000 0.000 0.000 0.000 managers.py:464(is_consolidated)
1 0.000 0.000 0.000 0.000 config.py:122(_set_option)
4 0.000 0.000 0.000 0.000 common.py:1264(is_bool_dtype)
10 0.000 0.000 0.000 0.000 generic.py:553(_get_axis)
9 0.000 0.000 0.000 0.000 common.py:725(is_signed_integer_dtype)
1 0.000 0.000 0.000 0.000 nanops.py:1425(_maybe_null_out)
20 0.000 0.000 0.000 0.000 typing.py:827(<genexpr>)
1 0.000 0.000 0.000 0.000 indexers.py:249(maybe_convert_indices)
4 0.000 0.000 0.000 0.000 base.py:707(_view)
8 0.000 0.000 0.000 0.000 blocks.py:261(make_block_same_class)
1 0.000 0.000 0.000 0.000 series.py:5491(_cmp_method)
2 0.000 0.000 0.000 0.000 __init__.py:1372(_clear_cache)
1 0.000 0.000 0.027 0.027 run.py:1(<module>)
152 0.000 0.000 0.000 0.000 {method 'lower' of 'str' objects}
1 0.000 0.000 0.000 0.000 concat.py:188(<listcomp>)
1 0.000 0.000 0.000 0.000 auto.py:28(<module>)
1 0.000 0.000 0.000 0.000 threading.py:8(<module>)
26 0.000 0.000 0.000 0.000 common.py:342(apply_if_callable)
1 0.000 0.000 0.000 0.000 generic.py:10797(max)
22 0.000 0.000 0.000 0.000 managers.py:1042(value_getitem)
2 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(ravel)
1 0.000 0.000 0.001 0.001 frame.py:3584(__setitem__)
18 0.000 0.000 0.000 0.000 sre_parse.py:254(get)
46 0.000 0.000 0.000 0.000 {method 'ravel' of 'numpy.ndarray' objects}
1 0.000 0.000 0.000 0.000 base.py:3426(get_indexer)
1 0.000 0.000 0.000 0.000 base.py:5957(insert)
1 0.000 0.000 0.000 0.000 generic.py:3518(take)
3/1 0.000 0.000 0.000 0.000 sre_parse.py:435(_parse_sub)
22 0.000 0.000 0.000 0.000 base.py:104(_reset_cache)
38 0.000 0.000 0.000 0.000 __init__.py:25(<genexpr>)
1 0.000 0.000 0.000 0.000 {method 'get_indexer' of 'pandas._libs.index.IndexEngine' objects}
63 0.000 0.000 0.000 0.000 generic.py:342(flags)
4 0.000 0.000 0.000 0.000 blocks.py:646(copy)
1 0.000 0.000 0.000 0.000 range.py:434(take)
14 0.000 0.000 0.000 0.000 managers.py:911(<genexpr>)
1 0.000 0.000 0.000 0.000 managers.py:1906(_multi_blockify)
6 0.000 0.000 0.000 0.000 config.py:242(__call__)
1 0.000 0.000 0.000 0.000 api.py:236(_sanitize_and_check)
30 0.000 0.000 0.000 0.000 generic.py:321(attrs)
7 0.000 0.000 0.000 0.000 config.py:618(_warn_if_deprecated)
13 0.000 0.000 0.000 0.000 common.py:116(ensure_python_int)
5 0.000 0.000 0.000 0.000 managers.py:922(from_blocks)
6 0.000 0.000 0.000 0.000 common.py:160(is_object_dtype)
1 0.000 0.000 0.000 0.000 concat.py:110(<listcomp>)
6 0.000 0.000 0.000 0.000 _asarray.py:111(<setcomp>)
22 0.000 0.000 0.000 0.000 {pandas._libs.internals.get_blkno_placements}
7 0.000 0.000 0.000 0.000 {built-in method _imp.is_builtin}
2 0.000 0.000 0.000 0.000 blocks.py:1122(take_nd)
8 0.000 0.000 0.000 0.000 managers.py:588(copy_func)
52 0.000 0.000 0.000 0.000 base.py:4379(_values)
23 0.000 0.000 0.000 0.000 generic.py:3857(_check_setitem_copy)
44 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:841(create_module)
1 0.000 0.000 0.001 0.001 <frozen importlib._bootstrap_external>:1171(create_module)
33 0.000 0.000 0.000 0.000 blocks.py:344(dtype)
1 0.000 0.000 0.000 0.000 indexer.py:4(__init__)
8 0.000 0.000 0.000 0.000 sre_compile.py:423(_simple)
9 0.000 0.000 0.000 0.000 {built-in method nt._path_splitroot}
1 0.000 0.000 0.000 0.000 managers.py:2011(_fast_count_smallints)
1 0.000 0.000 0.000 0.000 {built-in method _operator.eq}
30 0.000 0.000 0.000 0.000 managers.py:245(items)
1 0.000 0.000 0.000 0.000 __init__.py:24(<listcomp>)
2 0.000 0.000 0.000 0.000 config.py:815(<genexpr>)
52 0.000 0.000 0.000 0.000 {pandas._libs.algos.ensure_object}
1 0.000 0.000 0.000 0.000 frame.py:3744(_set_item_mgr)
5 0.000 0.000 0.000 0.000 construction.py:496(treat_as_nested)
23 0.000 0.000 0.000 0.000 series.py:730(__len__)
46 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:406(has_location)
69 0.000 0.000 0.000 0.000 {pandas._libs.lib.is_float}
1 0.000 0.000 0.000 0.000 frame.py:3480(_getitem_bool_array)
32 0.000 0.000 0.000 0.000 managers.py:1612(_block)
1 0.000 0.000 0.005 0.005 __init__.py:20(<listcomp>)
1 0.000 0.000 0.000 0.000 process.py:71(BaseProcess)
1 0.000 0.000 0.000 0.000 nanops.py:257(_get_values)
7 0.000 0.000 0.000 0.000 base.py:2382(inferred_type)
1 0.000 0.000 0.000 0.000 ntpath.py:450(normpath)
12 0.000 0.000 0.000 0.000 {method 'fill' of 'numpy.ndarray' objects}
1 0.000 0.000 0.000 0.000 base.py:950(take)
5 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(concatenate)
2 0.000 0.000 0.000 0.000 __init__.py:857(__init__)
1 0.000 0.000 0.000 0.000 pool.py:173(Pool)
2 0.000 0.000 0.000 0.000 common.py:54(new_method)
2 0.000 0.000 0.000 0.000 base.py:2420(__reduce__)
1 0.000 0.000 0.000 0.000 serial.py:8(<module>)
1 0.000 0.000 0.000 0.000 tunnel.py:10(<module>)
2 0.000 0.000 0.000 0.000 function_base.py:4762(append)
1 0.000 0.000 0.000 0.000 context.py:30(BaseContext)
1 0.000 0.000 0.000 0.000 {built-in method _abc._abc_init}
5 0.000 0.000 0.000 0.000 range.py:461(_view)
1 0.000 0.000 0.000 0.000 managers.py:673(<listcomp>)
1 0.000 0.000 0.000 0.000 parallel.py:149(ParallelPool)
8 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:159(_path_isdir)
1 0.000 0.000 0.000 0.000 managers.py:833(take)
2 0.000 0.000 0.000 0.000 __init__.py:1404(__init__)
6 0.000 0.000 0.000 0.000 {pandas._libs.lib.is_all_arraylike}
2 0.000 0.000 0.000 0.000 take.py:517(_take_preprocess_indexer_and_fill_value)
32 0.000 0.000 0.000 0.000 flags.py:51(allows_duplicate_labels)
4 0.000 0.000 0.000 0.000 managers.py:591(<listcomp>)
2 0.000 0.000 0.000 0.000 __init__.py:886(createLock)
1 0.000 0.000 0.000 0.000 common.py:28(<module>)
22 0.000 0.000 0.000 0.000 common.py:154(<lambda>)
2 0.000 0.000 0.000 0.000 missing.py:552(na_value_for_dtype)
1 0.000 0.000 0.000 0.000 indexers.py:439(check_array_indexer)
2 0.000 0.000 0.000 0.000 __init__.py:2034(getLogger)
1 0.000 0.000 0.000 0.000 multiprocessing.py:85(ProcessPool)
1 0.000 0.000 0.000 0.000 abstract_launcher.py:87(AbstractWorkerPool)
1 0.000 0.000 0.000 0.000 _bootlocale.py:11(getpreferredencoding)
1 0.000 0.000 0.000 0.000 threading.py:82(ThreadPool)
1 0.000 0.000 0.000 0.000 sre_parse.py:937(parse)
7 0.000 0.000 0.000 0.000 config.py:547(_select_options)
1 0.000 0.000 0.000 0.000 generic.py:10315(_stat_function)
44 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1031(get_filename)
28 0.000 0.000 0.000 0.000 typing.py:740(__eq__)
1 0.000 0.000 0.000 0.000 sre_compile.py:536(_compile_info)
3 0.000 0.000 0.000 0.000 _ufunc_config.py:429(__enter__)
1 0.000 0.000 0.000 0.000 base.py:1467(_validate_names)
4 0.000 0.000 0.000 0.000 __init__.py:121(<listcomp>)
27 0.000 0.000 0.000 0.000 sre_parse.py:160(__len__)
9 0.000 0.000 0.000 0.000 generic.py:1980(<genexpr>)
1 0.000 0.000 0.000 0.000 generic.py:3617(_take_with_is_copy)
5 0.000 0.000 0.000 0.000 construction.py:897(_validate_or_indexify_columns)
1 0.000 0.000 0.000 0.000 series.py:2915(_construct_result)
44 0.000 0.000 0.000 0.000 base.py:308(ndim)
26 0.000 0.000 0.000 0.000 managers.py:305(<dictcomp>)
2/1 0.000 0.000 0.000 0.000 sre_compile.py:461(_get_literal_prefix)
7 0.000 0.000 0.000 0.000 managers.py:1656(dtype)
2 0.000 0.000 0.000 0.000 __init__.py:838(_addHandlerRef)
3 0.000 0.000 0.000 0.000 generic.py:559(_get_block_manager_axis)
61 0.000 0.000 0.000 0.000 {built-in method builtins.callable}
1 0.000 0.000 0.000 0.000 array_ops.py:138(_na_arithmetic_op)
23 0.000 0.000 0.000 0.000 series.py:507(_constructor)
1 0.000 0.000 0.000 0.000 connection.py:49(Pipe)
5 0.000 0.000 0.000 0.000 managers.py:615(_consolidate_inplace)
4 0.000 0.000 0.000 0.000 common.py:673(is_integer_dtype)
20 0.000 0.000 0.000 0.000 blocks.py:238(mgr_locs)
8 0.000 0.000 0.000 0.000 __init__.py:218(_acquireLock)
30 0.000 0.000 0.000 0.000 depreciationHandler.py:19(rename_keys)
8 0.000 0.000 0.000 0.000 {method 'split' of 'str' objects}
14 0.000 0.000 0.000 0.000 typing.py:128(_type_convert)
18 0.000 0.000 0.000 0.000 managers.py:885(<genexpr>)
19/3 0.000 0.000 0.000 0.000 abc.py:121(__subclasscheck__)
7 0.000 0.000 0.000 0.000 series.py:562(dtype)
24 0.000 0.000 0.000 0.000 typing.py:733(<genexpr>)
2 0.000 0.000 0.000 0.000 __init__.py:581(__init__)
22 0.000 0.000 0.000 0.000 common.py:149(classes_and_not_datetimelike)
1 0.000 0.000 0.000 0.000 indexing.py:2357(check_bool_indexer)
7 0.000 0.000 0.000 0.000 config.py:606(_translate_key)
1 0.000 0.000 0.000 0.000 {built-in method _locale._getdefaultlocale}
1 0.000 0.000 0.000 0.000 base.py:3488(_get_indexer)
3 0.000 0.000 0.000 0.000 concat.py:645(_combine_concat_plans)
1 0.000 0.000 0.000 0.000 fromnumeric.py:69(_wrapreduction)
3 0.000 0.000 0.000 0.000 _ufunc_config.py:434(__exit__)
1 0.000 0.000 0.000 0.000 base.py:3516(_check_indexing_method)
7 0.000 0.000 0.000 0.000 base.py:4405(_get_engine_target)
1 0.000 0.000 0.000 0.000 frame.py:4484(_sanitize_column)
2 0.000 0.000 0.000 0.000 indexing.py:2323(convert_to_index_sliceable)
5 0.000 0.000 0.000 0.000 dataclasses.py:1047(is_dataclass)
9 0.000 0.000 0.000 0.000 execution.py:34(<lambda>)
1 0.000 0.000 0.000 0.000 typing.py:899(__getitem__)
1 0.000 0.000 0.000 0.000 base.py:5435(_should_compare)
1 0.000 0.000 0.000 0.000 connection.py:122(_ConnectionBase)
1 0.000 0.000 0.000 0.000 serial.py:73(SerialPool)
12 0.000 0.000 0.000 0.000 common.py:196(<genexpr>)
1 0.000 0.000 0.000 0.000 _pp.py:306(Server)
1 0.000 0.000 0.000 0.000 enum.py:977(__and__)
1 0.000 0.000 0.000 0.000 weakref.py:105(__init__)
6 0.000 0.000 0.000 0.000 common.py:1420(is_extension_array_dtype)
15 0.000 0.000 0.000 0.000 managers.py:1761(<genexpr>)
10 0.000 0.000 0.000 0.000 construction.py:863(<genexpr>)
1 0.000 0.000 0.000 0.000 pool.py:150(_PoolCache)
13 0.000 0.000 0.000 0.000 sre_parse.py:286(tell)
7 0.000 0.000 0.000 0.000 _dtype.py:24(_kind_name)
2 0.000 0.000 0.000 0.000 take.py:54(take_nd)
11 0.000 0.000 0.000 0.000 sre_parse.py:111(__init__)
6 0.000 0.000 0.000 0.000 {built-in method numpy.seterrobj}
1 0.000 0.000 0.000 0.000 concat.py:598(<listcomp>)
2 0.000 0.000 0.000 0.000 __init__.py:1049(__init__)
1 0.000 0.000 0.000 0.000 pp_helper.py:37(ApplyResult)
1 0.000 0.000 0.000 0.000 config.py:210(__getattr__)
1 0.000 0.000 0.000 0.000 utils.py:1(<module>)
2 0.000 0.000 0.000 0.000 {method 'nonzero' of 'numpy.ndarray' objects}
22 0.000 0.000 0.000 0.000 base.py:1449(name)
1 0.000 0.000 0.000 0.000 managers.py:622(reindex_indexer)
15 0.000 0.000 0.000 0.000 __init__.py:222(<lambda>)
29 0.000 0.000 0.000 0.000 {pandas._libs.lib.item_from_zerodim}
1 0.000 0.000 0.000 0.000 common.py:100(is_bool_indexer)
24 0.000 0.000 0.000 0.000 numeric.py:296(_is_all_dates)
1 0.000 0.000 0.000 0.000 process.py:393(__init__)
9 0.000 0.000 0.000 0.000 typing.py:204(_check_generic)
2 0.000 0.000 0.000 0.000 __init__.py:649(update)
2 0.000 0.000 0.000 0.000 sre_parse.py:84(opengroup)
15 0.000 0.000 0.000 0.000 sre_parse.py:249(match)
1 0.000 0.000 0.000 0.000 numerictypes.py:599(find_common_type)
5 0.000 0.000 0.000 0.000 common.py:1141(needs_i8_conversion)
2 0.000 0.000 0.000 0.000 common.py:96(_maybe_match_name)
1 0.000 0.000 0.000 0.000 range.py:179(_data)
1 0.000 0.000 0.000 0.000 range.py:188(_cached_int64index)
2 0.000 0.000 0.000 0.000 __init__.py:1417(setLevel)
1 0.000 0.000 0.000 0.000 copier.py:10(<module>)
2 0.000 0.000 0.000 0.000 enum.py:358(__call__)
1 0.000 0.000 0.000 0.000 inspect.py:494(unwrap)
1 0.000 0.000 0.000 0.000 cast.py:114(maybe_convert_platform)
8 0.000 0.000 0.000 0.000 blocks.py:340(shape)
8 0.000 0.000 0.000 0.000 __init__.py:55(tupalize)
25 0.000 0.000 0.000 0.000 {pandas._libs.lib.is_integer}
1 0.000 0.000 0.000 0.000 base.py:5262(get_indexer_for)
1 0.000 0.000 0.000 0.000 frame.py:3769(_set_item)
4 0.000 0.000 0.000 0.000 frame.py:3868(_clear_item_cache)
5 0.000 0.000 0.000 0.000 construction.py:213(mgr_to_mgr)
22 0.000 0.000 0.000 0.000 series.py:1201(_clear_item_cache)
8 0.000 0.000 0.000 0.000 __init__.py:227(_releaseLock)
23 0.000 0.000 0.000 0.000 {built-in method builtins.min}
1 0.000 0.000 0.000 0.000 algorithms.py:1411(take)
8 0.000 0.000 0.000 0.000 sre_parse.py:355(_escape)
7 0.000 0.000 0.000 0.000 _dtype.py:307(_name_includes_bit_suffix)
1 0.000 0.000 0.000 0.000 nanops.py:1464(check_below_min_count)
1 0.000 0.000 0.000 0.000 frozen.py:67(__getitem__)
2 0.000 0.000 0.000 0.000 __init__.py:1601(addHandler)
1 0.000 0.000 0.000 0.000 __init__.py:58(Executor)
10 0.000 0.000 0.000 0.000 numerictypes.py:584(<listcomp>)
1 0.000 0.000 0.000 0.000 {built-in method _imp.create_builtin}
9 0.000 0.000 0.000 0.000 base.py:497(_ensure_array)
3 0.000 0.000 0.000 0.000 generic.py:5457(<genexpr>)
2 0.000 0.000 0.000 0.000 simulation.py:231(generate_init_sys_metrics)
2 0.000 0.000 0.000 0.000 threading.py:82(RLock)
19 0.000 0.000 0.000 0.000 {method 'replace' of 'str' objects}
1 0.000 0.000 0.000 0.000 managers.py:1562(from_array)
22 0.000 0.000 0.000 0.000 managers.py:1679(is_consolidated)
16 0.000 0.000 0.000 0.000 __init__.py:139(policy_identity)
1 0.000 0.000 0.000 0.000 abc.py:105(__new__)
1 0.000 0.000 0.000 0.000 contextlib.py:86(__init__)
1 0.000 0.000 0.000 0.000 sre_compile.py:598(_code)
1 0.000 0.000 0.000 0.000 weakref.py:365(__init__)
1 0.000 0.000 0.000 0.000 config.py:812(inner)
5 0.000 0.000 0.000 0.000 range.py:543(equals)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:415(spec_from_loader)
2 0.000 0.000 0.000 0.000 cast.py:467(maybe_promote)
1 0.000 0.000 0.000 0.000 __init__.py:1359(_fixupChildren)
1 0.000 0.000 0.000 0.000 __init__.py:164(__init__)
1 0.000 0.000 0.000 0.000 transport.py:211(SocketTransport)
2 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(ndim)
1 0.000 0.000 0.000 0.000 config.py:198(__setattr__)
1 0.000 0.000 0.000 0.000 {built-in method nt.urandom}
1 0.000 0.000 0.000 0.000 sre_compile.py:492(_get_charset_prefix)
3 0.000 0.000 0.000 0.000 _ufunc_config.py:425(__init__)
8 0.000 0.000 0.000 0.000 {method 'find' of 'bytearray' objects}
7 0.000 0.000 0.000 0.000 cast.py:1718(sanitize_to_nanoseconds)
1 0.000 0.000 0.000 0.000 arraylike.py:30(__eq__)
1 0.000 0.000 0.000 0.000 api.py:99(_get_distinct_objs)
2 0.000 0.000 0.000 0.000 blocks.py:232(fill_value)
1 0.000 0.000 0.000 0.000 reduction.py:36(ForkingPickler)
1 0.000 0.000 0.000 0.000 reduction.py:254(AbstractReducer)
10 0.000 0.000 0.000 0.000 sre_parse.py:172(append)
1 0.000 0.000 0.000 0.000 fromnumeric.py:2933(prod)
5 0.000 0.000 0.000 0.000 {built-in method numpy.asanyarray}
1 0.000 0.000 0.000 0.000 {built-in method _sre.compile}
3 0.000 0.000 0.000 0.000 base.py:688(<dictcomp>)
1 0.000 0.000 0.000 0.000 base.py:2218(is_object)
2 0.000 0.000 0.000 0.000 funcs.py:50(<lambda>)
1 0.000 0.000 0.000 0.000 <string>:1(<lambda>)
1 0.000 0.000 0.000 0.000 nanops.py:213(_maybe_get_mask)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1179(exec_module)
1 0.000 0.000 0.000 0.000 weakref.py:287(update)
6 0.000 0.000 0.000 0.000 base.py:725(is_)
1 0.000 0.000 0.000 0.000 base.py:3306(_convert_can_do_setop)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:892(_find_spec_legacy)
1 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(prod)
12 0.000 0.000 0.000 0.000 {built-in method numpy.geterrobj}
9 0.000 0.000 0.000 0.000 base.py:220(disallow_kwargs)
2 0.000 0.000 0.000 0.000 base.py:1500(_get_names)
1 0.000 0.000 0.000 0.000 base.py:4677(<setcomp>)
16 0.000 0.000 0.000 0.000 range.py:449(__iter__)
3 0.000 0.000 0.000 0.000 generic.py:1932(empty)
7 0.000 0.000 0.000 0.000 reduction.py:46(register)
1 0.000 0.000 0.000 0.000 util.py:182(Finalize)
1 0.000 0.000 0.000 0.000 ntpath.py:124(splitdrive)
1 0.000 0.000 0.000 0.000 sre_parse.py:224(__init__)
1 0.000 0.000 0.000 0.000 _weakrefset.py:37(__init__)
2 0.000 0.000 0.000 0.000 fromnumeric.py:1718(ravel)
1 0.000 0.000 0.000 0.000 expressions.py:63(_evaluate_standard)
1 0.000 0.000 0.000 0.000 expressions.py:223(evaluate)
1 0.000 0.000 0.000 0.000 missing.py:140(dispatch_fill_zeros)
1 0.000 0.000 0.000 0.000 base.py:5353(_maybe_promote)
4 0.000 0.000 0.000 0.000 frame.py:780(axes)
6 0.000 0.000 0.000 0.000 __init__.py:193(_checkLevel)
1 0.000 0.000 0.000 0.000 cProfile.py:50(create_stats)
1 0.000 0.000 0.000 0.000 connection.py:356(Connection)
4 0.000 0.000 0.000 0.000 typing.py:910(<genexpr>)
1 0.000 0.000 0.000 0.000 re.py:250(compile)
2 0.000 0.000 0.000 0.000 take.py:301(_get_take_nd_function)
2 0.000 0.000 0.000 0.000 base.py:2058(is_boolean)
8 0.000 0.000 0.000 0.000 generic.py:652(ndim)
4 0.000 0.000 0.000 0.000 __init__.py:771(__init__)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:241(_requires_builtin_wrapper)
1 0.000 0.000 0.000 0.000 ntpath.py:524(abspath)
1 0.000 0.000 0.000 0.000 contextlib.py:112(__enter__)
2 0.000 0.000 0.000 0.000 sre_parse.py:96(closegroup)
1 0.000 0.000 0.000 0.000 common.py:1035(is_numeric_v_string_like)
2 0.000 0.000 0.000 0.000 concat.py:324(__init__)
6 0.000 0.000 0.000 0.000 __init__.py:145(state_identity)
1 0.000 0.000 0.000 0.000 __init__.py:65(<listcomp>)
1 0.000 0.000 0.000 0.000 subgraph.py:2(__init__)
1 0.000 0.000 0.000 0.000 _pp.py:151(_Worker)
14 0.000 0.000 0.000 0.000 _collections_abc.py:409(__subclasshook__)
1 0.000 0.000 0.000 0.000 {method 'take' of 'numpy.ndarray' objects}
4 0.000 0.000 0.000 0.000 {method 'transpose' of 'numpy.ndarray' objects}
2 0.000 0.000 0.000 0.000 {method 'add' of 'pandas._libs.internals.BlockPlacement' objects}
15 0.000 0.000 0.000 0.000 {method 'clear' of 'dict' objects}
6 0.000 0.000 0.000 0.000 {method 'upper' of 'str' objects}
3 0.000 0.000 0.000 0.000 inference.py:184(is_array_like)
5 0.000 0.000 0.000 0.000 inference.py:294(is_named_tuple)
1 0.000 0.000 0.000 0.000 missing.py:606(is_valid_na_for_dtype)
2 0.000 0.000 0.000 0.000 nanops.py:346(_na_ok_dtype)
3 0.000 0.000 0.000 0.000 range.py:347(dtype)
1 0.000 0.000 0.000 0.000 __init__.py:100(Value)
1 0.000 0.000 0.000 0.000 connection.py:18(Listener)
6 0.000 0.000 0.000 0.000 sre_parse.py:81(groups)
2 0.000 0.000 0.000 0.000 {built-in method _collections._count_elements}
1 0.000 0.000 0.000 0.000 base.py:4493(_validate_fill_value)
1 0.000 0.000 0.000 0.000 api.py:95(<listcomp>)
6 0.000 0.000 0.000 0.000 numeric.py:176(_validate_dtype)
6 0.000 0.000 0.000 0.000 frame.py:564(_constructor)
1 0.000 0.000 0.000 0.000 pp_helper.py:136(MapResult)
1 0.000 0.000 0.000 0.000 pool.py:742(ApplyResult)
1 0.000 0.000 0.000 0.000 connection.py:276(PipeConnection)
1 0.000 0.000 0.000 0.000 abstract_launcher.py:8(<module>)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:757(create_module)
1 0.000 0.000 0.000 0.000 contextlib.py:242(helper)
2 0.000 0.000 0.000 0.000 enum.py:670(__new__)
4 0.000 0.000 0.000 0.000 sre_compile.py:65(_combine_flags)
2 0.000 0.000 0.000 0.000 {method 'tolist' of 'numpy.ndarray' objects}
5 0.000 0.000 0.000 0.000 {method 'setter' of 'property' objects}
4 0.000 0.000 0.000 0.000 {method 'get' of 'mappingproxy' objects}
9 0.000 0.000 0.000 0.000 {method 'pop' of 'list' objects}
1 0.000 0.000 0.000 0.000 generic.py:3834(_set_is_copy)
1 0.000 0.000 0.000 0.000 hosts.py:10(<module>)
1 0.000 0.000 0.000 0.000 server.py:19(<module>)
1 0.000 0.000 0.000 0.000 pool.py:918(ThreadPool)
1 0.000 0.000 0.000 0.000 connection.py:440(Listener)
1 0.000 0.000 0.000 0.000 connection.py:647(PipeListener)
1 0.000 0.000 0.000 0.000 tunnel.py:48(Tunnel)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap_external>:1155(__init__)
1 0.000 0.000 0.000 0.000 contextlib.py:121(__exit__)
1 0.000 0.000 0.000 0.000 <__array_function__ internals>:2(bincount)
7 0.000 0.000 0.000 0.000 {pandas._libs.lib.is_iterator}
2 0.000 0.000 0.000 0.000 {built-in method pandas._libs.missing.checknull}
1 0.000 0.000 0.000 0.000 missing.py:381(array_equivalent)
1 0.000 0.000 0.000 0.000 base.py:2819(_get_reconciled_name_object)
1 0.000 0.000 0.000 0.000 base.py:4686(<listcomp>)
1 0.000 0.000 0.000 0.000 concat.py:115(<setcomp>)
8 0.000 0.000 0.000 0.000 sre_parse.py:168(__setitem__)
1 0.000 0.000 0.000 0.000 _internal.py:863(npy_ctypes_check)
2 0.000 0.000 0.000 0.000 {built-in method builtins.next}
2 0.000 0.000 0.000 0.000 common.py:522(require_length_match)
1 0.000 0.000 0.000 0.000 missing.py:883(clean_reindex_fill_method)
1 0.000 0.000 0.000 0.000 base.py:6445(unpack_nested_dtype)
1 0.000 0.000 0.000 0.000 flags.py:96(__getitem__)
1 0.000 0.000 0.000 0.000 range.py:192(_int64index)
1 0.000 0.000 0.000 0.000 frame.py:3832(_ensure_valid_index)
4 0.000 0.000 0.000 0.000 managers.py:219(is_single_block)
1 0.000 0.000 0.000 0.000 __init__.py:28(ExecutionContext)
1 0.000 0.000 0.000 0.000 server.py:28(Server)
1 0.000 0.000 0.000 0.000 selector.py:19(<module>)
1 0.000 0.000 0.000 0.000 process.py:358(_ParentProcess)
1 0.000 0.000 0.000 0.000 auto.py:50(Discover)
1 0.000 0.000 0.000 0.000 codecs.py:186(__init__)
7 0.000 0.000 0.000 0.000 typing.py:200(<listcomp>)
1 0.000 0.000 0.000 0.000 sre_parse.py:76(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:23(find_module)
5 0.000 0.000 0.000 0.000 multiarray.py:148(concatenate)
2 0.000 0.000 0.000 0.000 {method 'astype' of 'numpy.ndarray' objects}
2 0.000 0.000 0.000 0.000 base.py:5341(_index_as_unique)
2 0.000 0.000 0.000 0.000 concat.py:99(is_nonempty)
2 0.000 0.000 0.000 0.000 frame.py:797(shape)
6 0.000 0.000 0.000 0.000 managers.py:1913(<lambda>)
1 0.000 0.000 0.000 0.000 series.py:810(__array__)
1 0.000 0.000 0.000 0.000 __init__.py:59(__init__)
1 0.000 0.000 0.000 0.000 simulation.py:13(__init__)
1 0.000 0.000 0.000 0.000 context.py:226(DefaultContext)
1 0.000 0.000 0.000 0.000 mp_helper.py:8(<module>)
1 0.000 0.000 0.000 0.000 __init__.py:34(DummyProcess)
1 0.000 0.000 0.000 0.000 connection.py:36(Pipe)
1 0.000 0.000 0.000 0.000 config.py:194(__init__)
1 0.000 0.000 0.000 0.000 construction.py:778(is_empty_data)
1 0.000 0.000 0.000 0.000 nanops.py:191(_get_fill_value)
1 0.000 0.000 0.000 0.000 base.py:5705(_maybe_cast_listlike_indexer)
1 0.000 0.000 0.000 0.000 _pp.py:93(_Task)
1 0.000 0.000 0.000 0.000 transport.py:60(Transport)
1 0.000 0.000 0.000 0.000 connection.py:51(Connection)
1 0.000 0.000 0.000 0.000 sre_parse.py:921(fix_flags)
1 0.000 0.000 0.000 0.000 fromnumeric.py:70(<dictcomp>)
2 0.000 0.000 0.000 0.000 {built-in method builtins.hex}
1 0.000 0.000 0.000 0.000 base.py:425(find)
1 0.000 0.000 0.000 0.000 base.py:716(_rename)
4 0.000 0.000 0.000 0.000 range.py:945(<genexpr>)
1 0.000 0.000 0.000 0.000 __init__.py:29(__init__)
1 0.000 0.000 0.000 0.000 copier.py:42(Copier)
1 0.000 0.000 0.000 0.000 threading.py:1338(current_thread)
6 0.000 0.000 0.000 0.000 {pandas._libs.algos.ensure_platform_int}
1 0.000 0.000 0.000 0.000 {built-in method nt._getfullpathname}
8 0.000 0.000 0.000 0.000 {method 'acquire' of '_thread.RLock' objects}
2 0.000 0.000 0.000 0.000 {built-in method time.time}
4 0.000 0.000 0.000 0.000 base.py:818(dtype)
3 0.000 0.000 0.000 0.000 concat.py:120(<genexpr>)
1 0.000 0.000 0.000 0.000 concat.py:541(_get_result_dim)
2 0.000 0.000 0.000 0.000 __init__.py:29(<lambda>)
1 0.000 0.000 0.000 0.000 __init__.py:18(ExecutionMode)
1 0.000 0.000 0.000 0.000 info.py:2(<module>)
1 0.000 0.000 0.000 0.000 common.py:97(portnumber)
3 0.000 0.000 0.000 0.000 _collections_abc.py:315(__subclasshook__)
2 0.000 0.000 0.000 0.000 sre_compile.py:595(isstring)
1 0.000 0.000 0.000 0.000 numerictypes.py:651(<listcomp>)
1 0.000 0.000 0.000 0.000 config.py:860(is_callable)
8 0.000 0.000 0.000 0.000 {method 'release' of '_thread.RLock' objects}
1 0.000 0.000 0.000 0.000 missing.py:102(clean_fill_method)
2 0.000 0.000 0.000 0.000 base.py:484(<genexpr>)
6 0.000 0.000 0.000 0.000 base.py:774(<lambda>)
2 0.000 0.000 0.000 0.000 concat.py:116(<genexpr>)
2 0.000 0.000 0.000 0.000 range.py:264(stop)
2 0.000 0.000 0.000 0.000 blocks.py:221(get_values)
1 0.000 0.000 0.000 0.000 context.py:229(__init__)
1 0.000 0.000 0.000 0.000 pool.py:80(MaybeEncodingError)
1 0.000 0.000 0.000 0.000 pool.py:834(IMapIterator)
1 0.000 0.000 0.000 0.000 util.py:108(_platform_supports_abstract_sockets)
1 0.000 0.000 0.000 0.000 util.py:368(ForkAwareThreadLock)
1 0.000 0.000 0.000 0.000 connection.py:587(SocketListener)
1 0.000 0.000 0.000 0.000 transport.py:94(CTransport)
1 0.000 0.000 0.000 0.000 abstract_launcher.py:61(AbstractPipeConnection)
1 0.000 0.000 0.000 0.000 <frozen importlib._bootstrap>:765(exec_module)
3 0.000 0.000 0.000 0.000 sre_compile.py:453(_get_iscased)
1 0.000 0.000 0.000 0.000 _methods.py:38(_amax)
1 0.000 0.000 0.000 0.000 config.py:595(_get_registered_option)
1 0.000 0.000 0.000 0.000 common.py:178(not_none)
2 0.000 0.000 0.000 0.000 function.py:49(__call__)
2 0.000 0.000 0.000 0.000 range.py:241(start)
2 0.000 0.000 0.000 0.000 range.py:287(step)
1 0.000 0.000 0.000 0.000 __init__.py:1224(__init__)
1 0.000 0.000 0.000 0.000 __init__.py:51(<lambda>)
1 0.000 0.000 0.000 0.000 context.py:220(Process)
1 0.000 0.000 0.000 0.000 reduction.py:107(DupHandle)
1 0.000 0.000 0.000 0.000 transport.py:132(PipeTransport)
1 0.000 0.000 0.000 0.000 __main__.py:72(_WorkerProcess)
1 0.000 0.000 0.000 0.000 dispatch.py:11(should_extension_dispatch)
1 0.000 0.000 0.000 0.000 concat.py:119(<setcomp>)
1 0.000 0.000 0.000 0.000 api.py:257(<setcomp>)
1 0.000 0.000 0.000 0.000 __init__.py:13(__init__)
1 0.000 0.000 0.000 0.000 connection.py:44(PipeException)
1 0.000 0.000 0.000 0.000 context.py:203(reducer)
1 0.000 0.000 0.000 0.000 context.py:322(SpawnProcess)
1 0.000 0.000 0.000 0.000 process.py:343(AuthenticationString)
1 0.000 0.000 0.000 0.000 util.py:385(ForkAwareLocal)
1 0.000 0.000 0.000 0.000 _pp.py:203(_RWorker)
1 0.000 0.000 0.000 0.000 _pp.py:269(Template)
1 0.000 0.000 0.000 0.000 __init__.py:82(Namespace)
1 0.000 0.000 0.000 0.000 six.py:194(find_spec)
2 0.000 0.000 0.000 0.000 {method 'remove' of 'list' objects}
2 0.000 0.000 0.000 0.000 _exceptions.py:8(rewrite_exception)
3 0.000 0.000 0.000 0.000 common.py:182(<genexpr>)
1 0.000 0.000 0.000 0.000 base.py:800(__array__)
1 0.000 0.000 0.000 0.000 base.py:3300(_assert_can_do_setop)
1 0.000 0.000 0.000 0.000 context.py:329(SpawnContext)
1 0.000 0.000 0.000 0.000 process.py:391(_MainProcess)
1 0.000 0.000 0.000 0.000 reduction.py:214(_C)
1 0.000 0.000 0.000 0.000 pool.py:57(RemoteTraceback)
1 0.000 0.000 0.000 0.000 connection.py:773(ConnectionWrapper)
1 0.000 0.000 0.000 0.000 _pp.py:257(_Statistics)
1 0.000 0.000 0.000 0.000 copier.py:35(FileNotFound)
1 0.000 0.000 0.000 0.000 tunnel.py:44(TunnelException)
1 0.000 0.000 0.000 0.000 inspect.py:511(_is_wrapper)
1 0.000 0.000 0.000 0.000 __init__.py:145(_DType_reduce)
1 0.000 0.000 0.000 0.000 multiarray.py:883(bincount)
2 0.000 0.000 0.000 0.000 fromnumeric.py:1714(_ravel_dispatcher)
1 0.000 0.000 0.000 0.000 fromnumeric.py:2928(_prod_dispatcher)
2 0.000 0.000 0.000 0.000 fromnumeric.py:3123(_ndim_dispatcher)
2 0.000 0.000 0.000 0.000 {built-in method _operator.add}
1 0.000 0.000 0.000 0.000 {built-in method nt.getcwd}
1 0.000 0.000 0.000 0.000 base.py:966(_maybe_disallow_fill)
1 0.000 0.000 0.000 0.000 base.py:2410(_is_multi)
1 0.000 0.000 0.000 0.000 generic.py:2044(<dictcomp>)
2 0.000 0.000 0.000 0.000 __init__.py:238(_register_at_fork_reinit_lock)
1 0.000 0.000 0.000 0.000 context.py:14(ProcessError)
1 0.000 0.000 0.000 0.000 pool.py:63(ExceptionWithTraceback)
1 0.000 0.000 0.000 0.000 pool.py:791(MapResult)
1 0.000 0.000 0.000 0.000 connection.py:795(XmlListener)
1 0.000 0.000 0.000 0.000 transport.py:281(CSocketTransport)
2 0.000 0.000 0.000 0.000 fromnumeric.py:3127(ndim)
2 0.000 0.000 0.000 0.000 function_base.py:4758(_append_dispatcher)
1 0.000 0.000 0.000 0.000 {method 'appendleft' of 'collections.deque' objects}
1 0.000 0.000 0.000 0.000 {method 'disable' of '_lsprof.Profiler' objects}
1 0.000 0.000 0.000 0.000 {built-in method atexit.register}
1 0.000 0.000 0.000 0.000 {built-in method _imp.exec_dynamic}
1 0.000 0.000 0.000 0.000 base.py:2830(_validate_sort_keyword)
1 0.000 0.000 0.000 0.000 base.py:5453(_is_comparable_dtype)
1 0.000 0.000 0.000 0.000 concat.py:615(_maybe_check_integrity)
1 0.000 0.000 0.000 0.000 __init__.py:44(<lambda>)
1 0.000 0.000 0.000 0.000 funcs.py:48(<lambda>)