forked from mozilla/DeepSpeech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tensorflow_full_runtime.supp
9979 lines (9979 loc) · 988 KB
/
tensorflow_full_runtime.supp
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
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN6google8protobuf14DescriptorPool6Tables19AllocateOnceDynamicEv
fun:_ZN6google8protobuf17DescriptorBuilder13BuildFileImplERKNS0_19FileDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder9BuildFileERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool21BuildFileFromDatabaseERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool29TryFindFileInFallbackDatabaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_ZNK6google8protobuf14DescriptorPool14FindFileByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_ZN6google8protobuf12_GLOBAL__N_121AssignDescriptorsImplEPKNS0_8internal15DescriptorTableE
fun:_ZSt13__invoke_implIvRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EET_St14__invoke_otherOT0_DpOT1_
fun:_ZSt8__invokeIRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EENSt15__invoke_resultIT_JDpT0_EE4typeEOSA_DpOSB_
fun:_ZZSt9call_onceIRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EEvRSt9once_flagOT_DpOT0_ENKUlvE_clEv
fun:_ZZSt9call_onceIRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EEvRSt9once_flagOT_DpOT0_ENKUlvE0_clEv
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN6google8protobuf14DescriptorPool6Tables19AllocateOnceDynamicEv
fun:_ZN6google8protobuf17DescriptorBuilder14CrossLinkFieldEPNS0_15FieldDescriptorERKNS0_20FieldDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder16CrossLinkMessageEPNS0_10DescriptorERKNS0_15DescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder16CrossLinkMessageEPNS0_10DescriptorERKNS0_15DescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder13CrossLinkFileEPNS0_14FileDescriptorERKNS0_19FileDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder13BuildFileImplERKNS0_19FileDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder9BuildFileERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool21BuildFileFromDatabaseERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool29TryFindFileInFallbackDatabaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_ZNK6google8protobuf14DescriptorPool14FindFileByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_ZN6google8protobuf12_GLOBAL__N_121AssignDescriptorsImplEPKNS0_8internal15DescriptorTableE
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorIPFSt10unique_ptrIN10tensorflow8profiler17ProfilerInterfaceESt14default_deleteIS4_EERKNS2_14ProfileOptionsEEE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaIPFSt10unique_ptrIN10tensorflow8profiler17ProfilerInterfaceESt14default_deleteIS3_EERKNS1_14ProfileOptionsEEEE8allocateERSC_m
fun:_ZNSt12_Vector_baseIPFSt10unique_ptrIN10tensorflow8profiler17ProfilerInterfaceESt14default_deleteIS3_EERKNS1_14ProfileOptionsEESaISB_EE11_M_allocateEm
fun:_ZNSt6vectorIPFSt10unique_ptrIN10tensorflow8profiler17ProfilerInterfaceESt14default_deleteIS3_EERKNS1_14ProfileOptionsEESaISB_EE17_M_realloc_insertIJRKSB_EEEvN9__gnu_cxx17__normal_iteratorIPSB_SD_EEDpOT_
fun:_ZNSt6vectorIPFSt10unique_ptrIN10tensorflow8profiler17ProfilerInterfaceESt14default_deleteIS3_EERKNS1_14ProfileOptionsEESaISB_EE9push_backERKSB_
fun:_ZN10tensorflow8profiler23RegisterProfilerFactoryEPFSt10unique_ptrINS0_17ProfilerInterfaceESt14default_deleteIS2_EERKNS_14ProfileOptionsEE
fun:_ZNK10tensorflow8profilerUlvE_clEv
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_host_tracer.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorISt10unique_ptrIN10tensorflow21GraphOptimizationPassESt14default_deleteIS3_EEE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaISt10unique_ptrIN10tensorflow21GraphOptimizationPassESt14default_deleteIS2_EEEE8allocateERS6_m
fun:_ZNSt12_Vector_baseISt10unique_ptrIN10tensorflow21GraphOptimizationPassESt14default_deleteIS2_EESaIS5_EE11_M_allocateEm
fun:_ZNSt6vectorISt10unique_ptrIN10tensorflow21GraphOptimizationPassESt14default_deleteIS2_EESaIS5_EE17_M_realloc_insertIJS5_EEEvN9__gnu_cxx17__normal_iteratorIPS5_S7_EEDpOT_
fun:_ZNSt6vectorISt10unique_ptrIN10tensorflow21GraphOptimizationPassESt14default_deleteIS2_EESaIS5_EE12emplace_backIJS5_EEEvDpOT_
fun:_ZNSt6vectorISt10unique_ptrIN10tensorflow21GraphOptimizationPassESt14default_deleteIS2_EESaIS5_EE9push_backEOS5_
fun:_ZN10tensorflow24OptimizationPassRegistry8RegisterENS0_8GroupingEiSt10unique_ptrINS_21GraphOptimizationPassESt14default_deleteIS3_EE
fun:_ZN10tensorflow25optimization_registration28OptimizationPassRegistrationC1ENS_24OptimizationPassRegistry8GroupingEiSt10unique_ptrINS_21GraphOptimizationPassESt14default_deleteIS5_EENSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_isolate_placer_inspection_required_ops_pass.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow12_GLOBAL__N_124DefaultExecutorRegistrarC1Ev
fun:_Z41__static_initialization_and_destruction_0ii
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow8dfactory9RegistrarINS_23ThreadPoolDeviceFactoryEEC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi
fun:_Z41__static_initialization_and_destruction_0ii
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_Z41__static_initialization_and_destruction_0ii
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZZN10tensorflow20register_file_system8RegisterINS_15PosixFileSystemEEC4EPNS_3EnvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEENKUlvE_clEv
fun:_ZNSt17_Function_handlerIFPN10tensorflow10FileSystemEvEZNS0_20register_file_system8RegisterINS0_15PosixFileSystemEEC4EPNS0_3EnvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEUlvE_E9_M_invokeERKSt9_Any_data
fun:_ZNKSt8functionIFPN10tensorflow10FileSystemEvEEclEv
fun:_ZN10tensorflow22FileSystemRegistryImpl8RegisterERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFPNS_10FileSystemEvEE
fun:_ZN10tensorflow3Env18RegisterFileSystemERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFPNS_10FileSystemEvEE
fun:_ZN10tensorflow20register_file_system8RegisterINS_15PosixFileSystemEEC1EPNS_3EnvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_Z41__static_initialization_and_destruction_0ii
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZZN10tensorflow20register_file_system8RegisterINS_20LocalPosixFileSystemEEC4EPNS_3EnvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEENKUlvE_clEv
fun:_ZNSt17_Function_handlerIFPN10tensorflow10FileSystemEvEZNS0_20register_file_system8RegisterINS0_20LocalPosixFileSystemEEC4EPNS0_3EnvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEUlvE_E9_M_invokeERKSt9_Any_data
fun:_ZNKSt8functionIFPN10tensorflow10FileSystemEvEEclEv
fun:_ZN10tensorflow22FileSystemRegistryImpl8RegisterERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFPNS_10FileSystemEvEE
fun:_ZN10tensorflow3Env18RegisterFileSystemERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFPNS_10FileSystemEvEE
fun:_ZN10tensorflow20register_file_system8RegisterINS_20LocalPosixFileSystemEEC1EPNS_3EnvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_Z41__static_initialization_and_destruction_0ii
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorIPN10tensorflow9AllocatorEE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaIPN10tensorflow9AllocatorEEE8allocateERS3_m
fun:_ZNSt12_Vector_baseIPN10tensorflow9AllocatorESaIS2_EE11_M_allocateEm
fun:_ZNSt6vectorIPN10tensorflow9AllocatorESaIS2_EE17_M_realloc_insertIJRKS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
fun:_ZNSt6vectorIPN10tensorflow9AllocatorESaIS2_EE9push_backERKS2_
fun:_ZN10tensorflow12ProcessState15GetCPUAllocatorEi
fun:_ZN10tensorflow23ThreadPoolDeviceFactory13CreateDevicesERKNS_14SessionOptionsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPSt6vectorISt10unique_ptrINS_6DeviceESt14default_deleteISE_EESaISH_EE
fun:_ZN10tensorflow13DeviceFactory10AddDevicesERKNS_14SessionOptionsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEPSt6vectorISt10unique_ptrINS_6DeviceESt14default_deleteISE_EESaISH_EE
fun:_ZN10tensorflow20DirectSessionFactory10NewSessionERKNS_14SessionOptionsEPPNS_7SessionE
fun:_ZN10tensorflow10NewSessionERKNS_14SessionOptionsEPPNS_7SessionE
fun:_ZN12TFModelState4initEPKc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorIPN10tensorflow13DirectSessionEE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaIPN10tensorflow13DirectSessionEEE8allocateERS3_m
fun:_ZNSt12_Vector_baseIPN10tensorflow13DirectSessionESaIS2_EE11_M_allocateEm
fun:_ZNSt6vectorIPN10tensorflow13DirectSessionESaIS2_EE17_M_realloc_insertIJRKS2_EEEvN9__gnu_cxx17__normal_iteratorIPS2_S4_EEDpOT_
fun:_ZNSt6vectorIPN10tensorflow13DirectSessionESaIS2_EE9push_backERKS2_
fun:_ZN10tensorflow20DirectSessionFactory10NewSessionERKNS_14SessionOptionsEPPNS_7SessionE
fun:_ZN10tensorflow10NewSessionERKNS_14SessionOptionsEPPNS_7SessionE
fun:_ZN12TFModelState4initEPKc
fun:DS_CreateModel
fun:main
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorIPN6google8protobuf20FileDescriptorTablesEE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaIPN6google8protobuf20FileDescriptorTablesEEE8allocateERS4_m
fun:_ZNSt12_Vector_baseIPN6google8protobuf20FileDescriptorTablesESaIS3_EE11_M_allocateEm
fun:_ZNSt6vectorIPN6google8protobuf20FileDescriptorTablesESaIS3_EE17_M_realloc_insertIJRKS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_
fun:_ZNSt6vectorIPN6google8protobuf20FileDescriptorTablesESaIS3_EE9push_backERKS3_
fun:_ZN6google8protobuf14DescriptorPool6Tables18AllocateFileTablesEv
fun:_ZN6google8protobuf17DescriptorBuilder13BuildFileImplERKNS0_19FileDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder9BuildFileERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool21BuildFileFromDatabaseERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool29TryFindFileInFallbackDatabaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_ZNK6google8protobuf14DescriptorPool14FindFileByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorIPKcE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaIPKcEE8allocateERS2_m
fun:_ZNSt12_Vector_baseIPKcSaIS1_EE11_M_allocateEm
fun:_ZNSt6vectorIPKcSaIS1_EE17_M_realloc_insertIJS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_
fun:_ZNSt6vectorIPKcSaIS1_EE12emplace_backIJS1_EEEvDpOT_
fun:_ZNSt6vectorIPKcSaIS1_EE9push_backEOS1_
fun:_ZN6google8protobuf14DescriptorPool6Tables7AddFileEPKNS0_14FileDescriptorE
fun:_ZN6google8protobuf17DescriptorBuilder13BuildFileImplERKNS0_19FileDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder9BuildFileERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool21BuildFileFromDatabaseERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool29TryFindFileInFallbackDatabaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN6google8protobuf14DescriptorPool6Tables13AllocateBytesEi
fun:_ZN6google8protobuf14DescriptorPool6Tables13AllocateArrayIPKNS0_14FileDescriptorEEEPT_i
fun:_ZN6google8protobuf17DescriptorBuilder13BuildFileImplERKNS0_19FileDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder9BuildFileERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool21BuildFileFromDatabaseERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool29TryFindFileInFallbackDatabaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_ZNK6google8protobuf14DescriptorPool14FindFileByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_ZN6google8protobuf12_GLOBAL__N_121AssignDescriptorsImplEPKNS0_8internal15DescriptorTableE
fun:_ZSt13__invoke_implIvRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EET_St14__invoke_otherOT0_DpOT1_
fun:_ZSt8__invokeIRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EENSt15__invoke_resultIT_JDpT0_EE4typeEOSA_DpOSB_
fun:_ZZSt9call_onceIRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EEvRSt9once_flagOT_DpOT0_ENKUlvE_clEv
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN6google8protobuf14DescriptorPool6Tables13AllocateBytesEi
fun:_ZN6google8protobuf14DescriptorPool6Tables13AllocateArrayIPKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEEEPT_i
fun:_ZN6google8protobuf17DescriptorBuilder13BuildFileImplERKNS0_19FileDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder9BuildFileERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool21BuildFileFromDatabaseERKNS0_19FileDescriptorProtoE
fun:_ZNK6google8protobuf14DescriptorPool29TryFindFileInFallbackDatabaseERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_ZNK6google8protobuf14DescriptorPool14FindFileByNameERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE
fun:_ZN6google8protobuf12_GLOBAL__N_121AssignDescriptorsImplEPKNS0_8internal15DescriptorTableE
fun:_ZSt13__invoke_implIvRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EET_St14__invoke_otherOT0_DpOT1_
fun:_ZSt8__invokeIRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EENSt15__invoke_resultIT_JDpT0_EE4typeEOSA_DpOSB_
fun:_ZZSt9call_onceIRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EEvRSt9once_flagOT_DpOT0_ENKUlvE_clEv
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: possible
fun:malloc
fun:_ZN5Eigen8internal23handmade_aligned_mallocEmm
fun:_ZN5Eigen13MaxSizeVectorIjEC1Em
fun:_ZN5Eigen13MaxSizeVectorINS0_IjEEE12emplace_backIiEEvRKT_
fun:_ZN5Eigen15ThreadPoolTemplIN10tensorflow6thread16EigenEnvironmentEEC1EibS3_
fun:_ZN10tensorflow6thread10ThreadPoolC1EPNS_3EnvERKNS_13ThreadOptionsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEibPN5Eigen9AllocatorE
fun:_ZN10tensorflow6thread10ThreadPoolC1EPNS_3EnvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi
fun:_ZN10tensorflow12_GLOBAL__N_121GraphRunnerThreadPoolEv
fun:_ZN10tensorflow12_GLOBAL__N_123SingleThreadedCpuDeviceC1EPNS_3EnvE
fun:_ZN10tensorflow26NewSingleThreadedCpuDeviceEPNS_3EnvE
fun:_ZN10tensorflow11GraphRunnerC1EPNS_3EnvE
fun:_ZN10tensorflow12ShapeRefinerC1EiPKNS_19OpRegistryInterfaceE
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow3Env7DefaultEv
fun:_ZN10tensorflow10monitoring18CollectionRegistry7DefaultEv
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA37_KcRA58_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA37_KcRA58_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_spectrogram_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_bias_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_cast_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_concat_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_constant_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_shape_ops.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_gather_nd_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_identity_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_immutable_constant_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_cwise_op_less.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_cwise_op_minimum.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_cwise_op_mul_1.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_cwise_op_squared_difference.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_cwise_op_add_1.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_cwise_op_add_2.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_cwise_op_rsqrt.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_cwise_op_sub.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_matmul_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_matmul_op_fused.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_reduction_ops_all.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_reduction_ops_any.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_reduction_ops_euclidean.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_reduction_ops_max.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_reduction_ops_mean.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_reduction_ops_min.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_reduction_ops_prod.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_reduction_ops_sum.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_mfcc_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_pack_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_sequence_ops.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_relu_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_reshape_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_softmax_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_tile_ops.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_transpose_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorIPNSt8__detail15_Hash_node_baseEE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaIPNSt8__detail15_Hash_node_baseEEE8allocateERS3_m
fun:_ZNSt8__detail16_Hashtable_allocISaINS_10_Hash_nodeINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEELb1EEEEE19_M_allocate_bucketsEm
fun:_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_SaIS5_ENSt8__detail9_IdentityESt8equal_toIS5_EN10tensorflow4hashIN4absl14lts_2020_02_2511string_viewEvEENS7_18_Mod_range_hashingENS7_20_Default_ranged_hashENS7_20_Prime_rehash_policyENS7_17_Hashtable_traitsILb1ELb1ELb1EEEE19_M_allocate_bucketsEm
fun:_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_SaIS5_ENSt8__detail9_IdentityESt8equal_toIS5_EN10tensorflow4hashIN4absl14lts_2020_02_2511string_viewEvEENS7_18_Mod_range_hashingENS7_20_Default_ranged_hashENS7_20_Prime_rehash_policyENS7_17_Hashtable_traitsILb1ELb1ELb1EEEEC1IPKS5_EET_SQ_mRKSG_RKSH_RKSI_RKSA_RKS8_RKS6_
fun:_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES5_SaIS5_ENSt8__detail9_IdentityESt8equal_toIS5_EN10tensorflow4hashIN4absl14lts_2020_02_2511string_viewEvEENS7_18_Mod_range_hashingENS7_20_Default_ranged_hashENS7_20_Prime_rehash_policyENS7_17_Hashtable_traitsILb1ELb1ELb1EEEEC1ESt16initializer_listIS5_EmRKSG_RKSA_RKS6_
fun:_ZNSt13unordered_setINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEN10tensorflow4hashIN4absl14lts_2020_02_2511string_viewEvEESt8equal_toIS5_ESaIS5_EEC1ESt16initializer_listIS5_EmRKSB_RKSD_RKSE_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_quantize_training.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring5GaugeIbLi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE0EbLi0EEE
fun:_ZN10tensorflow10monitoring5GaugeIbLi0EE3NewIJRA33_KcRA31_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_session.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_no_op.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_sendrecv_ops.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_ZN10tensorflowL10InitModuleEv
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_sendrecv_ops.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_gru_ops.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_lstm_ops.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZSt11make_uniqueIN10tensorflow14kernel_factory17OpKernelRegistrar18PtrOpKernelFactoryEJRPFPNS0_8OpKernelEPNS0_20OpKernelConstructionEEEENSt9_MakeUniqIT_E15__single_objectEDpOT0_
fun:_ZN10tensorflow14kernel_factory17OpKernelRegistrarC1EPKNS_9KernelDefEN4absl14lts_2020_02_2511string_viewEPFPNS_8OpKernelEPNS_20OpKernelConstructionEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_dataset.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA28_KcRA85_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA38_KcRA58_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi2EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi2EEE
fun:_ZN10tensorflow10monitoring7CounterILi2EE3NewIJRA42_KcRA75_S4_RA5_S4_SA_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7SamplerILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ENS_14HistogramProtoELi0EEESt10unique_ptrINS0_7BucketsESt14default_deleteISA_EE
fun:_ZN10tensorflow10monitoring7SamplerILi0EE3NewERKNS0_9MetricDefILNS0_10MetricKindE1ENS_14HistogramProtoELi0EEESt10unique_ptrINS0_7BucketsESt14default_deleteISA_EE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi1EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi1EEE
fun:_ZN10tensorflow10monitoring7CounterILi1EE3NewIJRA38_KcRA54_S4_RA5_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi1EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi1EEE
fun:_ZN10tensorflow10monitoring7CounterILi1EE3NewIJRA26_KcRA19_S4_RA5_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi1EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi1EEE
fun:_ZN10tensorflow10monitoring7CounterILi1EE3NewIJRA32_KcRA51_S4_RA5_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi1EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi1EEE
fun:_ZN10tensorflow10monitoring7CounterILi1EE3NewIJRA28_KcRA53_S4_RA5_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA31_KcRA59_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi1EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi1EEE
fun:_ZN10tensorflow10monitoring7CounterILi1EE3NewIJRA26_KcRA17_S4_RA5_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi1EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi1EEE
fun:_ZN10tensorflow10monitoring7CounterILi1EE3NewIJRA29_KcRA20_S4_RA5_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi1EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi1EEE
fun:_ZN10tensorflow10monitoring7CounterILi1EE3NewIJRA30_KcRA21_S4_RA5_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA31_KcRA67_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA32_KcRA68_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA35_KcRA281_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA40_KcRA302_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA34_KcRA91_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA44_KcRA62_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN10tensorflow10monitoring18CollectionRegistry8RegisterEPKNS0_17AbstractMetricDefERKSt8functionIFvNS0_21MetricCollectorGetterEEE
fun:_ZN10tensorflow10monitoring7CounterILi0EEC1ERKNS0_9MetricDefILNS0_10MetricKindE1ExLi0EEE
fun:_ZN10tensorflow10monitoring7CounterILi0EE3NewIJRA38_KcRA67_S4_EEEPS2_DpOT_
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_metrics.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorIPN6google8protobuf7MessageEE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaIPN6google8protobuf7MessageEEE8allocateERS4_m
fun:_ZNSt12_Vector_baseIPN6google8protobuf7MessageESaIS3_EE11_M_allocateEm
fun:_ZNSt6vectorIPN6google8protobuf7MessageESaIS3_EE17_M_realloc_insertIJS3_EEEvN9__gnu_cxx17__normal_iteratorIPS3_S5_EEDpOT_
fun:_ZNSt6vectorIPN6google8protobuf7MessageESaIS3_EE12emplace_backIJS3_EEEvDpOT_
fun:_ZNSt6vectorIPN6google8protobuf7MessageESaIS3_EE9push_backEOS3_
fun:_ZN6google8protobuf14DescriptorPool6Tables15AllocateMessageINS0_11FileOptionsEEEPT_S6_
fun:_ZN6google8protobuf17DescriptorBuilder19AllocateOptionsImplINS0_14FileDescriptorEEEvRKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESB_RKNT_11OptionsTypeEPSC_RKSt6vectorIiSaIiEE
fun:_ZN6google8protobuf17DescriptorBuilder15AllocateOptionsERKNS0_11FileOptionsEPNS0_14FileDescriptorE
fun:_ZN6google8protobuf17DescriptorBuilder13BuildFileImplERKNS0_19FileDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder9BuildFileERKNS0_19FileDescriptorProtoE
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorIPSt9once_flagE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaIPSt9once_flagEE8allocateERS2_m
fun:_ZNSt12_Vector_baseIPSt9once_flagSaIS1_EE11_M_allocateEm
fun:_ZNSt6vectorIPSt9once_flagSaIS1_EE17_M_realloc_insertIJRKS1_EEEvN9__gnu_cxx17__normal_iteratorIPS1_S3_EEDpOT_
fun:_ZNSt6vectorIPSt9once_flagSaIS1_EE9push_backERKS1_
fun:_ZN6google8protobuf14DescriptorPool6Tables19AllocateOnceDynamicEv
fun:_ZN6google8protobuf17DescriptorBuilder14CrossLinkFieldEPNS0_15FieldDescriptorERKNS0_20FieldDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder16CrossLinkMessageEPNS0_10DescriptorERKNS0_15DescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder16CrossLinkMessageEPNS0_10DescriptorERKNS0_15DescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder13CrossLinkFileEPNS0_14FileDescriptorERKNS0_19FileDescriptorProtoE
fun:_ZN6google8protobuf17DescriptorBuilder13BuildFileImplERKNS0_19FileDescriptorProtoE
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZN9__gnu_cxx13new_allocatorISt4pairIPKN6google8protobuf8MetadataES6_EE8allocateEmPKv
fun:_ZNSt16allocator_traitsISaISt4pairIPKN6google8protobuf8MetadataES5_EEE8allocateERS7_m
fun:_ZNSt12_Vector_baseISt4pairIPKN6google8protobuf8MetadataES5_ESaIS6_EE11_M_allocateEm
fun:_ZNSt6vectorISt4pairIPKN6google8protobuf8MetadataES5_ESaIS6_EE17_M_realloc_insertIJS6_EEEvN9__gnu_cxx17__normal_iteratorIPS6_S8_EEDpOT_
fun:_ZNSt6vectorISt4pairIPKN6google8protobuf8MetadataES5_ESaIS6_EE12emplace_backIJS6_EEEvDpOT_
fun:_ZNSt6vectorISt4pairIPKN6google8protobuf8MetadataES5_ESaIS6_EE9push_backEOS6_
fun:_ZN6google8protobuf12_GLOBAL__N_113MetadataOwner8AddArrayEPKNS0_8MetadataES5_
fun:_ZN6google8protobuf12_GLOBAL__N_121AssignDescriptorsImplEPKNS0_8internal15DescriptorTableE
fun:_ZSt13__invoke_implIvRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EET_St14__invoke_otherOT0_DpOT1_
fun:_ZSt8__invokeIRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EENSt15__invoke_resultIT_JDpT0_EE4typeEOSA_DpOSB_
fun:_ZZSt9call_onceIRFvPKN6google8protobuf8internal15DescriptorTableEEJRS5_EEvRSt9once_flagOT_DpOT0_ENKUlvE_clEv
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: possible
fun:_Znwm
fun:_ZN10tensorflow12_GLOBAL__N_18PosixEnv11StartThreadERKNS_13ThreadOptionsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFvvEE
fun:_ZN10tensorflow6thread16EigenEnvironment12CreateThreadESt8functionIFvvEE
fun:_ZN5Eigen15ThreadPoolTemplIN10tensorflow6thread16EigenEnvironmentEEC1EibS3_
fun:_ZN10tensorflow6thread10ThreadPoolC1EPNS_3EnvERKNS_13ThreadOptionsERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEibPN5Eigen9AllocatorE
fun:_ZN10tensorflow6thread10ThreadPoolC1EPNS_3EnvERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEi
fun:_ZN10tensorflow12_GLOBAL__N_121GraphRunnerThreadPoolEv
fun:_ZN10tensorflow12_GLOBAL__N_123SingleThreadedCpuDeviceC1EPNS_3EnvE
fun:_ZN10tensorflow26NewSingleThreadedCpuDeviceEPNS_3EnvE
fun:_ZN10tensorflow11GraphRunnerC1EPNS_3EnvE
fun:_ZN10tensorflow12ShapeRefinerC1EiPKNS_19OpRegistryInterfaceE
fun:_ZN10tensorflow22ConvertGraphDefToGraphERKNS_23GraphConstructorOptionsERKNS_8GraphDefEPNS_5GraphE
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPcEEvT_S7_St20forward_iterator_tag
fun:_ZNSt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFN10tensorflow6StatusERKNS8_9AttrSliceEPNS8_11FunctionDefEEEEC1EOSH_
fun:_ZN9__gnu_cxx13new_allocatorINSt8__detail10_Hash_nodeISt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFN10tensorflow6StatusERKNSC_9AttrSliceEPNSC_11FunctionDefEEEELb1EEEE9constructISL_JSL_EEEvPT_DpOT0_
fun:_ZNSt16allocator_traitsISaINSt8__detail10_Hash_nodeISt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFN10tensorflow6StatusERKNSB_9AttrSliceEPNSB_11FunctionDefEEEELb1EEEEE9constructISK_JSK_EEEvRSM_PT_DpOT0_
fun:_ZNSt8__detail16_Hashtable_allocISaINS_10_Hash_nodeISt4pairIKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFN10tensorflow6StatusERKNSB_9AttrSliceEPNSB_11FunctionDefEEEELb1EEEEE16_M_allocate_nodeIJSK_EEEPSL_DpOT_
fun:_ZNSt10_HashtableINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS5_St8functionIFN10tensorflow6StatusERKNS9_9AttrSliceEPNS9_11FunctionDefEEEESaISI_ENSt8__detail10_Select1stESt8equal_toIS5_ESt4hashIS5_ENSK_18_Mod_range_hashingENSK_20_Default_ranged_hashENSK_20_Prime_rehash_policyENSK_17_Hashtable_traitsILb1ELb0ELb1EEEE10_M_emplaceIJSI_EEES6_INSK_14_Node_iteratorISI_Lb0ELb1EEEbESt17integral_constantIbLb1EEDpOT_
fun:_ZNSt8__detail7_InsertINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt4pairIKS6_St8functionIFN10tensorflow6StatusERKNSA_9AttrSliceEPNSA_11FunctionDefEEEESaISJ_ENS_10_Select1stESt8equal_toIS6_ESt4hashIS6_ENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyENS_17_Hashtable_traitsILb1ELb0ELb1EEELb0EE6insertISJ_vEES7_INS_14_Node_iteratorISJ_Lb0ELb1EEEbEOT_
fun:_ZNSt13unordered_mapINSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFN10tensorflow6StatusERKNS7_9AttrSliceEPNS7_11FunctionDefEEESt4hashIS5_ESt8equal_toIS5_ESaISt4pairIKS5_SF_EEE6insertEOSM_
fun:_ZN10tensorflow8gradient10RegisterOpERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEESt8functionIFNS_6StatusERKNS_9AttrSliceEPNS_11FunctionDefEEE
fun:_Z41__static_initialization_and_destruction_0ii
fun:_GLOBAL__sub_I_array_grad.cc
}
{
<tensorflow_full>
Memcheck:Leak
match-leak-kinds: reachable
fun:_Znwm
fun:_ZNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEE12_M_constructIPcEEvT_S7_St20forward_iterator_tag
fun:_ZN10tensorflow10monitoring17AbstractMetricDefC1ERKS1_