forked from nshepperd/gpt-2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfoo.txt
4291 lines (4274 loc) · 540 KB
/
foo.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
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$
(myenv) surya.dantuluri@surya-tf-4-vm:~/gpt-2$ PYTHONPATH=src ./train.py --dataset data/ --optimizer sm3 --model_name 774M
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorflow/python/framework/dtypes.py:516: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
_np_qint8 = np.dtype([("qint8", np.int8, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorflow/python/framework/dtypes.py:517: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
_np_quint8 = np.dtype([("quint8", np.uint8, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorflow/python/framework/dtypes.py:518: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
_np_qint16 = np.dtype([("qint16", np.int16, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorflow/python/framework/dtypes.py:519: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
_np_quint16 = np.dtype([("quint16", np.uint16, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorflow/python/framework/dtypes.py:520: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
_np_qint32 = np.dtype([("qint32", np.int32, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorflow/python/framework/dtypes.py:525: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)type'.
np_resource = np.dtype([("resource", np.ubyte, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:541: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,))/ '(1,)type'.
_np_qint8 = np.dtype([("qint8", np.int8, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:542: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,))/ '(1,)type'.
_np_quint8 = np.dtype([("quint8", np.uint8, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:543: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,))/ '(1,)type'.
_np_qint16 = np.dtype([("qint16", np.int16, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:544: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,))/ '(1,)type'.
_np_quint16 = np.dtype([("quint16", np.uint16, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:545: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,))/ '(1,)type'.
_np_qint32 = np.dtype([("qint32", np.int32, 1)])
/home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorboard/compat/tensorflow_stub/dtypes.py:550: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,))/ '(1,)type'.
np_resource = np.dtype([("resource", np.ubyte, 1)])
WARNING:tensorflow:From /home/surya.dantuluri/gpt-2/src/model.py:147: The name tf.AUTO_REUSE is deprecated. Please use tf.compat.v1.AUTO_REUSE instead.
WARNING:tensorflow:From /home/surya.dantuluri/gpt-2/src/memory_saving_gradients.py:13: The name tf.GraphKeys is deprecated. Please usetf.compat.v1.GraphKeys instead.
WARNING:tensorflow:From /home/surya.dantuluri/gpt-2/src/sm3.py:26: The name tf.train.Optimizer is deprecated. Please use tf.compat.v1.train.Optimizer instead.
WARNING:tensorflow:From ./train.py:96: The name tf.ConfigProto is deprecated. Please use tf.compat.v1.ConfigProto instead.
WARNING:tensorflow:From ./train.py:99: The name tf.Session is deprecated. Please use tf.compat.v1.Session instead.
2019-09-04 21:03:44.200370: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
2019-09-04 21:03:44.208439: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcuda.so.1
2019-09-04 21:03:44.398444: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:1005] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2019-09-04 21:03:44.398940: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x5581f6d662e0 executing computations on platform CUDA. Devices:
2019-09-04 21:03:44.398968: I tensorflow/compiler/xla/service/service.cc:175] StreamExecutor device (0): Tesla V100-SXM2-16GB, Compute Capability 7.0
2019-09-04 21:03:44.401961: I tensorflow/core/platform/profile_utils/cpu_utils.cc:94] CPU Frequency: 2200000000 Hz
2019-09-04 21:03:44.402183: I tensorflow/compiler/xla/service/service.cc:168] XLA service 0x5581f6dd75c0 executing computations on platform Host. Devices:
2019-09-04 21:03:44.402222: I tensorflow/compiler/xla/service/service.cc:175] StreamExecutor device (0): <undefined>, <undefined>
2019-09-04 21:03:44.402436: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:1005] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2019-09-04 21:03:44.402791: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1640] Found device 0 with properties:
name: Tesla V100-SXM2-16GB major: 7 minor: 0 memoryClockRate(GHz): 1.53
pciBusID: 0000:00:04.0
2019-09-04 21:03:44.403052: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcudart.so.10.0
2019-09-04 21:03:44.404335: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcublas.so.10.0
2019-09-04 21:03:44.405504: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcufft.so.10.0
2019-09-04 21:03:44.405801: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcurand.so.10.0
2019-09-04 21:03:44.407400: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcusolver.so.10.0
2019-09-04 21:03:44.408813: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcusparse.so.10.0
2019-09-04 21:03:44.413029: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcudnn.so.7
2019-09-04 21:03:44.413221: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:1005] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2019-09-04 21:03:44.414153: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:1005] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2019-09-04 21:03:44.414961: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1763] Adding visible gpu devices: 0
2019-09-04 21:03:44.415048: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcudart.so.10.0
2019-09-04 21:03:44.416661: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1181] Device interconnect StreamExecutor with strength 1 edge matrix:
2019-09-04 21:03:44.416696: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1187] 0
2019-09-04 21:03:44.416707: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1200] 0: N
2019-09-04 21:03:44.417036: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:1005] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2019-09-04 21:03:44.419437: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:1005] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
2019-09-04 21:03:44.420398: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1326] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 14927 MB memory) -> physical GPU (device: 0, name: Tesla V100-SXM2-16GB, pci bus id: 0000:00:04.0, compute capability: 7.0)
WARNING:tensorflow:From ./train.py:100: The name tf.placeholder is deprecated. Please use tf.compat.v1.placeholder instead.
WARNING:tensorflow:From /home/surya.dantuluri/gpt-2/src/sample.py:64: to_float (from tensorflow.python.ops.math_ops) is deprecated andwill be removed in a future version.
Instructions for updating:
Use `tf.cast` instead.
WARNING:tensorflow:From /home/surya.dantuluri/gpt-2/src/sample.py:16: add_dispatch_support.<locals>.wrapper (from tensorflow.python.ops.array_ops) is deprecated and will be removed in a future version.
Instructions for updating:
Use tf.where in 2.0, which has the same broadcast rule as np.where
WARNING:tensorflow:From /home/surya.dantuluri/gpt-2/src/sample.py:67: multinomial (from tensorflow.python.ops.random_ops) is deprecated and will be removed in a future version.
Instructions for updating:
Use `tf.random.categorical` instead.
WARNING:tensorflow:From /home/surya.dantuluri/gpt-2/src/sm3.py:45: _colocate_with (from tensorflow.python.framework.ops) is deprecatedand will be removed in a future version.
Instructions for updating:
Colocations handled automatically by placer.
WARNING:tensorflow:From ./train.py:154: The name tf.summary.scalar is deprecated. Please use tf.compat.v1.summary.scalar instead.
WARNING:tensorflow:From ./train.py:157: The name tf.summary.merge is deprecated. Please use tf.compat.v1.summary.merge instead.
WARNING:tensorflow:From ./train.py:159: The name tf.summary.FileWriter is deprecated. Please use tf.compat.v1.summary.FileWriter instead.
WARNING:tensorflow:From ./train.py:162: The name tf.train.Saver is deprecated. Please use tf.compat.v1.train.Saver instead.
Loading checkpoint models/774M/model.ckpt
WARNING:tensorflow:From /home/surya.dantuluri/miniconda3/envs/myenv/lib/python3.6/site-packages/tensorflow/python/training/saver.py:1276: checkpoint_exists (from tensorflow.python.training.checkpoint_management) is deprecated and will be removed in a future version.
Instructions for updating:
Use standard file APIs to check for files with this prefix.
Loading dataset...
100%|███████████████████████████████████████████████████████████████████████████████████████████████| 951/951 [00:06<00:00, 137.46it/s]
dataset has 1087430 tokens
Training...
2019-09-04 21:06:01.906951: W tensorflow/compiler/jit/mark_for_compilation_pass.cc:1412] (One-time warning): Not using XLA:CPU for cluster because envvar TF_XLA_FLAGS=--tf_xla_cpu_global_jit was not set. If you want XLA:CPU, either set that envvar, or use experimental_jit_scope to enable XLA:CPU. To confirm that XLA is active, pass --vmodule=xla_compilation_cache=1 (as a proper command-line flag, not via TF_XLA_FLAGS) or set the envvar XLA_FLAGS=--xla_hlo_profile.
2019-09-04 21:06:08.877240: I tensorflow/stream_executor/platform/default/dso_loader.cc:42] Successfully opened dynamic library libcublas.so.10.0
2019-09-04 21:06:19.828163: W tensorflow/core/common_runtime/bfc_allocator.cc:314] Allocator (GPU_0_bfc) ran out of memory trying to allocate 80.00MiB (rounded to 83886080). Current allocation summary follows.
2019-09-04 21:06:19.828342: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (256): Total Chunks: 1135, Chunks in use: 1130. 283.8KiB allocated for chunks. 282.5KiB in use in bin. 4.4KiB client-requested in use in bin.
2019-09-04 21:06:19.828366: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (512): Total Chunks: 1, Chunks in use: 0. 512B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828379: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (1024): Total Chunks: 3, Chunks in use: 1. 4.0KiB allocated for chunks. 1.2KiB in use in bin. 1.0KiB client-requested in use in bin.
2019-09-04 21:06:19.828392: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (2048): Total Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828406: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (4096): Total Chunks: 1560, Chunks in use: 1559. 7.61MiB allocated for chunks. 7.61MiB in use in bin. 7.61MiB client-requested in use in bin.
2019-09-04 21:06:19.828434: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (8192): Total Chunks: 253, Chunks in use: 253.3.71MiB allocated for chunks. 3.71MiB in use in bin. 3.71MiB client-requested in use in bin.
2019-09-04 21:06:19.828448: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (16384): Total Chunks: 289, Chunks in use: 289. 5.64MiB allocated for chunks. 5.64MiB in use in bin. 5.64MiB client-requested in use in bin.
2019-09-04 21:06:19.828461: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (32768): Total Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828481: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (65536): Total Chunks: 3, Chunks in use: 2. 240.0KiB allocated for chunks. 160.0KiB in use in bin. 160.0KiB client-requested in use in bin.
2019-09-04 21:06:19.828493: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (131072): Total Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828509: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (262144): Total Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828523: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (524288): Total Chunks: 1, Chunks in use: 0. 988.2KiB allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828556: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (1048576): Total Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828566: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (2097152): Total Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828580: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (4194304): Total Chunks: 210, Chunks in use: 210. 1.24GiB allocated for chunks. 1.24GiB in use in bin. 1.24GiB client-requested in use in bin.
2019-09-04 21:06:19.828602: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (8388608): Total Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828617: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (16777216): Total Chunks: 543, Chunks in use: 543. 12.14GiB allocated for chunks. 12.14GiB in use in bin. 12.12GiB client-requested in use in bin.
2019-09-04 21:06:19.828633: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (33554432): Total Chunks: 8, Chunks in use: 7. 317.45MiB allocated for chunks. 260.97MiB in use in bin. 165.00MiB client-requested in use in bin.
2019-09-04 21:06:19.828648: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (67108864): Total Chunks: 8, Chunks in use: 8. 640.00MiB allocated for chunks. 640.00MiB in use in bin. 640.00MiB client-requested in use in bin.
2019-09-04 21:06:19.828665: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (134217728): Total Chunks: 1, Chunks in use: 1. 245.40MiB allocated for chunks. 245.40MiB in use in bin. 245.40MiB client-requested in use in bin.
2019-09-04 21:06:19.828681: I tensorflow/core/common_runtime/bfc_allocator.cc:764] Bin (268435456): Total Chunks: 0, Chunks in use: 0. 0B allocated for chunks. 0B in use in bin. 0B client-requested in use in bin.
2019-09-04 21:06:19.828696: I tensorflow/core/common_runtime/bfc_allocator.cc:780] Bin for 80.00MiB was 64.00MiB, Chunk State:
2019-09-04 21:06:19.828710: I tensorflow/core/common_runtime/bfc_allocator.cc:793] Next region of size 7061415424
2019-09-04 21:06:19.828725: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a76000000 next 2162 of size 5120
2019-09-04 21:06:19.828737: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a76001400 next 2163 of size 6553600
2019-09-04 21:06:19.828749: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a76641400 next 2164 of size 15360
2019-09-04 21:06:19.828761: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a76645000 next 2165 of size 19660800
2019-09-04 21:06:19.828773: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77905000 next 2166 of size 256
2019-09-04 21:06:19.828785: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77905100 next 2167 of size 5120
2019-09-04 21:06:19.828796: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77906500 next 2168 of size 6553600
2019-09-04 21:06:19.828811: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77f46500 next 2169 of size 15360
2019-09-04 21:06:19.828820: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77f4a100 next 2170 of size 256
2019-09-04 21:06:19.828837: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77f4a200 next 2171 of size 5120
2019-09-04 21:06:19.828849: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77f4b600 next 2172 of size 5120
2019-09-04 21:06:19.828860: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77f4ca00 next 2173 of size 5120
2019-09-04 21:06:19.828872: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77f4de00 next 2174 of size 5120
2019-09-04 21:06:19.828885: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a77f4f200 next 2175 of size 26214400
2019-09-04 21:06:19.828896: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7984f200 next 2176 of size 5120
2019-09-04 21:06:19.828915: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a79850600 next 2177 of size 15360
2019-09-04 21:06:19.828928: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a79854200 next 2178 of size 15360
2019-09-04 21:06:19.828950: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a79857e00 next 2179 of size 15360
2019-09-04 21:06:19.828962: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7985ba00 next 2180 of size 5120
2019-09-04 21:06:19.828972: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7985ce00 next 2181 of size 26214400
2019-09-04 21:06:19.828985: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7b15ce00 next 2182 of size 5120
2019-09-04 21:06:19.828997: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7b15e200 next 2183 of size 5120
2019-09-04 21:06:19.829007: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7b15f600 next 2184 of size 6553600
2019-09-04 21:06:19.829019: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7b79f600 next 2185 of size 256
2019-09-04 21:06:19.829049: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7b79f700 next 2186 of size 26214400
2019-09-04 21:06:19.829066: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7d09f700 next 2187 of size 5120
2019-09-04 21:06:19.829073: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7d0a0b00 next 2188 of size 5120
2019-09-04 21:06:19.829086: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7d0a1f00 next 2189 of size 5120
2019-09-04 21:06:19.829097: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7d0a3300 next 2190 of size 26214400
2019-09-04 21:06:19.829108: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9a3300 next 2191 of size 20480
2019-09-04 21:06:19.829121: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9a8300 next 2192 of size 5120
2019-09-04 21:06:19.829132: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9a9700 next 2193 of size 5120
2019-09-04 21:06:19.829145: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9aab00 next 2194 of size 5120
2019-09-04 21:06:19.829158: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9abf00 next 2195 of size 15360
2019-09-04 21:06:19.829175: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9afb00 next 2196 of size 20480
2019-09-04 21:06:19.829187: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9b4b00 next 2197 of size 20480
2019-09-04 21:06:19.829217: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9b9b00 next 2198 of size 5120
2019-09-04 21:06:19.829228: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9baf00 next 2199 of size 5120
2019-09-04 21:06:19.829239: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9bc300 next 2200 of size 5120
2019-09-04 21:06:19.829261: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9bd700 next 2201 of size 15360
2019-09-04 21:06:19.829271: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9c1300 next 2202 of size 20480
2019-09-04 21:06:19.829282: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9c6300 next 2203 of size 20480
2019-09-04 21:06:19.829292: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9cb300 next 2204 of size 20480
2019-09-04 21:06:19.829301: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9d0300 next 2205 of size 5120
2019-09-04 21:06:19.829312: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9d1700 next 2206 of size 5120
2019-09-04 21:06:19.829323: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9d2b00 next 2207 of size 5120
2019-09-04 21:06:19.829334: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7e9d3f00 next 2208 of size 19660800
2019-09-04 21:06:19.829345: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7fc93f00 next 2209 of size 15360
2019-09-04 21:06:19.829356: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a7fc97b00 next 2210 of size 26214400
2019-09-04 21:06:19.829368: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a81597b00 next 2211 of size 5120
2019-09-04 21:06:19.829379: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a81598f00 next 2212 of size 20480
2019-09-04 21:06:19.829390: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8159df00 next 2213 of size 5120
2019-09-04 21:06:19.829402: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8159f300 next 2214 of size 256
2019-09-04 21:06:19.829421: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8159f400 next 2215 of size 5120
2019-09-04 21:06:19.829435: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a815a0800 next 2216 of size 19660800
2019-09-04 21:06:19.829446: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82860800 next 2217 of size 5120
2019-09-04 21:06:19.829458: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82861c00 next 2218 of size 5120
2019-09-04 21:06:19.829470: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82863000 next 2219 of size 5120
2019-09-04 21:06:19.829481: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82864400 next 2220 of size 20480
2019-09-04 21:06:19.829493: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82869400 next 2221 of size 5120
2019-09-04 21:06:19.829504: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8286a800 next 2222 of size 5120
2019-09-04 21:06:19.829514: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8286bc00 next 2223 of size 5120
2019-09-04 21:06:19.829522: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8286d000 next 2224 of size 5120
2019-09-04 21:06:19.829533: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8286e400 next 2225 of size 15360
2019-09-04 21:06:19.829544: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82872000 next 2226 of size 256
2019-09-04 21:06:19.829554: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82872100 next 2227 of size 5120
2019-09-04 21:06:19.829565: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82873500 next 2228 of size 5120
2019-09-04 21:06:19.829575: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82874900 next 2229 of size 5120
2019-09-04 21:06:19.829584: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82875d00 next 2230 of size 6553600
2019-09-04 21:06:19.829592: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82eb5d00 next 2231 of size 5120
2019-09-04 21:06:19.829604: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82eb7100 next 2232 of size 20480
2019-09-04 21:06:19.829621: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82ebc100 next 2233 of size 5120
2019-09-04 21:06:19.829637: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a82ebd500 next 2234 of size 26214400
2019-09-04 21:06:19.829649: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a847bd500 next 2235 of size 5120
2019-09-04 21:06:19.829678: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a847be900 next 2236 of size 5120
2019-09-04 21:06:19.829697: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a847bfd00 next 2237 of size 256
2019-09-04 21:06:19.829721: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a847bfe00 next 2238 of size 5120
2019-09-04 21:06:19.829743: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a847c1200 next 2239 of size 5120
2019-09-04 21:06:19.829767: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a847c2600 next 2240 of size 5120
2019-09-04 21:06:19.829782: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a847c3a00 next 2241 of size 5120
2019-09-04 21:06:19.829796: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a847c4e00 next 2242 of size 5120
2019-09-04 21:06:19.829822: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a847c6200 next 2243 of size 26214400
2019-09-04 21:06:19.829844: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860c6200 next 2244 of size 20480
2019-09-04 21:06:19.829866: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860cb200 next 2245 of size 5120
2019-09-04 21:06:19.829888: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860cc600 next 2644 of size 256
2019-09-04 21:06:19.829927: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860cc700 next 2646 of size 256
2019-09-04 21:06:19.829951: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860cc800 next 2648 of size 256
2019-09-04 21:06:19.829967: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860cc900 next 2650 of size 256
2019-09-04 21:06:19.829982: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860cca00 next 2645 of size 256
2019-09-04 21:06:19.830002: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860ccb00 next 2649 of size 256
2019-09-04 21:06:19.830023: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860ccc00 next 2651 of size 256
2019-09-04 21:06:19.830049: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860ccd00 next 2641 of size 256
2019-09-04 21:06:19.830067: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860cce00 next 2647 of size 256
2019-09-04 21:06:19.830086: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a860ccf00 next 2642 of size 26214400
2019-09-04 21:06:19.830094: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a879ccf00 next 2643 of size 256
2019-09-04 21:06:19.830102: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a879cd000 next 2631 of size 256
2019-09-04 21:06:19.830113: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a879cd100 next 2640 of size 256
2019-09-04 21:06:19.830124: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a879cd200 next 2639 of size 256
2019-09-04 21:06:19.830131: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a879cd300 next 2637 of size 5120
2019-09-04 21:06:19.830142: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a879ce700 next 2247 of size 256
2019-09-04 21:06:19.830150: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a879ce800 next 2635 of size 26214400
2019-09-04 21:06:19.830158: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892ce800 next 2636 of size 256
2019-09-04 21:06:19.830170: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892ce900 next 2638 of size 20480
2019-09-04 21:06:19.830178: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d3900 next 2248 of size 256
2019-09-04 21:06:19.830187: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d3a00 next 2270 of size 5120
2019-09-04 21:06:19.830197: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d4e00 next 2634 of size 256
2019-09-04 21:06:19.830203: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d4f00 next 2628 of size 5120
2019-09-04 21:06:19.830213: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d6300 next 2632 of size 256
2019-09-04 21:06:19.830222: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d6400 next 2629 of size 5120
2019-09-04 21:06:19.830229: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d7800 next 2630 of size 256
2019-09-04 21:06:19.830239: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d7900 next 2633 of size 5120
2019-09-04 21:06:19.830247: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d8d00 next 2625 of size 256
2019-09-04 21:06:19.830254: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a892d8e00 next 2623 of size 6553600
2019-09-04 21:06:19.830264: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a89918e00 next 2624 of size 256
2019-09-04 21:06:19.830273: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a89918f00 next 2626 of size 5120
2019-09-04 21:06:19.830282: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8991a300 next 2627 of size 256
2019-09-04 21:06:19.830305: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8991a400 next 2620 of size 19660800
2019-09-04 21:06:19.832972: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8abda400 next 2622 of size 256
2019-09-04 21:06:19.833018: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8abda500 next 2619 of size 15360
2019-09-04 21:06:19.833028: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8abde100 next 2606 of size 256
2019-09-04 21:06:19.833038: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8abde200 next 2621 of size 26214400
2019-09-04 21:06:19.833047: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8c4de200 next 2618 of size 256
2019-09-04 21:06:19.833057: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8c4de300 next 2617 of size 5120
2019-09-04 21:06:19.833067: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8c4df700 next 2616 of size 256
2019-09-04 21:06:19.833076: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8c4df800 next 2615 of size 26214400
2019-09-04 21:06:19.833086: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dddf800 next 2253 of size 256
2019-09-04 21:06:19.833112: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dddf900 next 2612 of size 20480
2019-09-04 21:06:19.833122: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde4900 next 2613 of size 256
2019-09-04 21:06:19.833133: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde4a00 next 2614 of size 5120
2019-09-04 21:06:19.833143: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde5e00 next 2609 of size 256
2019-09-04 21:06:19.833153: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde5f00 next 2610 of size 5120
2019-09-04 21:06:19.833163: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde7300 next 2604 of size 256
2019-09-04 21:06:19.833184: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde7400 next 2246 of size 5120
2019-09-04 21:06:19.833193: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde8800 next 2608 of size 256
2019-09-04 21:06:19.833203: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde8900 next 2611 of size 5120
2019-09-04 21:06:19.833212: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde9d00 next 2607 of size 256
2019-09-04 21:06:19.833221: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8dde9e00 next 2249 of size 6553600
2019-09-04 21:06:19.833231: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8e429e00 next 2251 of size 256
2019-09-04 21:06:19.833240: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8e429f00 next 2605 of size 5120
2019-09-04 21:06:19.833249: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8e42b300 next 2602 of size 256
2019-09-04 21:06:19.833258: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8e42b400 next 2601 of size 19660800
2019-09-04 21:06:19.833268: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8f6eb400 next 2603 of size 256
2019-09-04 21:06:19.833277: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8f6eb500 next 2599 of size 15360
2019-09-04 21:06:19.833287: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8f6ef100 next 2598 of size 256
2019-09-04 21:06:19.833296: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a8f6ef200 next 2600 of size 26214400
2019-09-04 21:06:19.833314: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a90fef200 next 2596 of size 256
2019-09-04 21:06:19.833323: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a90fef300 next 2597 of size 5120
2019-09-04 21:06:19.834472: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a90ff0700 next 2595 of size 256
2019-09-04 21:06:19.834486: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a90ff0800 next 2588 of size 26214400
2019-09-04 21:06:19.834497: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f0800 next 2590 of size 256
2019-09-04 21:06:19.834508: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f0900 next 2591 of size 20480
2019-09-04 21:06:19.834518: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f5900 next 2593 of size 256
2019-09-04 21:06:19.834528: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f5a00 next 2594 of size 5120
2019-09-04 21:06:19.834552: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f6e00 next 2586 of size 256
2019-09-04 21:06:19.834560: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f6f00 next 2587 of size 5120
2019-09-04 21:06:19.834569: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f8300 next 2592 of size 256
2019-09-04 21:06:19.834579: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f8400 next 2589 of size 5120
2019-09-04 21:06:19.834589: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f9800 next 2584 of size 256
2019-09-04 21:06:19.834599: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928f9900 next 2585 of size 5120
2019-09-04 21:06:19.834609: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928fad00 next 2579 of size 256
2019-09-04 21:06:19.834620: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a928fae00 next 2583 of size 6553600
2019-09-04 21:06:19.834629: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a92f3ae00 next 2581 of size 256
2019-09-04 21:06:19.834640: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a92f3af00 next 2582 of size 5120
2019-09-04 21:06:19.834649: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a92f3c300 next 2578 of size 256
2019-09-04 21:06:19.834659: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a92f3c400 next 2268 of size 19660800
2019-09-04 21:06:19.834669: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a941fc400 next 2250 of size 256
2019-09-04 21:06:19.834679: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a941fc500 next 2580 of size 15360
2019-09-04 21:06:19.834689: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a94200100 next 2267 of size 256
2019-09-04 21:06:19.834699: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a94200200 next 2264 of size 26214400
2019-09-04 21:06:19.834709: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a95b00200 next 2265 of size 256
2019-09-04 21:06:19.834719: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a95b00300 next 2577 of size 5120
2019-09-04 21:06:19.834729: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a95b01700 next 2266 of size 256
2019-09-04 21:06:19.834739: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a95b01800 next 2576 of size 26214400
2019-09-04 21:06:19.834749: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97401800 next 2574 of size 256
2019-09-04 21:06:19.834758: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97401900 next 2573 of size 20480
2019-09-04 21:06:19.834768: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97406900 next 2575 of size 256
2019-09-04 21:06:19.834778: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97406a00 next 2569 of size 5120
2019-09-04 21:06:19.834788: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97407e00 next 2571 of size 256
2019-09-04 21:06:19.834797: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97407f00 next 2572 of size 5120
2019-09-04 21:06:19.834818: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97409300 next 2563 of size 256
2019-09-04 21:06:19.924270: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97409400 next 2570 of size 5120
2019-09-04 21:06:19.924319: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9740a800 next 2566 of size 256
2019-09-04 21:06:19.924328: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9740a900 next 2567 of size 5120
2019-09-04 21:06:19.924339: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9740bd00 next 2568 of size 256
2019-09-04 21:06:19.924349: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9740be00 next 2558 of size 6553600
2019-09-04 21:06:19.924360: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97a4be00 next 2565 of size 256
2019-09-04 21:06:19.924370: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97a4bf00 next 2562 of size 5120
2019-09-04 21:06:19.924380: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97a4d300 next 2564 of size 256
2019-09-04 21:06:19.924390: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a97a4d400 next 2557 of size 19660800
2019-09-04 21:06:19.924400: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a98d0d400 next 2559 of size 256
2019-09-04 21:06:19.924410: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a98d0d500 next 2560 of size 15360
2019-09-04 21:06:19.924420: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a98d11100 next 2561 of size 256
2019-09-04 21:06:19.924430: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a98d11200 next 2552 of size 26214400
2019-09-04 21:06:19.924440: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9a611200 next 2545 of size 256
2019-09-04 21:06:19.924456: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9a611300 next 2553 of size 5120
2019-09-04 21:06:19.924466: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9a612700 next 2554 of size 256
2019-09-04 21:06:19.924476: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9a612800 next 2555 of size 26214400
2019-09-04 21:06:19.924487: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf12800 next 2556 of size 256
2019-09-04 21:06:19.924497: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf12900 next 2549 of size 20480
2019-09-04 21:06:19.924507: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf17900 next 2550 of size 256
2019-09-04 21:06:19.924517: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf17a00 next 2551 of size 5120
2019-09-04 21:06:19.924528: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf18e00 next 2263 of size 256
2019-09-04 21:06:19.924538: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf18f00 next 2547 of size 5120
2019-09-04 21:06:19.924548: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf1a300 next 2548 of size 256
2019-09-04 21:06:19.924559: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf1a400 next 2544 of size 5120
2019-09-04 21:06:19.924568: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf1b800 next 2546 of size 256
2019-09-04 21:06:19.924579: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf1b900 next 2540 of size 5120
2019-09-04 21:06:19.924589: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf1cd00 next 2542 of size 256
2019-09-04 21:06:19.924598: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9bf1ce00 next 2543 of size 6553600
2019-09-04 21:06:19.924608: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9c55ce00 next 2533 of size 256
2019-09-04 21:06:19.924618: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9c55cf00 next 2541 of size 5120
2019-09-04 21:06:19.924628: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9c55e300 next 2537 of size 256
2019-09-04 21:06:19.924638: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9c55e400 next 2538 of size 19660800
2019-09-04 21:06:19.924648: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9d81e400 next 2539 of size 256
2019-09-04 21:06:19.924658: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9d81e500 next 2536 of size 15360
2019-09-04 21:06:19.924668: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9d822100 next 2534 of size 256
2019-09-04 21:06:19.924679: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9d822200 next 2535 of size 26214400
2019-09-04 21:06:19.924689: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9f122200 next 2532 of size 256
2019-09-04 21:06:19.924699: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9f122300 next 2528 of size 5120
2019-09-04 21:06:19.924710: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9f123700 next 2529 of size 256
2019-09-04 21:06:19.924720: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1a9f123800 next 2531 of size 26214400
2019-09-04 21:06:19.924729: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a23800 next 2530 of size 256
2019-09-04 21:06:19.924740: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a23900 next 2520 of size 20480
2019-09-04 21:06:19.924750: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a28900 next 2262 of size 256
2019-09-04 21:06:19.924759: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a28a00 next 2526 of size 5120
2019-09-04 21:06:19.924770: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a29e00 next 2527 of size 256
2019-09-04 21:06:19.924780: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a29f00 next 2522 of size 5120
2019-09-04 21:06:19.924790: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a2b300 next 2523 of size 256
2019-09-04 21:06:19.924800: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a2b400 next 2524 of size 5120
2019-09-04 21:06:19.924810: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a2c800 next 2521 of size 256
2019-09-04 21:06:19.924820: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a2c900 next 2525 of size 5120
2019-09-04 21:06:19.924830: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a2dd00 next 2514 of size 256
2019-09-04 21:06:19.924840: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa0a2de00 next 2510 of size 6553600
2019-09-04 21:06:19.924850: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa106de00 next 2518 of size 256
2019-09-04 21:06:19.924861: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa106df00 next 2519 of size 5120
2019-09-04 21:06:19.924871: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa106f300 next 2515 of size 256
2019-09-04 21:06:19.924882: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa106f400 next 2516 of size 19660800
2019-09-04 21:06:19.924893: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa232f400 next 2513 of size 256
2019-09-04 21:06:19.924903: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa232f500 next 2517 of size 15360
2019-09-04 21:06:19.924913: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa2333100 next 2508 of size 256
2019-09-04 21:06:19.924924: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa2333200 next 2512 of size 26214400
2019-09-04 21:06:19.924933: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa3c33200 next 2511 of size 256
2019-09-04 21:06:19.924954: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa3c33300 next 2509 of size 5120
2019-09-04 21:06:19.924968: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa3c34700 next 2500 of size 256
2019-09-04 21:06:19.924976: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa3c34800 next 2261 of size 26214400
2019-09-04 21:06:19.924983: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa5534800 next 2504 of size 256
2019-09-04 21:06:19.924993: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa5534900 next 2505 of size 20480
2019-09-04 21:06:19.925002: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa5539900 next 2506 of size 256
2019-09-04 21:06:19.925011: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa5539a00 next 2507 of size 5120
2019-09-04 21:06:19.925021: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa553ae00 next 2503 of size 256
2019-09-04 21:06:19.925031: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa553af00 next 2499 of size 5120
2019-09-04 21:06:19.925041: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa553c300 next 2497 of size 256
2019-09-04 21:06:19.925050: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa553c400 next 2501 of size 5120
2019-09-04 21:06:19.925060: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa553d800 next 2496 of size 256
2019-09-04 21:06:19.925069: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa553d900 next 2498 of size 5120
2019-09-04 21:06:19.925079: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa553ed00 next 2502 of size 256
2019-09-04 21:06:19.925088: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa553ee00 next 2492 of size 6553600
2019-09-04 21:06:19.925097: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa5b7ee00 next 2495 of size 256
2019-09-04 21:06:19.925108: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa5b7ef00 next 2493 of size 5120
2019-09-04 21:06:19.925117: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa5b80300 next 2494 of size 256
2019-09-04 21:06:19.925126: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa5b80400 next 2258 of size 19660800
2019-09-04 21:06:19.925136: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa6e40400 next 2259 of size 256
2019-09-04 21:06:19.925146: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa6e40500 next 2486 of size 15360
2019-09-04 21:06:19.925155: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa6e44100 next 2491 of size 256
2019-09-04 21:06:19.925165: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa6e44200 next 2489 of size 26214400
2019-09-04 21:06:19.925175: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa8744200 next 2490 of size 256
2019-09-04 21:06:19.925184: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa8744300 next 2488 of size 5120
2019-09-04 21:06:19.925194: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa8745700 next 2487 of size 256
2019-09-04 21:06:19.925204: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aa8745800 next 2485 of size 26214400
2019-09-04 21:06:19.925213: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa045800 next 2482 of size 256
2019-09-04 21:06:19.925222: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa045900 next 2484 of size 20480
2019-09-04 21:06:19.925231: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04a900 next 2483 of size 256
2019-09-04 21:06:19.925241: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04aa00 next 2480 of size 5120
2019-09-04 21:06:19.925250: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04be00 next 2481 of size 256
2019-09-04 21:06:19.925260: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04bf00 next 2479 of size 5120
2019-09-04 21:06:19.925269: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04d300 next 2476 of size 256
2019-09-04 21:06:19.925296: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04d400 next 2474 of size 5120
2019-09-04 21:06:19.925306: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04e800 next 2475 of size 256
2019-09-04 21:06:19.925316: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04e900 next 2477 of size 5120
2019-09-04 21:06:19.925326: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04fd00 next 2478 of size 256
2019-09-04 21:06:19.925336: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa04fe00 next 2473 of size 6553600
2019-09-04 21:06:19.925346: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa68fe00 next 2468 of size 256
2019-09-04 21:06:19.925358: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa68ff00 next 2470 of size 5120
2019-09-04 21:06:19.925368: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa691300 next 2471 of size 256
2019-09-04 21:06:19.925378: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaa691400 next 2469 of size 19660800
2019-09-04 21:06:19.925389: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aab951400 next 2472 of size 256
2019-09-04 21:06:19.925399: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aab951500 next 2465 of size 15360
2019-09-04 21:06:19.925409: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aab955100 next 2462 of size 256
2019-09-04 21:06:19.925420: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aab955200 next 2466 of size 26214400
2019-09-04 21:06:19.925430: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aad255200 next 2467 of size 256
2019-09-04 21:06:19.925440: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aad255300 next 2464 of size 5120
2019-09-04 21:06:19.925467: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aad256700 next 2460 of size 256
2019-09-04 21:06:19.925475: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aad256800 next 2461 of size 26214400
2019-09-04 21:06:19.925496: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb56800 next 2463 of size 256
2019-09-04 21:06:19.925503: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb56900 next 2459 of size 20480
2019-09-04 21:06:19.925513: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb5b900 next 2458 of size 256
2019-09-04 21:06:19.925522: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb5ba00 next 2455 of size 5120
2019-09-04 21:06:19.925532: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb5ce00 next 2457 of size 256
2019-09-04 21:06:19.925560: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb5cf00 next 2454 of size 5120
2019-09-04 21:06:19.925570: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb5e300 next 2456 of size 256
2019-09-04 21:06:19.925581: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb5e400 next 2452 of size 5120
2019-09-04 21:06:19.925591: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb5f800 next 2260 of size 256
2019-09-04 21:06:19.925602: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb5f900 next 2451 of size 5120
2019-09-04 21:06:19.925612: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb60d00 next 2453 of size 256
2019-09-04 21:06:19.925622: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaeb60e00 next 2446 of size 6553600
2019-09-04 21:06:19.925632: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaf1a0e00 next 2449 of size 256
2019-09-04 21:06:20.017098: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaf1a0f00 next 2450 of size 5120
2019-09-04 21:06:20.017151: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaf1a2300 next 2443 of size 256
2019-09-04 21:06:20.017161: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aaf1a2400 next 2444 of size 19660800
2019-09-04 21:06:20.017173: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab0462400 next 2447 of size 256
2019-09-04 21:06:20.017185: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab0462500 next 2448 of size 15360
2019-09-04 21:06:20.017196: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab0466100 next 2445 of size 256
2019-09-04 21:06:20.017208: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab0466200 next 2442 of size 26214400
2019-09-04 21:06:20.017219: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab1d66200 next 2434 of size 256
2019-09-04 21:06:20.017230: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab1d66300 next 2438 of size 5120
2019-09-04 21:06:20.017241: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab1d67700 next 2441 of size 256
2019-09-04 21:06:20.017252: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab1d67800 next 2440 of size 26214400
2019-09-04 21:06:20.017263: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3667800 next 2439 of size 256
2019-09-04 21:06:20.017275: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3667900 next 2437 of size 20480
2019-09-04 21:06:20.017286: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab366c900 next 2436 of size 256
2019-09-04 21:06:20.017297: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab366ca00 next 2435 of size 5120
2019-09-04 21:06:20.017308: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab366de00 next 2432 of size 256
2019-09-04 21:06:20.017321: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab366df00 next 2433 of size 5120
2019-09-04 21:06:20.017332: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab366f300 next 2430 of size 256
2019-09-04 21:06:20.017343: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab366f400 next 2431 of size 5120
2019-09-04 21:06:20.017354: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3670800 next 2422 of size 256
2019-09-04 21:06:20.017366: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3670900 next 2428 of size 5120
2019-09-04 21:06:20.017377: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3671d00 next 2427 of size 256
2019-09-04 21:06:20.017389: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3671e00 next 2429 of size 6553600
2019-09-04 21:06:20.017400: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3cb1e00 next 2424 of size 256
2019-09-04 21:06:20.017411: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3cb1f00 next 2425 of size 5120
2019-09-04 21:06:20.017434: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3cb3300 next 2426 of size 256
2019-09-04 21:06:20.017459: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab3cb3400 next 2423 of size 19660800
2019-09-04 21:06:20.017471: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab4f73400 next 2420 of size 256
2019-09-04 21:06:20.017479: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab4f73500 next 2421 of size 15360
2019-09-04 21:06:20.017489: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab4f77100 next 2418 of size 256
2019-09-04 21:06:20.017500: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab4f77200 next 2419 of size 26214400
2019-09-04 21:06:20.017511: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab6877200 next 2416 of size 256
2019-09-04 21:06:20.017522: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab6877300 next 2411 of size 5120
2019-09-04 21:06:20.017533: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab6878700 next 2417 of size 256
2019-09-04 21:06:20.017543: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab6878800 next 2414 of size 26214400
2019-09-04 21:06:20.017554: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab8178800 next 2415 of size 256
2019-09-04 21:06:20.017565: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab8178900 next 2413 of size 20480
2019-09-04 21:06:20.017576: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab817d900 next 2410 of size 256
2019-09-04 21:06:20.017587: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab817da00 next 2412 of size 5120
2019-09-04 21:06:20.017598: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab817ee00 next 2409 of size 256
2019-09-04 21:06:20.017609: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab817ef00 next 2407 of size 5120
2019-09-04 21:06:20.017620: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab8180300 next 2406 of size 256
2019-09-04 21:06:20.017630: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab8180400 next 2408 of size 5120
2019-09-04 21:06:20.017641: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab8181800 next 2405 of size 256
2019-09-04 21:06:20.017652: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab8181900 next 2404 of size 5120
2019-09-04 21:06:20.017663: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab8182d00 next 2402 of size 256
2019-09-04 21:06:20.017674: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab8182e00 next 2403 of size 6553600
2019-09-04 21:06:20.017685: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab87c2e00 next 2257 of size 256
2019-09-04 21:06:20.017696: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab87c2f00 next 2400 of size 5120
2019-09-04 21:06:20.017707: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab87c4300 next 2401 of size 256
2019-09-04 21:06:20.017718: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab87c4400 next 2396 of size 19660800
2019-09-04 21:06:20.017729: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab9a84400 next 2399 of size 256
2019-09-04 21:06:20.017740: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab9a84500 next 2255 of size 15360
2019-09-04 21:06:20.017751: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab9a88100 next 2256 of size 256
2019-09-04 21:06:20.017762: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ab9a88200 next 2398 of size 26214400
2019-09-04 21:06:20.017773: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abb388200 next 2397 of size 256
2019-09-04 21:06:20.017784: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abb388300 next 2395 of size 5120
2019-09-04 21:06:20.017795: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abb389700 next 2391 of size 256
2019-09-04 21:06:20.017806: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abb389800 next 2392 of size 26214400
2019-09-04 21:06:20.017817: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc89800 next 2393 of size 256
2019-09-04 21:06:20.017828: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc89900 next 2394 of size 20480
2019-09-04 21:06:20.017839: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc8e900 next 2390 of size 256
2019-09-04 21:06:20.017850: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc8ea00 next 2388 of size 5120
2019-09-04 21:06:20.017861: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc8fe00 next 2386 of size 256
2019-09-04 21:06:20.017872: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc8ff00 next 2384 of size 5120
2019-09-04 21:06:20.017883: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc91300 next 2385 of size 256
2019-09-04 21:06:20.017894: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc91400 next 2389 of size 5120
2019-09-04 21:06:20.017905: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc92800 next 2387 of size 256
2019-09-04 21:06:20.017915: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc92900 next 2381 of size 5120
2019-09-04 21:06:20.017926: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc93d00 next 2383 of size 256
2019-09-04 21:06:20.017937: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abcc93e00 next 2380 of size 6553600
2019-09-04 21:06:20.017948: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abd2d3e00 next 2377 of size 256
2019-09-04 21:06:20.017956: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abd2d3f00 next 2382 of size 5120
2019-09-04 21:06:20.017967: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abd2d5300 next 2378 of size 256
2019-09-04 21:06:20.017978: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abd2d5400 next 2379 of size 19660800
2019-09-04 21:06:20.017989: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abe595400 next 2376 of size 256
2019-09-04 21:06:20.017999: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abe595500 next 2375 of size 15360
2019-09-04 21:06:20.018010: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abe599100 next 2371 of size 256
2019-09-04 21:06:20.018022: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abe599200 next 2374 of size 26214400
2019-09-04 21:06:20.018033: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abfe99200 next 2373 of size 256
2019-09-04 21:06:20.018044: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abfe99300 next 2364 of size 5120
2019-09-04 21:06:20.018055: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abfe9a700 next 2372 of size 256
2019-09-04 21:06:20.018066: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1abfe9a800 next 2369 of size 26214400
2019-09-04 21:06:20.018076: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac179a800 next 2370 of size 256
2019-09-04 21:06:20.018087: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac179a900 next 2368 of size 20480
2019-09-04 21:06:20.018098: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac179f900 next 2367 of size 256
2019-09-04 21:06:20.018109: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac179fa00 next 2363 of size 5120
2019-09-04 21:06:20.018120: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac17a0e00 next 2365 of size 256
2019-09-04 21:06:20.018131: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac17a0f00 next 2362 of size 5120
2019-09-04 21:06:20.018142: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac17a2300 next 2366 of size 256
2019-09-04 21:06:20.018153: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac17a2400 next 2359 of size 5120
2019-09-04 21:06:20.018164: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac17a3800 next 2360 of size 256
2019-09-04 21:06:20.018175: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac17a3900 next 2361 of size 5120
2019-09-04 21:06:20.018186: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac17a4d00 next 2357 of size 256
2019-09-04 21:06:20.018197: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac17a4e00 next 2358 of size 6553600
2019-09-04 21:06:20.018208: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac1de4e00 next 2354 of size 256
2019-09-04 21:06:20.018219: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac1de4f00 next 2356 of size 5120
2019-09-04 21:06:20.018229: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac1de6300 next 2355 of size 256
2019-09-04 21:06:20.018240: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac1de6400 next 2352 of size 19660800
2019-09-04 21:06:20.018251: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac30a6400 next 2353 of size 256
2019-09-04 21:06:20.018262: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac30a6500 next 2351 of size 15360
2019-09-04 21:06:20.018273: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac30aa100 next 2344 of size 256
2019-09-04 21:06:20.018285: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac30aa200 next 2350 of size 26214400
2019-09-04 21:06:20.018296: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac49aa200 next 2349 of size 256
2019-09-04 21:06:20.018306: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac49aa300 next 2342 of size 5120
2019-09-04 21:06:20.018316: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac49ab700 next 2348 of size 256
2019-09-04 21:06:20.018327: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac49ab800 next 2347 of size 26214400
2019-09-04 21:06:20.018338: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62ab800 next 2346 of size 256
2019-09-04 21:06:20.018349: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62ab900 next 2343 of size 20480
2019-09-04 21:06:20.018360: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b0900 next 2345 of size 256
2019-09-04 21:06:20.018371: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b0a00 next 2341 of size 5120
2019-09-04 21:06:20.018381: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b1e00 next 2332 of size 256
2019-09-04 21:06:20.018392: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b1f00 next 2337 of size 5120
2019-09-04 21:06:20.018402: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b3300 next 2338 of size 256
2019-09-04 21:06:20.018413: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b3400 next 2334 of size 5120
2019-09-04 21:06:20.018424: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b4800 next 2335 of size 256
2019-09-04 21:06:20.018435: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b4900 next 2328 of size 5120
2019-09-04 21:06:20.018451: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b5d00 next 2330 of size 256
2019-09-04 21:06:20.018463: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac62b5e00 next 2331 of size 6553600
2019-09-04 21:06:20.018474: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac68f5e00 next 2333 of size 256
2019-09-04 21:06:20.018485: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac68f5f00 next 2336 of size 5120
2019-09-04 21:06:20.018496: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac68f7300 next 2329 of size 256
2019-09-04 21:06:20.018507: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac68f7400 next 2339 of size 19660800
2019-09-04 21:06:20.018517: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac7bb7400 next 2340 of size 256
2019-09-04 21:06:20.018528: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac7bb7500 next 2326 of size 15360
2019-09-04 21:06:20.018539: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac7bbb100 next 2325 of size 256
2019-09-04 21:06:20.106560: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac7bbb200 next 2327 of size 26214400
2019-09-04 21:06:20.106615: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac94bb200 next 2324 of size 256
2019-09-04 21:06:20.106626: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac94bb300 next 2323 of size 5120
2019-09-04 21:06:20.106635: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac94bc700 next 2321 of size 256
2019-09-04 21:06:20.106644: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ac94bc800 next 2314 of size 26214400
2019-09-04 21:06:20.106652: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadbc800 next 2319 of size 256
2019-09-04 21:06:20.106664: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadbc900 next 2322 of size 20480
2019-09-04 21:06:20.106673: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc1900 next 2320 of size 256
2019-09-04 21:06:20.106682: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc1a00 next 2318 of size 5120
2019-09-04 21:06:20.106690: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc2e00 next 2317 of size 256
2019-09-04 21:06:20.106700: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc2f00 next 2316 of size 5120
2019-09-04 21:06:20.106709: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc4300 next 2305 of size 256
2019-09-04 21:06:20.106718: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc4400 next 2315 of size 5120
2019-09-04 21:06:20.106726: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc5800 next 2310 of size 256
2019-09-04 21:06:20.106735: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc5900 next 2311 of size 5120
2019-09-04 21:06:20.106747: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc6d00 next 2313 of size 256
2019-09-04 21:06:20.106758: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acadc6e00 next 2304 of size 6553600
2019-09-04 21:06:20.106770: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acb406e00 next 2306 of size 256
2019-09-04 21:06:20.106777: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acb406f00 next 2309 of size 5120
2019-09-04 21:06:20.106788: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acb408300 next 2312 of size 256
2019-09-04 21:06:20.106810: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acb408400 next 2308 of size 19660800
2019-09-04 21:06:20.106820: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acc6c8400 next 2307 of size 256
2019-09-04 21:06:20.106838: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acc6c8500 next 2301 of size 15360
2019-09-04 21:06:20.106851: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acc6cc100 next 2302 of size 256
2019-09-04 21:06:20.106864: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acc6cc200 next 2299 of size 26214400
2019-09-04 21:06:20.106875: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acdfcc200 next 2298 of size 256
2019-09-04 21:06:20.106883: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acdfcc300 next 2296 of size 5120
2019-09-04 21:06:20.106895: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acdfcd700 next 2300 of size 256
2019-09-04 21:06:20.106906: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acdfcd800 next 2303 of size 26214400
2019-09-04 21:06:20.106917: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8cd800 next 2293 of size 256
2019-09-04 21:06:20.106929: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8cd900 next 2295 of size 20480
2019-09-04 21:06:20.106940: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d2900 next 2297 of size 256
2019-09-04 21:06:20.106952: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d2a00 next 2294 of size 5120
2019-09-04 21:06:20.106963: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d3e00 next 2291 of size 256
2019-09-04 21:06:20.106975: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d3f00 next 2292 of size 5120
2019-09-04 21:06:20.106986: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d5300 next 2289 of size 256
2019-09-04 21:06:20.106998: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d5400 next 2290 of size 5120
2019-09-04 21:06:20.107011: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d6800 next 2288 of size 256
2019-09-04 21:06:20.107022: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d6900 next 2286 of size 5120
2019-09-04 21:06:20.107034: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d7d00 next 2285 of size 256
2019-09-04 21:06:20.107045: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acf8d7e00 next 2287 of size 6553600
2019-09-04 21:06:20.107057: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acff17e00 next 2283 of size 256
2019-09-04 21:06:20.107068: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acff17f00 next 2281 of size 5120
2019-09-04 21:06:20.107079: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acff19300 next 2282 of size 256
2019-09-04 21:06:20.107090: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1acff19400 next 2280 of size 19660800
2019-09-04 21:06:20.107101: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad11d9400 next 2275 of size 256
2019-09-04 21:06:20.107112: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad11d9500 next 2284 of size 15360
2019-09-04 21:06:20.107123: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad11dd100 next 2278 of size 256
2019-09-04 21:06:20.107135: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad11dd200 next 2279 of size 26214400
2019-09-04 21:06:20.107145: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad2add200 next 2272 of size 256
2019-09-04 21:06:20.107166: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad2add300 next 2273 of size 5120
2019-09-04 21:06:20.107177: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad2ade700 next 2271 of size 256
2019-09-04 21:06:20.107188: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad2ade800 next 2276 of size 26214400
2019-09-04 21:06:20.107200: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43de800 next 2277 of size 256
2019-09-04 21:06:20.107212: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43de900 next 2274 of size 20480
2019-09-04 21:06:20.107223: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e3900 next 2269 of size 256
2019-09-04 21:06:20.107234: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e3a00 next 2254 of size 5120
2019-09-04 21:06:20.107245: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e4e00 next 2252 of size 256
2019-09-04 21:06:20.107258: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e4f00 next 2652 of size 5120
2019-09-04 21:06:20.107270: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e6300 next 2653 of size 256
2019-09-04 21:06:20.107281: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e6400 next 2654 of size 5120
2019-09-04 21:06:20.107293: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e7800 next 2655 of size 256
2019-09-04 21:06:20.107304: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e7900 next 2656 of size 5120
2019-09-04 21:06:20.107315: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e8d00 next 2657 of size 256
2019-09-04 21:06:20.107328: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad43e8e00 next 2658 of size 6553600
2019-09-04 21:06:20.107340: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad4a28e00 next 2659 of size 256
2019-09-04 21:06:20.107352: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad4a28f00 next 2660 of size 5120
2019-09-04 21:06:20.107364: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad4a2a300 next 2661 of size 256
2019-09-04 21:06:20.107375: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad4a2a400 next 2662 of size 19660800
2019-09-04 21:06:20.107387: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad5cea400 next 2663 of size 256
2019-09-04 21:06:20.107399: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad5cea500 next 2664 of size 15360
2019-09-04 21:06:20.107410: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad5cee100 next 2665 of size 256
2019-09-04 21:06:20.107421: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad5cee200 next 2666 of size 26214400
2019-09-04 21:06:20.107433: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad75ee200 next 2667 of size 256
2019-09-04 21:06:20.107445: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad75ee300 next 2668 of size 5120
2019-09-04 21:06:20.107493: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad75ef700 next 2669 of size 256
2019-09-04 21:06:20.107501: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad75ef800 next 2670 of size 26214400
2019-09-04 21:06:20.107510: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8eef800 next 2671 of size 256
2019-09-04 21:06:20.107520: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8eef900 next 2672 of size 20480
2019-09-04 21:06:20.107532: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef4900 next 2673 of size 256
2019-09-04 21:06:20.107542: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef4a00 next 2674 of size 5120
2019-09-04 21:06:20.107554: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef5e00 next 2675 of size 256
2019-09-04 21:06:20.107565: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef5f00 next 2676 of size 5120
2019-09-04 21:06:20.107575: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef7300 next 2677 of size 256
2019-09-04 21:06:20.107587: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef7400 next 2678 of size 5120
2019-09-04 21:06:20.107598: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef8800 next 2679 of size 256
2019-09-04 21:06:20.107609: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef8900 next 2680 of size 5120
2019-09-04 21:06:20.107620: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef9d00 next 2681 of size 256
2019-09-04 21:06:20.107630: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad8ef9e00 next 2682 of size 6553600
2019-09-04 21:06:20.107640: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad9539e00 next 2683 of size 256
2019-09-04 21:06:20.107651: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad9539f00 next 2684 of size 5120
2019-09-04 21:06:20.107664: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad953b300 next 2685 of size 256
2019-09-04 21:06:20.107674: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ad953b400 next 2686 of size 19660800
2019-09-04 21:06:20.107686: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ada7fb400 next 2687 of size 256
2019-09-04 21:06:20.107718: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ada7fb500 next 2688 of size 15360
2019-09-04 21:06:20.107727: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ada7ff100 next 2689 of size 256
2019-09-04 21:06:20.107736: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ada7ff200 next 2690 of size 26214400
2019-09-04 21:06:20.107746: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adc0ff200 next 2691 of size 256
2019-09-04 21:06:20.107755: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adc0ff300 next 2692 of size 5120
2019-09-04 21:06:20.107763: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adc100700 next 2693 of size 256
2019-09-04 21:06:20.107771: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adc100800 next 2694 of size 26214400
2019-09-04 21:06:20.107782: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda00800 next 2695 of size 256
2019-09-04 21:06:20.107791: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda00900 next 2696 of size 20480
2019-09-04 21:06:20.107799: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda05900 next 2697 of size 256
2019-09-04 21:06:20.107805: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda05a00 next 2698 of size 5120
2019-09-04 21:06:20.107818: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda06e00 next 2699 of size 256
2019-09-04 21:06:20.107826: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda06f00 next 2700 of size 5120
2019-09-04 21:06:20.107835: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda08300 next 2701 of size 256
2019-09-04 21:06:20.107845: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda08400 next 2702 of size 5120
2019-09-04 21:06:20.107856: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda09800 next 2703 of size 256
2019-09-04 21:06:20.107865: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda09900 next 2704 of size 5120
2019-09-04 21:06:20.107872: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda0ad00 next 2705 of size 256
2019-09-04 21:06:20.107884: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adda0ae00 next 2706 of size 6553600
2019-09-04 21:06:20.107892: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ade04ae00 next 2707 of size 256
2019-09-04 21:06:20.107902: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ade04af00 next 2708 of size 5120
2019-09-04 21:06:20.107912: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ade04c300 next 2709 of size 256
2019-09-04 21:06:20.107921: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ade04c400 next 2710 of size 19660800
2019-09-04 21:06:20.107930: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adf30c400 next 2711 of size 256
2019-09-04 21:06:20.107939: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adf30c500 next 2712 of size 15360
2019-09-04 21:06:20.107948: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adf310100 next 2713 of size 256
2019-09-04 21:06:20.107957: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1adf310200 next 2714 of size 26214400
2019-09-04 21:06:20.107964: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae0c10200 next 2715 of size 256
2019-09-04 21:06:20.107975: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae0c10300 next 2716 of size 5120
2019-09-04 21:06:20.196778: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae0c11700 next 2717 of size 256
2019-09-04 21:06:20.196824: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae0c11800 next 2718 of size 26214400
2019-09-04 21:06:20.196831: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2511800 next 2719 of size 256
2019-09-04 21:06:20.196845: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2511900 next 2720 of size 20480
2019-09-04 21:06:20.196857: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2516900 next 2721 of size 256
2019-09-04 21:06:20.196866: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2516a00 next 2722 of size 5120
2019-09-04 21:06:20.196878: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2517e00 next 2723 of size 256
2019-09-04 21:06:20.196886: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2517f00 next 2724 of size 5120
2019-09-04 21:06:20.196897: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2519300 next 2725 of size 256
2019-09-04 21:06:20.196909: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2519400 next 2726 of size 5120
2019-09-04 21:06:20.196920: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae251a800 next 2727 of size 256
2019-09-04 21:06:20.196931: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae251a900 next 2728 of size 5120
2019-09-04 21:06:20.196942: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae251bd00 next 2729 of size 256
2019-09-04 21:06:20.196953: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae251be00 next 2730 of size 6553600
2019-09-04 21:06:20.196964: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2b5be00 next 2731 of size 256
2019-09-04 21:06:20.196975: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2b5bf00 next 2732 of size 5120
2019-09-04 21:06:20.196986: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2b5d300 next 2733 of size 256
2019-09-04 21:06:20.196997: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae2b5d400 next 2734 of size 19660800
2019-09-04 21:06:20.197008: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae3e1d400 next 2735 of size 256
2019-09-04 21:06:20.197019: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae3e1d500 next 2736 of size 15360
2019-09-04 21:06:20.197030: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae3e21100 next 2737 of size 256
2019-09-04 21:06:20.197041: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae3e21200 next 2738 of size 26214400
2019-09-04 21:06:20.197052: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae5721200 next 2739 of size 256
2019-09-04 21:06:20.197063: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae5721300 next 2740 of size 5120
2019-09-04 21:06:20.197074: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae5722700 next 2741 of size 256
2019-09-04 21:06:20.197085: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae5722800 next 2742 of size 26214400
2019-09-04 21:06:20.197096: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae7022800 next 2743 of size 256
2019-09-04 21:06:20.197107: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae7022900 next 2744 of size 20480
2019-09-04 21:06:20.197118: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae7027900 next 2745 of size 256
2019-09-04 21:06:20.197129: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae7027a00 next 2746 of size 5120
2019-09-04 21:06:20.197140: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae7028e00 next 2747 of size 256
2019-09-04 21:06:20.197151: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae7028f00 next 2748 of size 5120
2019-09-04 21:06:20.197161: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae702a300 next 2749 of size 256
2019-09-04 21:06:20.197173: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae702a400 next 2750 of size 5120
2019-09-04 21:06:20.197184: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae702b800 next 2751 of size 256
2019-09-04 21:06:20.197194: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae702b900 next 2752 of size 5120
2019-09-04 21:06:20.197206: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae702cd00 next 2753 of size 256
2019-09-04 21:06:20.197217: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae702ce00 next 2754 of size 6553600
2019-09-04 21:06:20.197227: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae766ce00 next 2755 of size 256
2019-09-04 21:06:20.197239: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae766cf00 next 2756 of size 5120
2019-09-04 21:06:20.197249: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae766e300 next 2757 of size 256
2019-09-04 21:06:20.197260: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae766e400 next 2758 of size 19660800
2019-09-04 21:06:20.197272: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae892e400 next 2759 of size 256
2019-09-04 21:06:20.197282: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae892e500 next 2760 of size 15360
2019-09-04 21:06:20.197293: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae8932100 next 2761 of size 256
2019-09-04 21:06:20.197304: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1ae8932200 next 2762 of size 26214400
2019-09-04 21:06:20.197316: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aea232200 next 2763 of size 256
2019-09-04 21:06:20.197327: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aea232300 next 2764 of size 5120
2019-09-04 21:06:20.197339: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aea233700 next 2765 of size 256
2019-09-04 21:06:20.197350: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aea233800 next 2766 of size 26214400
2019-09-04 21:06:20.197361: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb33800 next 2767 of size 256
2019-09-04 21:06:20.197372: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb33900 next 2768 of size 20480
2019-09-04 21:06:20.197383: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb38900 next 2769 of size 256
2019-09-04 21:06:20.197394: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb38a00 next 2770 of size 5120
2019-09-04 21:06:20.197406: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb39e00 next 2771 of size 256
2019-09-04 21:06:20.197416: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb39f00 next 2772 of size 5120
2019-09-04 21:06:20.197427: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb3b300 next 2773 of size 256
2019-09-04 21:06:20.197438: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb3b400 next 2774 of size 5120
2019-09-04 21:06:20.197449: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb3c800 next 2775 of size 256
2019-09-04 21:06:20.197470: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb3c900 next 2776 of size 5120
2019-09-04 21:06:20.197482: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb3dd00 next 2777 of size 256
2019-09-04 21:06:20.197493: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aebb3de00 next 2778 of size 6553600
2019-09-04 21:06:20.197504: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aec17de00 next 2779 of size 256
2019-09-04 21:06:20.197516: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aec17df00 next 2780 of size 5120
2019-09-04 21:06:20.197524: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aec17f300 next 2781 of size 256
2019-09-04 21:06:20.197535: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aec17f400 next 2782 of size 19660800
2019-09-04 21:06:20.197546: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aed43f400 next 2783 of size 256
2019-09-04 21:06:20.197557: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aed43f500 next 2784 of size 15360
2019-09-04 21:06:20.197568: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aed443100 next 2785 of size 256
2019-09-04 21:06:20.197579: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aed443200 next 2786 of size 26214400
2019-09-04 21:06:20.197590: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aeed43200 next 2787 of size 256
2019-09-04 21:06:20.197601: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aeed43300 next 2788 of size 5120
2019-09-04 21:06:20.197612: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aeed44700 next 2789 of size 256
2019-09-04 21:06:20.197623: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1aeed44800 next 2790 of size 26214400
2019-09-04 21:06:20.197634: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af0644800 next 2791 of size 256
2019-09-04 21:06:20.197657: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af0644900 next 2792 of size 20480
2019-09-04 21:06:20.197667: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af0649900 next 2793 of size 256
2019-09-04 21:06:20.197678: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af0649a00 next 2794 of size 5120
2019-09-04 21:06:20.197689: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af064ae00 next 2795 of size 256
2019-09-04 21:06:20.197700: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af064af00 next 2796 of size 5120
2019-09-04 21:06:20.197710: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af064c300 next 2797 of size 256
2019-09-04 21:06:20.197721: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af064c400 next 2798 of size 5120
2019-09-04 21:06:20.197732: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af064d800 next 2799 of size 256
2019-09-04 21:06:20.197742: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af064d900 next 2800 of size 5120
2019-09-04 21:06:20.197753: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af064ed00 next 2801 of size 256
2019-09-04 21:06:20.197764: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af064ee00 next 2802 of size 6553600
2019-09-04 21:06:20.197774: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af0c8ee00 next 2803 of size 256
2019-09-04 21:06:20.197786: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af0c8ef00 next 2804 of size 5120
2019-09-04 21:06:20.197796: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af0c90300 next 2805 of size 256
2019-09-04 21:06:20.197807: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af0c90400 next 2806 of size 19660800
2019-09-04 21:06:20.197817: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af1f50400 next 2807 of size 256
2019-09-04 21:06:20.197828: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af1f50500 next 2808 of size 15360
2019-09-04 21:06:20.197839: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af1f54100 next 2809 of size 256
2019-09-04 21:06:20.197850: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af1f54200 next 2810 of size 26214400
2019-09-04 21:06:20.197861: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af3854200 next 2811 of size 256
2019-09-04 21:06:20.197872: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af3854300 next 2812 of size 5120
2019-09-04 21:06:20.197883: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af3855700 next 2813 of size 256
2019-09-04 21:06:20.197893: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af3855800 next 2814 of size 26214400
2019-09-04 21:06:20.197904: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af5155800 next 2815 of size 256
2019-09-04 21:06:20.197915: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af5155900 next 2816 of size 20480
2019-09-04 21:06:20.197926: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515a900 next 2817 of size 256
2019-09-04 21:06:20.197937: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515aa00 next 2818 of size 5120
2019-09-04 21:06:20.197947: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515be00 next 2819 of size 256
2019-09-04 21:06:20.197957: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515bf00 next 2820 of size 5120
2019-09-04 21:06:20.197971: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515d300 next 2821 of size 256
2019-09-04 21:06:20.197982: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515d400 next 2822 of size 5120
2019-09-04 21:06:20.197993: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515e800 next 2823 of size 256
2019-09-04 21:06:20.198003: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515e900 next 2824 of size 5120
2019-09-04 21:06:20.198014: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515fd00 next 2825 of size 256
2019-09-04 21:06:20.198024: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af515fe00 next 2826 of size 6553600
2019-09-04 21:06:20.198035: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af579fe00 next 2827 of size 256
2019-09-04 21:06:20.198046: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af579ff00 next 2828 of size 5120
2019-09-04 21:06:20.198056: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af57a1300 next 2829 of size 256
2019-09-04 21:06:20.198067: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af57a1400 next 2830 of size 19660800
2019-09-04 21:06:20.198074: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af6a61400 next 2831 of size 256
2019-09-04 21:06:20.198081: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af6a61500 next 2832 of size 15360
2019-09-04 21:06:20.198101: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af6a65100 next 2833 of size 256
2019-09-04 21:06:20.198108: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af6a65200 next 2834 of size 26214400
2019-09-04 21:06:20.198114: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af8365200 next 2835 of size 256
2019-09-04 21:06:20.198125: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af8365300 next 2836 of size 5120
2019-09-04 21:06:20.198135: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af8366700 next 2837 of size 256
2019-09-04 21:06:20.198161: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af8366800 next 2838 of size 26214400
2019-09-04 21:06:20.198169: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c66800 next 2839 of size 256
2019-09-04 21:06:20.285915: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c66900 next 2840 of size 20480
2019-09-04 21:06:20.285954: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c6b900 next 2841 of size 256
2019-09-04 21:06:20.285963: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c6ba00 next 2842 of size 5120
2019-09-04 21:06:20.285972: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c6ce00 next 2843 of size 256
2019-09-04 21:06:20.285983: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c6cf00 next 2844 of size 5120
2019-09-04 21:06:20.286006: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c6e300 next 2845 of size 256
2019-09-04 21:06:20.286017: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c6e400 next 2846 of size 5120
2019-09-04 21:06:20.286028: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c6f800 next 2847 of size 256
2019-09-04 21:06:20.286038: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c6f900 next 2848 of size 5120
2019-09-04 21:06:20.286049: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c70d00 next 2849 of size 256
2019-09-04 21:06:20.286059: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1af9c70e00 next 2850 of size 6553600
2019-09-04 21:06:20.286070: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afa2b0e00 next 2851 of size 256
2019-09-04 21:06:20.286081: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afa2b0f00 next 2852 of size 5120
2019-09-04 21:06:20.286092: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afa2b2300 next 2853 of size 256
2019-09-04 21:06:20.286103: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afa2b2400 next 2854 of size 19660800
2019-09-04 21:06:20.286110: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afb572400 next 2855 of size 256
2019-09-04 21:06:20.286117: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afb572500 next 2856 of size 15360
2019-09-04 21:06:20.286124: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afb576100 next 2857 of size 256
2019-09-04 21:06:20.286131: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afb576200 next 2858 of size 26214400
2019-09-04 21:06:20.286138: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afce76200 next 2859 of size 256
2019-09-04 21:06:20.286144: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afce76300 next 2860 of size 5120
2019-09-04 21:06:20.286152: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afce77700 next 2861 of size 256
2019-09-04 21:06:20.286159: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afce77800 next 2862 of size 26214400
2019-09-04 21:06:20.286166: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe777800 next 2863 of size 256
2019-09-04 21:06:20.286173: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe777900 next 2864 of size 20480
2019-09-04 21:06:20.286181: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe77c900 next 2865 of size 256
2019-09-04 21:06:20.286188: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe77ca00 next 2866 of size 5120
2019-09-04 21:06:20.286196: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe77de00 next 2867 of size 256
2019-09-04 21:06:20.286222: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe77df00 next 2868 of size 5120
2019-09-04 21:06:20.286229: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe77f300 next 2869 of size 256
2019-09-04 21:06:20.286238: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe77f400 next 2870 of size 5120
2019-09-04 21:06:20.286250: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe780800 next 2871 of size 256
2019-09-04 21:06:20.286262: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe780900 next 2872 of size 5120
2019-09-04 21:06:20.286274: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe781d00 next 2873 of size 256
2019-09-04 21:06:20.286285: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afe781e00 next 2874 of size 6553600
2019-09-04 21:06:20.286305: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afedc1e00 next 2875 of size 256
2019-09-04 21:06:20.286326: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afedc1f00 next 2876 of size 5120
2019-09-04 21:06:20.286336: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afedc3300 next 2877 of size 256
2019-09-04 21:06:20.286347: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1afedc3400 next 2878 of size 19660800
2019-09-04 21:06:20.286385: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b00083400 next 2879 of size 256
2019-09-04 21:06:20.286396: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b00083500 next 2880 of size 15360
2019-09-04 21:06:20.286407: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b00087100 next 2881 of size 256
2019-09-04 21:06:20.286418: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b00087200 next 2882 of size 26214400
2019-09-04 21:06:20.286429: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b01987200 next 2883 of size 256
2019-09-04 21:06:20.286440: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b01987300 next 2884 of size 5120
2019-09-04 21:06:20.286451: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b01988700 next 2885 of size 256
2019-09-04 21:06:20.286480: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b01988800 next 2886 of size 26214400
2019-09-04 21:06:20.286492: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b03288800 next 2887 of size 256
2019-09-04 21:06:20.286503: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b03288900 next 2888 of size 20480
2019-09-04 21:06:20.286514: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0328d900 next 2889 of size 256
2019-09-04 21:06:20.286525: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0328da00 next 2890 of size 5120
2019-09-04 21:06:20.286537: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0328ee00 next 2891 of size 256
2019-09-04 21:06:20.286548: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0328ef00 next 2892 of size 5120
2019-09-04 21:06:20.286559: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b03290300 next 2893 of size 256
2019-09-04 21:06:20.286571: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b03290400 next 2894 of size 5120
2019-09-04 21:06:20.286582: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b03291800 next 2895 of size 256
2019-09-04 21:06:20.286593: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b03291900 next 2896 of size 5120
2019-09-04 21:06:20.286605: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b03292d00 next 2897 of size 256
2019-09-04 21:06:20.286616: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b03292e00 next 2898 of size 6553600
2019-09-04 21:06:20.286627: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b038d2e00 next 2899 of size 256
2019-09-04 21:06:20.286635: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b038d2f00 next 2900 of size 5120
2019-09-04 21:06:20.286646: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b038d4300 next 2901 of size 256
2019-09-04 21:06:20.286657: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b038d4400 next 2902 of size 19660800
2019-09-04 21:06:20.286669: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b04b94400 next 2903 of size 256
2019-09-04 21:06:20.286680: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b04b94500 next 2904 of size 15360
2019-09-04 21:06:20.286691: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b04b98100 next 2905 of size 256
2019-09-04 21:06:20.286702: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b04b98200 next 2906 of size 26214400
2019-09-04 21:06:20.286713: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b06498200 next 2907 of size 256
2019-09-04 21:06:20.286724: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b06498300 next 2908 of size 5120
2019-09-04 21:06:20.286736: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b06499700 next 2909 of size 256
2019-09-04 21:06:20.286747: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b06499800 next 2910 of size 26214400
2019-09-04 21:06:20.286759: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07d99800 next 2911 of size 256
2019-09-04 21:06:20.286770: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07d99900 next 2912 of size 20480
2019-09-04 21:06:20.286781: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07d9e900 next 2913 of size 256
2019-09-04 21:06:20.286792: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07d9ea00 next 2914 of size 5120
2019-09-04 21:06:20.286804: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07d9fe00 next 2915 of size 256
2019-09-04 21:06:20.286815: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07d9ff00 next 2916 of size 5120
2019-09-04 21:06:20.286826: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07da1300 next 2917 of size 256
2019-09-04 21:06:20.286837: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07da1400 next 2918 of size 5120
2019-09-04 21:06:20.286848: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07da2800 next 2919 of size 256
2019-09-04 21:06:20.286860: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07da2900 next 2920 of size 5120
2019-09-04 21:06:20.286872: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07da3d00 next 2921 of size 256
2019-09-04 21:06:20.286895: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b07da3e00 next 2922 of size 6553600
2019-09-04 21:06:20.286906: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b083e3e00 next 2923 of size 256
2019-09-04 21:06:20.286917: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b083e3f00 next 2924 of size 5120
2019-09-04 21:06:20.286946: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b083e5300 next 2925 of size 256
2019-09-04 21:06:20.286957: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b083e5400 next 2926 of size 19660800
2019-09-04 21:06:20.286969: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b096a5400 next 2927 of size 256
2019-09-04 21:06:20.286980: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b096a5500 next 2928 of size 15360
2019-09-04 21:06:20.286991: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b096a9100 next 2929 of size 256
2019-09-04 21:06:20.287002: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b096a9200 next 2930 of size 26214400
2019-09-04 21:06:20.287013: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0afa9200 next 2931 of size 256
2019-09-04 21:06:20.287024: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0afa9300 next 2932 of size 5120
2019-09-04 21:06:20.287036: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0afaa700 next 2933 of size 256
2019-09-04 21:06:20.287044: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0afaa800 next 2934 of size 26214400
2019-09-04 21:06:20.287055: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8aa800 next 2935 of size 256
2019-09-04 21:06:20.287067: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8aa900 next 2936 of size 20480
2019-09-04 21:06:20.287078: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8af900 next 2937 of size 256
2019-09-04 21:06:20.287088: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8afa00 next 2938 of size 5120
2019-09-04 21:06:20.287100: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8b0e00 next 2939 of size 256
2019-09-04 21:06:20.287111: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8b0f00 next 2940 of size 5120
2019-09-04 21:06:20.287122: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8b2300 next 2941 of size 256
2019-09-04 21:06:20.287133: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8b2400 next 2942 of size 5120
2019-09-04 21:06:20.287144: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8b3800 next 2943 of size 256
2019-09-04 21:06:20.287155: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8b3900 next 2944 of size 5120
2019-09-04 21:06:20.287179: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8b4d00 next 2945 of size 256
2019-09-04 21:06:20.287190: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0c8b4e00 next 2946 of size 6553600
2019-09-04 21:06:20.287201: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0cef4e00 next 2947 of size 256
2019-09-04 21:06:20.287212: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0cef4f00 next 2948 of size 5120
2019-09-04 21:06:20.287223: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0cef6300 next 2949 of size 256
2019-09-04 21:06:20.287234: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0cef6400 next 2950 of size 19660800
2019-09-04 21:06:20.287246: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0e1b6400 next 2951 of size 256
2019-09-04 21:06:20.287257: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0e1b6500 next 2952 of size 15360
2019-09-04 21:06:20.287268: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0e1ba100 next 2953 of size 256
2019-09-04 21:06:20.287279: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0e1ba200 next 2954 of size 26214400
2019-09-04 21:06:20.287290: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0faba200 next 2955 of size 256
2019-09-04 21:06:20.287301: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0faba300 next 2956 of size 5120
2019-09-04 21:06:20.287312: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0fabb700 next 2957 of size 256
2019-09-04 21:06:20.287324: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b0fabb800 next 2958 of size 26214400
2019-09-04 21:06:20.287334: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113bb800 next 2959 of size 256
2019-09-04 21:06:20.287346: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113bb900 next 2960 of size 20480
2019-09-04 21:06:20.287357: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c0900 next 2961 of size 256
2019-09-04 21:06:20.287368: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c0a00 next 2962 of size 5120
2019-09-04 21:06:20.375602: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c1e00 next 2963 of size 256
2019-09-04 21:06:20.375652: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c1f00 next 2964 of size 5120
2019-09-04 21:06:20.375659: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c3300 next 2965 of size 256
2019-09-04 21:06:20.375667: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c3400 next 2966 of size 5120
2019-09-04 21:06:20.375675: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c4800 next 2967 of size 256
2019-09-04 21:06:20.375682: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c4900 next 2968 of size 5120
2019-09-04 21:06:20.375713: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c5d00 next 2969 of size 256
2019-09-04 21:06:20.375725: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b113c5e00 next 2970 of size 6553600
2019-09-04 21:06:20.375735: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b11a05e00 next 2971 of size 256
2019-09-04 21:06:20.375746: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b11a05f00 next 2972 of size 5120
2019-09-04 21:06:20.375757: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b11a07300 next 2973 of size 256
2019-09-04 21:06:20.375767: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b11a07400 next 2974 of size 19660800
2019-09-04 21:06:20.375773: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b12cc7400 next 2975 of size 256
2019-09-04 21:06:20.375786: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b12cc7500 next 2976 of size 15360
2019-09-04 21:06:20.375797: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b12ccb100 next 2977 of size 256
2019-09-04 21:06:20.375808: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b12ccb200 next 2978 of size 26214400
2019-09-04 21:06:20.375818: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b145cb200 next 2979 of size 256
2019-09-04 21:06:20.375825: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b145cb300 next 2980 of size 5120
2019-09-04 21:06:20.375831: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b145cc700 next 2981 of size 256
2019-09-04 21:06:20.375837: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b145cc800 next 2982 of size 26214400
2019-09-04 21:06:20.375848: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b15ecc800 next 2983 of size 256
2019-09-04 21:06:20.375858: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b15ecc900 next 2984 of size 20480
2019-09-04 21:06:20.375869: I tensorflow/core/common_runtime/bfc_allocator.cc:800] InUse at 0x7f1b15ed1900 next 2985 of size 256