-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcallgrind.out.9692
26260 lines (25308 loc) · 246 KB
/
callgrind.out.9692
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
# callgrind format
version: 1
creator: callgrind-3.15.0
pid: 9692
cmd: ./build/atrg_test
part: 1
desc: I1 cache:
desc: D1 cache:
desc: LL cache:
desc: Timerange: Basic block 0 - 7921830933
desc: Trigger: Program termination
positions: line
events: Ir
summary: 46944731249
ob=(14) /home/mnk7/Dokumente/Masterarbeit/ATRG/build/atrg_test
fl=(215) ???
fn=(2372) std::random_device::random_device()
0 16
cob=(2) ???
cfi=(18) ???
cfn=(2374) 0x000000000010a6e0
calls=1 0
0 2991
0 10
fn=(2552) std::vector<unsigned int, std::allocator<unsigned int> >::vector(unsigned long, std::allocator<unsigned int> const&)
0 34
cob=(2)
cfi=(18)
cfn=(2406) 0x000000000010a5b0
calls=2 0
0 284
0 14
cob=(2)
cfi=(18)
cfn=(2420) 0x000000000010a4a0
calls=2 0
0 34
0 10
fn=(3134) double (anonymous namespace)::residual_svd<arma::Mat<double>, double>(arma::Mat<double> const&, arma::Mat<double> const&, arma::Mat<double> const&, arma::Col<double> const&)
0 212
cfn=(3132) arma::Mat<double>::reset()
calls=106 0
0 34557
0 3392
cfn=(3136) arma::Mat<double> (anonymous namespace)::U_times_S<double>(arma::Mat<double> const&, arma::Col<double> const&)
calls=106 0
0 10916568
0 1060
cfn=(3138) void arma::glue_times::apply<double, false, true, false, arma::Mat<double>, arma::Mat<double> >(arma::Mat<double>&, arma::Mat<double> const&, arma::Mat<double> const&, double)
calls=106 0
0 76095372
0 2544
cfn=(2576) arma::Mat<double>::~Mat()
calls=106 0
0 742
0 954
cfn=(3144) arma::eGlue<arma::Mat<double>, arma::Mat<double>, arma::eglue_minus>::pod_type arma::op_norm::vec_norm_2<arma::eGlue<arma::Mat<double>, arma::Mat<double>, arma::eglue_minus> >(arma::Proxy<arma::eGlue<arma::Mat<double>, arma::Mat<double>, arma::eglue_minus> > const&, arma::arma_not_cx<arma::eGlue<arma::Mat<double>, arma::Mat<double>, arma::eglue_minus>::elem_type>::result const*)
calls=106 0
0 24302582
0 2544
cfn=(2576)
calls=106 0
0 25083
0 1802
cob=(2)
cfi=(18)
cfn=(3146) 0x000000000010a430
calls=106 0
0 15622990
0 318
fn=(3148) std::vector<unsigned int, std::allocator<unsigned int> >::vector(std::vector<unsigned int, std::allocator<unsigned int> > const&)
0 361
cob=(2)
cfi=(18)
cfn=(2406)
calls=19 0
0 1626
0 285
cob=(2)
cfi=(18)
cfn=(2556) 0x000000000010a6b0
calls=19 0
0 269
0 133
fn=(3150) std::vector<unsigned int, std::allocator<unsigned int> >::vector<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, void>(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, std::allocator<unsigned int> const&)
0 44
cob=(2)
cfi=(18)
cfn=(2406)
calls=2 0
0 114
0 18
cob=(2)
cfi=(18)
cfn=(2410) 0x000000000010a550
calls=2 0
0 30
0 14
fn=(3424) std::vector<arma::Mat<double>, std::allocator<arma::Mat<double> > >::_M_default_append(unsigned long)
0 972
cob=(2)
cfi=(18)
cfn=(2406)
calls=18 0
0 1803
0 702
fn=(3502) (anonymous namespace)::Tensor<double>::~Tensor()
0 102
cob=(2)
cfi=(18)
cfn=(2422) 0x000000000010a590
calls=17 0
0 1943
0 34
cob=(2)
cfi=(18)
cfn=(2422)
calls=17 0
0 5693
0 85
cob=(2)
cfi=(18)
cfn=(2422)
calls=17 0
0 1933
fn=(2404) void std::vector<unsigned int, std::allocator<unsigned int> >::_M_range_initialize<unsigned int const*>(unsigned int const*, unsigned int const*, std::forward_iterator_tag) [clone .isra.0]
0 38
cob=(2)
cfi=(18)
cfn=(2406)
calls=2 0
0 284
0 18
cob=(2)
cfi=(18)
cfn=(2410)
calls=2 0
0 26
0 14
fn=(2416) std::vector<unsigned int, std::allocator<unsigned int> >::operator=(std::vector<unsigned int, std::allocator<unsigned int> > const&)
0 16231
cob=(2)
cfi=(18)
cfn=(2556)
calls=275 0
0 3723
0 5345
cob=(2)
cfi=(18)
cfn=(2406)
calls=56 0
0 5647
0 448
cob=(2)
cfi=(18)
cfn=(2410)
calls=56 0
0 732
0 116
cob=(2)
cfi=(18)
cfn=(2422)
calls=2 0
0 176
0 1136
cob=(2)
cfi=(18)
cfn=(2556)
calls=152 0
0 2162
0 2240
cob=(2)
cfi=(18)
cfn=(2556)
calls=152 0
0 2536
0 304
fn=(2560) void std::__introsort_loop<__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, long, __gnu_cxx::__ops::_Iter_less_iter>(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, long, __gnu_cxx::__ops::_Iter_less_iter)
0 4848
fn=(2562) arma::Mat<double>::Mat(double*, unsigned long long, unsigned long long, bool, bool)
0 13143780
fn=(2578) double (anonymous namespace)::svd<double>(arma::Mat<double> const&, arma::Mat<double>&, arma::Mat<double>&, arma::Col<double>&, unsigned int)
0 2120
cfn=(2580) bool arma::auxlib::svd_dc<double, arma::Mat<double> >(arma::Mat<double>&, arma::Col<double>&, arma::Mat<double>&, arma::Base<double, arma::Mat<double> > const&)
calls=106 0
0 13279932188
0 1802
cfn=(2582) arma::Mat<double>::init_warm(unsigned long long, unsigned long long)
calls=106 0
0 56271
0 3392
cob=(2)
cfi=(18)
cfn=(3126) 0x000000000010a750
calls=106 0
0 83886
0 954
cfn=(2582)
calls=106 0
0 55550
0 636
cfn=(2576)
calls=106 0
0 11792
0 1166
cfn=(3128) void arma::op_resize::apply<arma::Mat<double> >(arma::Mat<arma::Mat<double>::elem_type>&, arma::Op<arma::Mat<double>, arma::op_resize> const&)
calls=106 0
0 28805
0 954
cfn=(3128)
calls=106 0
0 3053616
0 848
cfn=(3128)
calls=106 0
0 367648
0 1060
cfn=(2576)
calls=106 0
0 14753
0 58958
fn=(3116) void arma::op_strans::apply_mat_inplace<double>(arma::Mat<double>&)
0 14071800
cfn=(3458) void arma::op_strans::apply_mat_noalias<double, arma::Mat<double> >(arma::Mat<double>&, arma::Mat<double> const&)
calls=60 0
0 38141000
0 1320
cfn=(2576)
calls=60 0
0 420
0 180
cfn=(3132)
calls=60 0
0 24170
0 780
fn=(3158) (anonymous namespace)::Tensor<double>::inflate(std::vector<unsigned int, std::allocator<unsigned int> > const&, std::vector<unsigned int, std::allocator<unsigned int> > const&, arma::Mat<double>&)
0 15840
cob=(2)
cfi=(18)
cfn=(2406)
calls=360 0
0 19584
0 6480
cob=(2)
cfi=(18)
cfn=(2556)
calls=360 0
0 5346
0 2520
cfn=(2558) void std::vector<unsigned int, std::allocator<unsigned int> >::_M_range_insert<__gnu_cxx::__normal_iterator<unsigned int const*, std::vector<unsigned int, std::allocator<unsigned int> > > >(__gnu_cxx::__normal_iterator<unsigned int*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int const*, std::vector<unsigned int, std::allocator<unsigned int> > >, __gnu_cxx::__normal_iterator<unsigned int const*, std::vector<unsigned int, std::allocator<unsigned int> > >, std::forward_iterator_tag)
calls=360 0
0 96369
0 4320
cob=(2)
cfi=(18)
cfn=(2406)
calls=360 0
0 20520
0 5760
cob=(2)
cfi=(18)
cfn=(2556)
calls=360 0
0 4824
0 5760
cfn=(2560)
calls=360 0
0 2160
0 32364
cob=(2)
cfi=(18)
cfn=(2406)
calls=144 0
0 10664
0 4752
cob=(2)
cfi=(18)
cfn=(2406)
calls=144 0
0 11552
0 11232
cob=(2)
cfi=(18)
cfn=(3296) 0x000000000010a660
calls=144 0
0 860137956
0 1008
cfn=(2582)
calls=144 0
0 41371
0 576
cob=(2)
cfi=(18)
cfn=(2422)
calls=144 0
0 12797
0 576
cob=(2)
cfi=(18)
cfn=(2422)
calls=144 0
0 12672
0 1440
cob=(2)
cfi=(18)
cfn=(2422)
calls=360 0
0 31680
0 1440
cob=(2)
cfi=(18)
cfn=(2422)
calls=360 0
0 31680
0 4230
cob=(2)
cfi=(18)
cfn=(2556)
calls=30 0
0 414
0 17652
cfn=(3116)
calls=54 0
0 37664014
0 270
cfn=(3460) (anonymous namespace)::Tensor<double>::inflate_single_index(unsigned int, arma::Mat<double>&)
calls=54 0
0 120667698
0 162
cfn=(3164) arma::Mat<double>::set_size(unsigned long long)
calls=54 0
0 14580
0 5139
cfn=(2562)
calls=162 0
0 4860
0 3240
cob=(2)
cfi=(18)
cfn=(2410)
calls=162 0
0 97109692
0 324
cfn=(2576)
calls=162 0
0 810
0 1854
fn=(3414) (anonymous namespace)::Tensor<double>::flatten_single_index(unsigned int, arma::Mat<double>&)
0 1596
cfn=(2562)
calls=42 0
0 1260
0 4620
cfn=(2562)
calls=462 0
0 13860
0 940752
cfn=(2576)
calls=504 0
0 3528
0 1008
cfn=(2576)
calls=504 0
0 2520
0 3990
fn=(3420) void (anonymous namespace)::swap_impure_bonds<double>((anonymous namespace)::Tensor<double>&, (anonymous namespace)::Tensor<double>&, (anonymous namespace)::Tensor<double>&, (anonymous namespace)::Tensor<double>&, unsigned int, double&, double&, bool, std::vector<unsigned int, std::allocator<unsigned int> > const&, std::vector<unsigned int, std::allocator<unsigned int> >&, arma::Mat<double> const&, arma::Mat<double> const&, arma::Mat<double> const&)
0 432
cob=(2)
cfi=(18)
cfn=(2406)
calls=9 0
0 513
0 144
cob=(2)
cfi=(18)
cfn=(2556)
calls=9 0
0 135
0 108
cob=(2)
cfi=(18)
cfn=(2556)
calls=6 0
0 96
0 153
cfn=(3270) std::vector<unsigned int, std::allocator<unsigned int> >::vector(std::initializer_list<unsigned int>, std::allocator<unsigned int> const&) [clone .constprop.1]
calls=9 0
0 657
0 63
cfn=(2554) (anonymous namespace)::Tensor<double>::flatten(std::vector<unsigned int, std::allocator<unsigned int> > const&, std::vector<unsigned int, std::allocator<unsigned int> > const&, arma::Mat<double>&)
calls=9 0
0 36358460
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 108
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(2554)
calls=9 0
0 36354792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 180
cob=(2)
cfi=(18)
cfn=(2406)
calls=9 0
0 513
0 99
cfn=(2414) (anonymous namespace)::Tensor<double>::reshape(std::vector<unsigned int, std::allocator<unsigned int> >)
calls=9 0
0 170998
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 81
cfn=(3160) void arma::glue_times_redirect2_helper<false>::apply<arma::Op<arma::Mat<double>, arma::op_htrans>, arma::Mat<double> >(arma::Mat<arma::Op<arma::Mat<double>, arma::op_htrans>::elem_type>&, arma::Glue<arma::Op<arma::Mat<double>, arma::op_htrans>, arma::Mat<double>, arma::glue_times> const&)
calls=9 0
0 1953582
0 63
cfn=(3156) std::vector<unsigned int, std::allocator<unsigned int> >::vector(std::initializer_list<unsigned int>, std::allocator<unsigned int> const&) [clone .constprop.2]
calls=9 0
0 657
0 54
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(3158)
calls=9 0
0 132588
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 54
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(3156)
calls=9 0
0 657
0 45
cfn=(2554)
calls=9 0
0 136656
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 126
cob=(2)
cfi=(18)
cfn=(2406)
calls=9 0
0 513
0 99
cfn=(2414)
calls=9 0
0 171701
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 63
cfn=(3160)
calls=9 0
0 1954365
0 45
cfn=(3156)
calls=9 0
0 657
0 54
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(3158)
calls=9 0
0 132588
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 54
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(3156)
calls=9 0
0 657
0 45
cfn=(2554)
calls=9 0
0 136656
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 108
cob=(2)
cfi=(18)
cfn=(2406)
calls=9 0
0 513
0 81
cfn=(2414)
calls=9 0
0 1961733
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 63
cfn=(3160)
calls=9 0
0 3089593
0 54
cfn=(3270)
calls=9 0
0 657
0 54
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(3158)
calls=9 0
0 1501452
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 54
cfn=(3270)
calls=9 0
0 657
0 63
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(2554)
calls=9 0
0 53774026
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 892
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 950
0 63
cfn=(3160)
calls=9 0
0 1944954
0 36
cfn=(2582)
calls=9 0
0 396
0 63
cob=(2)
cfi=(18)
cfn=(2410)
calls=9 0
0 124573
0 126
cfn=(3412) void (anonymous namespace)::assemble_new_bonds<double>((anonymous namespace)::Tensor<double>&, (anonymous namespace)::Tensor<double>&, arma::Mat<double>&, arma::Mat<double>&, arma::Mat<double> const&, arma::Mat<double> const&, unsigned int, double&, double&, bool, std::vector<unsigned int, std::allocator<unsigned int> > const&, std::vector<unsigned int, std::allocator<unsigned int> > const&, std::vector<unsigned int, std::allocator<unsigned int> >&, unsigned int) [clone .constprop.0]
calls=9 0
0 118478958
0 45
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 992
0 18
cfn=(2576)
calls=9 0
0 63
0 18
cfn=(2576)
calls=9 0
0 63
0 99
fn=(3476) void arma::glue_times::apply<double, false, false, false, arma::Mat<double>, arma::Mat<double> >(arma::Mat<double>&, arma::Mat<double> const&, arma::Mat<double> const&, double)
0 2728
cob=(2)
cfi=(18)
cfn=(3140) 0x000000000010a410
calls=40 0
0 13213688
0 544
cob=(2)
cfi=(18)
cfn=(3118) 0x000000000010a600
calls=8 0
0 3224
0 168
cob=(2)
cfi=(18)
cfn=(2566) 0x000000000010a480
calls=8 0
0 5101
0 56
fn=(2414)
0 4026
cfn=(2416)
calls=366 0
0 31287
0 19801
cob=(2)
cfi=(18)
cfn=(2422)
calls=262 0
0 40401
0 786
cob=(2)
cfi=(18)
cfn=(2406)
calls=262 0
0 143922
0 2976
cob=(2)
cfi=(18)
cfn=(2420)
calls=364 0
0 786647812
0 245836902
cfn=(2418) std::vector<unsigned int, std::allocator<unsigned int> >::_M_default_append(unsigned long)
calls=136 0
0 13937
0 272
fn=(2564) arma::Mat<double>::operator=(arma::Mat<double>&&)
0 11882
cob=(2)
cfi=(18)
cfn=(2410)
calls=228 0
0 38366264
0 6824
cob=(2)
cfi=(18)
cfn=(2566)
calls=191 0
0 133301
0 1337
fn=(2582)
0 51084
cob=(2)
cfi=(18)
cfn=(3118)
calls=795 0
0 227136
0 25292
cob=(2)
cfi=(18)
cfn=(3118)
calls=16 0
0 2526
0 7380
cob=(2)
cfi=(18)
cfn=(2566)
calls=519 0
0 395253
0 3633
fn=(3152) unsigned int& std::vector<unsigned int, std::allocator<unsigned int> >::emplace_back<unsigned int>(unsigned int&&)
0 76
cob=(2)
cfi=(18)
cfn=(2406)
calls=2 0
0 813
0 38
cob=(2)
cfi=(18)
cfn=(2556)
calls=2 0
0 30
0 4
cob=(2)
cfi=(18)
cfn=(2422)
calls=2 0
0 176
0 14
fn=(3268) void (anonymous namespace)::swap_bonds<double>((anonymous namespace)::Tensor<double>&, (anonymous namespace)::Tensor<double>&, (anonymous namespace)::Tensor<double>&, (anonymous namespace)::Tensor<double>&, unsigned int, double&, double&, bool, std::vector<unsigned int, std::allocator<unsigned int> > const&, std::vector<unsigned int, std::allocator<unsigned int> >&, unsigned int, arma::Mat<double>&, arma::Mat<double>&, arma::Mat<double>&) [clone .constprop.0]
0 378
cfn=(3148)
calls=9 0
0 1560
0 93
cob=(2)
cfi=(18)
cfn=(2556)
calls=6 0
0 96
0 102
cfn=(3270)
calls=6 0
0 438
0 48
cfn=(3270)
calls=3 0
0 405
0 45
cfn=(2554)
calls=9 0
0 36355555
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 867
0 90
cfn=(3270)
calls=9 0
0 657
0 63
cfn=(2554)
calls=9 0
0 36354722
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 180
cfn=(2578)
calls=9 0
0 179410978
0 108
cfn=(3134)
calls=9 0
0 5089380
0 171
cob=(2)
cfi=(18)
cfn=(2406)
calls=9 0
0 513
0 99
cfn=(2414)
calls=9 0
0 171403
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 45
cfn=(3136)
calls=9 0
0 367707
0 27
cfn=(3130) arma::Mat<double>::steal_mem(arma::Mat<double>&)
calls=9 0
0 4013
0 54
cfn=(2576)
calls=9 0
0 63
0 45
cfn=(3156)
calls=9 0
0 657
0 63
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(3158)
calls=9 0
0 132588
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 54
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(3156)
calls=9 0
0 657
0 45
cfn=(2554)
calls=9 0
0 137382
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 817
0 180
cfn=(2578)
calls=9 0
0 180021611
0 189
cob=(2)
cfi=(18)
cfn=(2406)
calls=9 0
0 513
0 99
cfn=(2414)
calls=9 0
0 170942
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cfn=(3136)
calls=9 0
0 368244
0 27
cfn=(3130)
calls=9 0
0 4291
0 45
cfn=(2576)
calls=9 0
0 63
0 45
cfn=(3156)
calls=9 0
0 657
0 54
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(3158)
calls=9 0
0 132588
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 54
cfn=(3270)
calls=9 0
0 657
0 45
cfn=(3156)
calls=9 0
0 657
0 45
cfn=(2554)
calls=9 0
0 136761
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0
0 792
0 108
cob=(2)
cfi=(18)
cfn=(2406)
calls=9 0
0 513
0 81
cfn=(2414)
calls=9 0
0 1961908
0 36
cob=(2)
cfi=(18)
cfn=(2422)
calls=9 0