forked from aws-samples/machine-learning-using-k8s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tensorflow-horovod-imagenet-log.txt
770 lines (747 loc) · 69.6 KB
/
tensorflow-horovod-imagenet-log.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
OPENMPI_DIR=/kubeflow/openmpi
+ OPENMPI_DIR=/kubeflow/openmpi
SSHD_CONFIG=${OPENMPI_DIR}/assets/sshd_config
+ SSHD_CONFIG=/kubeflow/openmpi/assets/sshd_config
MPIEXEC_TIMEOUT_ON_WAIT_MPI_READY=10
+ MPIEXEC_TIMEOUT_ON_WAIT_MPI_READY=10
BACKOFF_SECS=10
+ BACKOFF_SECS=10
TIMEOUT_EXIT_CODE=124
+ TIMEOUT_EXIT_CODE=124
run_by_non_root() {
[ "$(id -u)" != "0" ]
}
wait_mpi_ready() {
local workers=$1
local max_retries=$2
local retries=0
until MPIEXEC_TIMEOUT=${MPIEXEC_TIMEOUT_ON_WAIT_MPI_READY} mpiexec -n ${workers} --hostfile ${OPENMPI_DIR}/assets/hostfile --allow-run-as-root -q sh -c 'echo $(hostname) is ready'; do
sleep ${BACKOFF_SECS}
retries=$(expr ${retries} + 1)
if [ -n "${max_retries}" ] && [ ${retries} -ge ${max_retries} ]; then
exit ${TIMEOUT_EXIT_CODE}
fi
done
}
wait_controller_signal() {
local signal=$1
local max_retries=$2
local retries=0
until [ -f ${OPENMPI_DIR}/data/.openmpi-controller/${signal} ]; do
sleep ${BACKOFF_SECS}
retries=$(expr ${retries} + 1)
if [ -n "${max_retries}" ] && [ ${retries} -ge ${max_retries} ]; then
exit ${TIMEOUT_EXIT_CODE}
fi
done
}
if [ $# -ne 4 ]; then
echo "illegal number of parameters"
exit 1
fi
+ [ 4 -ne 4 ]
role="$1"
+ role=master
workers="$2"
+ workers=2
exec="$3"
+ exec=mpiexec -np 8 --hostfile /kubeflow/openmpi/assets/hostfile --allow-run-as-root --display-map --tag-output --timestamp-output -mca btl_tcp_if_exclude lo,docker0 --mca plm_rsh_no_tree_spawn 1 -bind-to none -map-by slot -mca pml ob1 -mca btl ^openib sh -c 'NCCL_SOCKET_IFNAME=eth0 NCCL_MIN_NRINGS=8 NCCL_DEBUG=INFO python3.6 /examples/official-benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py --num_batches=100 --model vgg16 --batch_size 64 --data_name=imagenet --data_dir=/mnt/data --variable_update horovod --horovod_device gpu --use_fp16'
timeout_secs="$4"
+ timeout_secs=300
max_retries=$(expr ${timeout_secs} / ${BACKOFF_SECS})
+ expr 300 / 10
+ max_retries=30
# Set up openmpi
mkdir -p ${HOME}/.openmpi
+ mkdir -p /root/.openmpi
cp ${OPENMPI_DIR}/assets/mca-params.conf ${HOME}/.openmpi
+ cp /kubeflow/openmpi/assets/mca-params.conf /root/.openmpi
# Set up ssh
mkdir -p ${HOME}/.ssh
+ mkdir -p /root/.ssh
cp ${OPENMPI_DIR}/secrets/id_rsa ${HOME}/.ssh
+ cp /kubeflow/openmpi/secrets/id_rsa /root/.ssh
chmod 400 ${HOME}/.ssh/id_rsa
+ chmod 400 /root/.ssh/id_rsa
cp ${OPENMPI_DIR}/secrets/id_rsa.pub ${HOME}/.ssh
+ cp /kubeflow/openmpi/secrets/id_rsa.pub /root/.ssh
cp ${OPENMPI_DIR}/secrets/authorized_keys ${HOME}/.ssh
+ cp /kubeflow/openmpi/secrets/authorized_keys /root/.ssh
cp ${OPENMPI_DIR}/assets/ssh_config ${HOME}/.ssh/config
+ cp /kubeflow/openmpi/assets/ssh_config /root/.ssh/config
# when this runs by non-root user.
# we have to create ephemeral hostkeys
if run_by_non_root ; then
mkdir -p ${HOME}/.sshd
cp ${OPENMPI_DIR}/assets/sshd_config ${HOME}/.sshd/sshd_config
SSHD_CONFIG=${HOME}/.sshd/sshd_config
ssh-keygen -f ${HOME}/.sshd/host_rsa_key -C '' -N '' -t rsa
ssh-keygen -f ${HOME}/.sshd/host_dsa_key -C '' -N '' -t dsa
echo "HostKey ${HOME}/.sshd/host_rsa_key" >> ${SSHD_CONFIG}
echo "HostKey ${HOME}/.sshd/host_dsa_key" >> ${SSHD_CONFIG}
fi
+ run_by_non_root
+ id -u
+ [ 0 != 0 ]
exit_code=0
+ exit_code=0
if [ "${role}" = "master" ]; then
# Wait until workers are ready.
wait_mpi_ready ${workers} ${max_retries}
# Run the exec command in master
sh -c "${exec}" || exit_code=$?
else
# Wait until controller finishes initialization.
wait_controller_signal SIGCONT ${max_retries}
# Start sshd in daemon mode
/usr/sbin/sshd -e -f ${SSHD_CONFIG}
# Block forever until controller terminates.
wait_controller_signal SIGTERM
fi
+ [ master = master ]
+ wait_mpi_ready 2 30
+ local workers=2
+ local max_retries=30
+ local retries=0
+ MPIEXEC_TIMEOUT=10 mpiexec -n 2 --hostfile /kubeflow/openmpi/assets/hostfile --allow-run-as-root -q sh -c echo $(hostname) is ready
ssh: Could not resolve hostname openmpi-worker-0.openmpi.kubeflow-dist-train: Name or service not known
ssh: Could not resolve hostname openmpi-worker-1.openmpi.kubeflow-dist-train: Name or service not known
+ sleep 10
+ expr 0 + 1
+ retries=1
+ [ -n 30 ]
+ [ 1 -ge 30 ]
+ MPIEXEC_TIMEOUT=10 mpiexec -n 2 --hostfile /kubeflow/openmpi/assets/hostfile --allow-run-as-root -q sh -c echo $(hostname) is ready
ssh: connect to host openmpi-worker-1.openmpi.kubeflow-dist-train port 2022: Connection refused
+ sleep 10
+ expr 1 + 1
+ retries=2
+ [ -n 30 ]
+ [ 2 -ge 30 ]
+ MPIEXEC_TIMEOUT=10 mpiexec -n 2 --hostfile /kubeflow/openmpi/assets/hostfile --allow-run-as-root -q sh -c echo $(hostname) is ready
Warning: Permanently added '[openmpi-worker-0.openmpi.kubeflow-dist-train]:2022,[192.168.142.144]:2022' (ECDSA) to the list of known hosts.
Warning: Permanently added '[openmpi-worker-1.openmpi.kubeflow-dist-train]:2022,[192.168.198.126]:2022' (ECDSA) to the list of known hosts.
openmpi-worker-0 is ready
openmpi-worker-0 is ready
+ sh -c mpiexec -np 8 --hostfile /kubeflow/openmpi/assets/hostfile --allow-run-as-root --display-map --tag-output --timestamp-output -mca btl_tcp_if_exclude lo,docker0 --mca plm_rsh_no_tree_spawn 1 -bind-to none -map-by slot -mca pml ob1 -mca btl ^openib sh -c 'NCCL_SOCKET_IFNAME=eth0 NCCL_MIN_NRINGS=8 NCCL_DEBUG=INFO python3.6 /examples/official-benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py --num_batches=100 --model vgg16 --batch_size 64 --data_name=imagenet --data_dir=/mnt/data --variable_update horovod --horovod_device gpu --use_fp16'
Warning: Permanently added '[openmpi-worker-0.openmpi.kubeflow-dist-train]:2022,[192.168.142.144]:2022' (ECDSA) to the list of known hosts.
Warning: Permanently added '[openmpi-worker-1.openmpi.kubeflow-dist-train]:2022,[192.168.198.126]:2022' (ECDSA) to the list of known hosts.
Data for JOB [13236,1] offset 0 Total slots allocated 24
======================== JOB MAP ========================
Data for node: openmpi-worker-0.openmpi.kubeflow-dist-train Num slots: 4 Max slots: 0 Num procs: 4
Process OMPI jobid: [13236,1] App: 0 Process rank: 0 Bound: N/A
Process OMPI jobid: [13236,1] App: 0 Process rank: 1 Bound: N/A
Process OMPI jobid: [13236,1] App: 0 Process rank: 2 Bound: N/A
Process OMPI jobid: [13236,1] App: 0 Process rank: 3 Bound: N/A
Data for node: openmpi-worker-1.openmpi.kubeflow-dist-train Num slots: 4 Max slots: 0 Num procs: 4
Process OMPI jobid: [13236,1] App: 0 Process rank: 4 Bound: N/A
Process OMPI jobid: [13236,1] App: 0 Process rank: 5 Bound: N/A
Process OMPI jobid: [13236,1] App: 0 Process rank: 6 Bound: N/A
Process OMPI jobid: [13236,1] App: 0 Process rank: 7 Bound: N/A
=============================================================
Wed Oct 17 12:15:26 2018[1,1]<stdout>:TensorFlow: 1.11
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Model: vgg16
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Dataset: imagenet
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Mode: training
Wed Oct 17 12:15:26 2018[1,1]<stdout>:SingleSess: False
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Batch size: 512 global
Wed Oct 17 12:15:26 2018[1,1]<stdout>: 64.0 per device
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Num batches: 100
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Num epochs: 0.04
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Devices: ['horovod/gpu:0', 'horovod/gpu:1', 'horovod/gpu:2', 'horovod/gpu:3', 'horovod/gpu:4', 'horovod/gpu:5', 'horovod/gpu:6', 'horovod/gpu:7']
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Data format: NCHW
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Layout optimizer: False
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Optimizer: sgd
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Variables: horovod
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Horovod on: gpu
Wed Oct 17 12:15:26 2018[1,1]<stdout>:==========
Wed Oct 17 12:15:26 2018[1,3]<stdout>:TensorFlow: 1.11
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Model: vgg16
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Dataset: imagenet
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Mode: training
Wed Oct 17 12:15:26 2018[1,3]<stdout>:SingleSess: False
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Batch size: 512 global
Wed Oct 17 12:15:26 2018[1,3]<stdout>: 64.0 per device
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Num batches: 100
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Num epochs: 0.04
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Devices: ['horovod/gpu:0', 'horovod/gpu:1', 'horovod/gpu:2', 'horovod/gpu:3', 'horovod/gpu:4', 'horovod/gpu:5', 'horovod/gpu:6', 'horovod/gpu:7']
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Data format: NCHW
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Layout optimizer: False
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Optimizer: sgd
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Variables: horovod
Wed Oct 17 12:15:26 2018[1,5]<stdout>:TensorFlow: 1.11
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Model: vgg16
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Dataset: imagenet
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Mode: training
Wed Oct 17 12:15:26 2018[1,6]<stdout>:TensorFlow: 1.11
Wed Oct 17 12:15:26 2018[1,5]<stdout>:SingleSess: False
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Model: vgg16
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Dataset: imagenet
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Mode: training
Wed Oct 17 12:15:26 2018[1,6]<stdout>:SingleSess: False
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Horovod on: gpu
Wed Oct 17 12:15:26 2018[1,3]<stdout>:==========
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Batch size: 512 global
Wed Oct 17 12:15:26 2018[1,5]<stdout>: 64.0 per device
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Num batches: 100
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Num epochs: 0.04
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Devices: ['horovod/gpu:0', 'horovod/gpu:1', 'horovod/gpu:2', 'horovod/gpu:3', 'horovod/gpu:4', 'horovod/gpu:5', 'horovod/gpu:6', 'horovod/gpu:7']
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Data format: NCHW
Wed Oct 17 12:15:26 2018[1,1]<stdout>:Generating model
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Batch size: 512 global
Wed Oct 17 12:15:26 2018[1,3]<stdout>:Generating model
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Layout optimizer: False
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Optimizer: sgd
Wed Oct 17 12:15:26 2018[1,0]<stdout>:TensorFlow: 1.11
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Model: vgg16
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Dataset: imagenet
Wed Oct 17 12:15:26 2018[1,6]<stdout>: 64.0 per device
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Num batches: 100
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Mode: training
Wed Oct 17 12:15:26 2018[1,0]<stdout>:SingleSess: False
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Batch size: 512 global
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Variables: horovod
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Horovod on: gpu
Wed Oct 17 12:15:26 2018[1,5]<stdout>:==========
Wed Oct 17 12:15:26 2018[1,0]<stdout>: 64.0 per device
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Num batches: 100
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Num epochs: 0.04
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Num epochs: 0.04
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Devices: ['horovod/gpu:0', 'horovod/gpu:1', 'horovod/gpu:2', 'horovod/gpu:3', 'horovod/gpu:4', 'horovod/gpu:5', 'horovod/gpu:6', 'horovod/gpu:7']
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Devices: ['horovod/gpu:0', 'horovod/gpu:1', 'horovod/gpu:2', 'horovod/gpu:3', 'horovod/gpu:4', 'horovod/gpu:5', 'horovod/gpu:6', 'horovod/gpu:7']
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Data format: NCHW
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Layout optimizer: False
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Optimizer: sgd
Wed Oct 17 12:15:26 2018[1,2]<stdout>:TensorFlow: 1.11
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Variables: horovod
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Data format: NCHW
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Layout optimizer: False
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Optimizer: sgd
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Variables: horovod
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Horovod on: gpu
Wed Oct 17 12:15:26 2018[1,6]<stdout>:==========
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Model: vgg16
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Dataset: imagenet
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Mode: training
Wed Oct 17 12:15:26 2018[1,2]<stdout>:SingleSess: False
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Batch size: 512 global
Wed Oct 17 12:15:26 2018[1,4]<stdout>:TensorFlow: 1.11
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Model: vgg16
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Dataset: imagenet
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Horovod on: gpu
Wed Oct 17 12:15:26 2018[1,0]<stdout>:==========
Wed Oct 17 12:15:26 2018[1,7]<stdout>:TensorFlow: 1.11
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Model: vgg16
Wed Oct 17 12:15:26 2018[1,2]<stdout>: 64.0 per device
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Num batches: 100
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Mode: training
Wed Oct 17 12:15:26 2018[1,4]<stdout>:SingleSess: False
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Batch size: 512 global
Wed Oct 17 12:15:26 2018[1,4]<stdout>: 64.0 per device
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Num batches: 100
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Num epochs: 0.04
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Devices: ['horovod/gpu:0', 'horovod/gpu:1', 'horovod/gpu:2', 'horovod/gpu:3', 'horovod/gpu:4', 'horovod/gpu:5', 'horovod/gpu:6', 'horovod/gpu:7']
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Data format: NCHW
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Layout optimizer: False
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Optimizer: sgd
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Num epochs: 0.04
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Devices: ['horovod/gpu:0', 'horovod/gpu:1', 'horovod/gpu:2', 'horovod/gpu:3', 'horovod/gpu:4', 'horovod/gpu:5', 'horovod/gpu:6', 'horovod/gpu:7']
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Data format: NCHW
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Dataset: imagenet
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Mode: training
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Layout optimizer: False
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Optimizer: sgd
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Variables: horovod
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Horovod on: gpu
Wed Oct 17 12:15:26 2018[1,2]<stdout>:==========
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Variables: horovod
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Horovod on: gpu
Wed Oct 17 12:15:26 2018[1,0]<stdout>:Generating model
Wed Oct 17 12:15:26 2018[1,7]<stdout>:SingleSess: False
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Batch size: 512 global
Wed Oct 17 12:15:26 2018[1,7]<stdout>: 64.0 per device
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Num batches: 100
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Num epochs: 0.04
Wed Oct 17 12:15:26 2018[1,2]<stdout>:Generating model
Wed Oct 17 12:15:26 2018[1,4]<stdout>:==========
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Devices: ['horovod/gpu:0', 'horovod/gpu:1', 'horovod/gpu:2', 'horovod/gpu:3', 'horovod/gpu:4', 'horovod/gpu:5', 'horovod/gpu:6', 'horovod/gpu:7']
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Data format: NCHW
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Layout optimizer: False
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Optimizer: sgd
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Variables: horovod
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Horovod on: gpu
Wed Oct 17 12:15:26 2018[1,7]<stdout>:==========
Wed Oct 17 12:15:26 2018[1,5]<stdout>:Generating model
Wed Oct 17 12:15:26 2018[1,6]<stdout>:Generating model
Wed Oct 17 12:15:26 2018[1,4]<stdout>:Generating model
Wed Oct 17 12:15:26 2018[1,7]<stdout>:Generating model
Wed Oct 17 12:15:28 2018[1,3]<stderr>:W1017 12:15:28.040633 140676811613952 tf_logging.py:125] From /examples/official-benchmarks/scripts/tf_cnn_benchmarks/benchmark_cnn.py:1778: Supervisor.__init__ (from tensorflow.python.training.supervisor) is deprecated and will be removed in a future version.
Wed Oct 17 12:15:28 2018[1,3]<stderr>:Instructions for updating:
Wed Oct 17 12:15:28 2018[1,3]<stderr>:Please switch to tf.train.MonitoredTrainingSession
Wed Oct 17 12:15:28 2018[1,1]<stderr>:W1017 12:15:28.046555 140103804675840 tf_logging.py:125] From /examples/official-benchmarks/scripts/tf_cnn_benchmarks/benchmark_cnn.py:1778: Supervisor.__init__ (from tensorflow.python.training.supervisor) is deprecated and will be removed in a future version.
Wed Oct 17 12:15:28 2018[1,1]<stderr>:Instructions for updating:
Wed Oct 17 12:15:28 2018[1,1]<stderr>:Please switch to tf.train.MonitoredTrainingSession
Wed Oct 17 12:15:28 2018[1,0]<stderr>:W1017 12:15:28.106281 140599208318720 tf_logging.py:125] From /examples/official-benchmarks/scripts/tf_cnn_benchmarks/benchmark_cnn.py:1778: Supervisor.__init__ (from tensorflow.python.training.supervisor) is deprecated and will be removed in a future version.
Wed Oct 17 12:15:28 2018[1,0]<stderr>:Instructions for updating:
Wed Oct 17 12:15:28 2018[1,0]<stderr>:Please switch to tf.train.MonitoredTrainingSession
Wed Oct 17 12:15:28 2018[1,2]<stderr>:W1017 12:15:28.127093 139655365052160 tf_logging.py:125] From /examples/official-benchmarks/scripts/tf_cnn_benchmarks/benchmark_cnn.py:1778: Supervisor.__init__ (from tensorflow.python.training.supervisor) is deprecated and will be removed in a future version.
Wed Oct 17 12:15:28 2018[1,2]<stderr>:Instructions for updating:
Wed Oct 17 12:15:28 2018[1,2]<stderr>:Please switch to tf.train.MonitoredTrainingSession
Wed Oct 17 12:15:28 2018[1,4]<stderr>:W1017 12:15:28.144564 140213149005568 tf_logging.py:125] From /examples/official-benchmarks/scripts/tf_cnn_benchmarks/benchmark_cnn.py:1778: Supervisor.__init__ (from tensorflow.python.training.supervisor) is deprecated and will be removed in a future version.
Wed Oct 17 12:15:28 2018[1,4]<stderr>:Instructions for updating:
Wed Oct 17 12:15:28 2018[1,4]<stderr>:Please switch to tf.train.MonitoredTrainingSession
Wed Oct 17 12:15:28 2018[1,7]<stderr>:W1017 12:15:28.159373 140311553251072 tf_logging.py:125] From /examples/official-benchmarks/scripts/tf_cnn_benchmarks/benchmark_cnn.py:1778: Supervisor.__init__ (from tensorflow.python.training.supervisor) is deprecated and will be removed in a future version.
Wed Oct 17 12:15:28 2018[1,7]<stderr>:Instructions for updating:
Wed Oct 17 12:15:28 2018[1,7]<stderr>:Please switch to tf.train.MonitoredTrainingSession
Wed Oct 17 12:15:28 2018[1,3]<stderr>:2018-10-17 12:15:28.176365: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Wed Oct 17 12:15:28 2018[1,1]<stderr>:2018-10-17 12:15:28.182546: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Wed Oct 17 12:15:28 2018[1,5]<stderr>:W1017 12:15:28.199435 139989938726656 tf_logging.py:125] From /examples/official-benchmarks/scripts/tf_cnn_benchmarks/benchmark_cnn.py:1778: Supervisor.__init__ (from tensorflow.python.training.supervisor) is deprecated and will be removed in a future version.
Wed Oct 17 12:15:28 2018[1,5]<stderr>:Instructions for updating:
Wed Oct 17 12:15:28 2018[1,5]<stderr>:Please switch to tf.train.MonitoredTrainingSession
Wed Oct 17 12:15:28 2018[1,6]<stderr>:W1017 12:15:28.234307 139945291773696 tf_logging.py:125] From /examples/official-benchmarks/scripts/tf_cnn_benchmarks/benchmark_cnn.py:1778: Supervisor.__init__ (from tensorflow.python.training.supervisor) is deprecated and will be removed in a future version.
Wed Oct 17 12:15:28 2018[1,6]<stderr>:Instructions for updating:
Wed Oct 17 12:15:28 2018[1,6]<stderr>:Please switch to tf.train.MonitoredTrainingSession
Wed Oct 17 12:15:28 2018[1,0]<stderr>:2018-10-17 12:15:28.251589: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Wed Oct 17 12:15:28 2018[1,4]<stderr>:2018-10-17 12:15:28.280781: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Wed Oct 17 12:15:28 2018[1,2]<stderr>:2018-10-17 12:15:28.281963: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Wed Oct 17 12:15:28 2018[1,7]<stderr>:2018-10-17 12:15:28.300125: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Wed Oct 17 12:15:28 2018[1,5]<stderr>:2018-10-17 12:15:28.342559: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Wed Oct 17 12:15:28 2018[1,6]<stderr>:2018-10-17 12:15:28.386845: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA
Wed Oct 17 12:15:28 2018[1,1]<stderr>:2018-10-17 12:15:28.597233: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
Wed Oct 17 12:15:28 2018[1,1]<stderr>:2018-10-17 12:15:28.600820: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
Wed Oct 17 12:15:28 2018[1,1]<stderr>:name: Tesla V100-SXM2-16GB major: 7 minor: 0 memoryClockRate(GHz): 1.53
Wed Oct 17 12:15:28 2018[1,1]<stderr>:pciBusID: 0000:00:1c.0
Wed Oct 17 12:15:28 2018[1,1]<stderr>:totalMemory: 15.78GiB freeMemory: 15.37GiB
Wed Oct 17 12:15:28 2018[1,1]<stderr>:2018-10-17 12:15:28.600869: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1490] Adding visible gpu devices: 1
Wed Oct 17 12:15:28 2018[1,3]<stderr>:2018-10-17 12:15:28.630485: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
Wed Oct 17 12:15:28 2018[1,0]<stderr>:2018-10-17 12:15:28.630811: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
Wed Oct 17 12:15:28 2018[1,3]<stderr>:2018-10-17 12:15:28.632005: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
Wed Oct 17 12:15:28 2018[1,3]<stderr>:name: Tesla V100-SXM2-16GB major: 7 minor: 0 memoryClockRate(GHz): 1.53
Wed Oct 17 12:15:28 2018[1,3]<stderr>:pciBusID: 0000:00:1e.0
Wed Oct 17 12:15:28 2018[1,3]<stderr>:totalMemory: 15.78GiB freeMemory: 15.37GiB
Wed Oct 17 12:15:28 2018[1,3]<stderr>:2018-10-17 12:15:28.632034: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1490] Adding visible gpu devices: 3
Wed Oct 17 12:15:28 2018[1,0]<stderr>:2018-10-17 12:15:28.632169: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
Wed Oct 17 12:15:28 2018[1,0]<stderr>:name: Tesla V100-SXM2-16GB major: 7 minor: 0 memoryClockRate(GHz): 1.53
Wed Oct 17 12:15:28 2018[1,0]<stderr>:pciBusID: 0000:00:1b.0
Wed Oct 17 12:15:28 2018[1,0]<stderr>:totalMemory: 15.78GiB freeMemory: 15.37GiB
Wed Oct 17 12:15:28 2018[1,0]<stderr>:2018-10-17 12:15:28.632200: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1490] Adding visible gpu devices: 0
Wed Oct 17 12:15:28 2018[1,4]<stderr>:2018-10-17 12:15:28.664503: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
Wed Oct 17 12:15:28 2018[1,2]<stderr>:2018-10-17 12:15:28.665764: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
Wed Oct 17 12:15:28 2018[1,2]<stderr>:2018-10-17 12:15:28.666469: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
Wed Oct 17 12:15:28 2018[1,2]<stderr>:name: Tesla V100-SXM2-16GB major: 7 minor: 0 memoryClockRate(GHz): 1.53
Wed Oct 17 12:15:28 2018[1,2]<stderr>:pciBusID: 0000:00:1d.0
Wed Oct 17 12:15:28 2018[1,2]<stderr>:totalMemory: 15.78GiB freeMemory: 15.37GiB
Wed Oct 17 12:15:28 2018[1,2]<stderr>:2018-10-17 12:15:28.666497: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1490] Adding visible gpu devices: 2
Wed Oct 17 12:15:28 2018[1,4]<stderr>:2018-10-17 12:15:28.669004: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
Wed Oct 17 12:15:28 2018[1,4]<stderr>:name: Tesla V100-SXM2-16GB major: 7 minor: 0 memoryClockRate(GHz): 1.53
Wed Oct 17 12:15:28 2018[1,4]<stderr>:pciBusID: 0000:00:1b.0
Wed Oct 17 12:15:28 2018[1,4]<stderr>:totalMemory: 15.78GiB freeMemory: 15.37GiB
Wed Oct 17 12:15:28 2018[1,4]<stderr>:2018-10-17 12:15:28.669035: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1490] Adding visible gpu devices: 0
Wed Oct 17 12:15:28 2018[1,7]<stderr>:2018-10-17 12:15:28.710713: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
Wed Oct 17 12:15:28 2018[1,7]<stderr>:2018-10-17 12:15:28.712817: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
Wed Oct 17 12:15:28 2018[1,7]<stderr>:name: Tesla V100-SXM2-16GB major: 7 minor: 0 memoryClockRate(GHz): 1.53
Wed Oct 17 12:15:28 2018[1,7]<stderr>:pciBusID: 0000:00:1e.0
Wed Oct 17 12:15:28 2018[1,7]<stderr>:totalMemory: 15.78GiB freeMemory: 15.37GiB
Wed Oct 17 12:15:28 2018[1,7]<stderr>:2018-10-17 12:15:28.712847: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1490] Adding visible gpu devices: 3
Wed Oct 17 12:15:28 2018[1,5]<stderr>:2018-10-17 12:15:28.751706: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
Wed Oct 17 12:15:28 2018[1,5]<stderr>:2018-10-17 12:15:28.752416: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
Wed Oct 17 12:15:28 2018[1,5]<stderr>:name: Tesla V100-SXM2-16GB major: 7 minor: 0 memoryClockRate(GHz): 1.53
Wed Oct 17 12:15:28 2018[1,5]<stderr>:pciBusID: 0000:00:1c.0
Wed Oct 17 12:15:28 2018[1,5]<stderr>:totalMemory: 15.78GiB freeMemory: 15.37GiB
Wed Oct 17 12:15:28 2018[1,5]<stderr>:2018-10-17 12:15:28.752445: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1490] Adding visible gpu devices: 1
Wed Oct 17 12:15:28 2018[1,6]<stderr>:2018-10-17 12:15:28.770680: I tensorflow/stream_executor/cuda/cuda_gpu_executor.cc:964] successful NUMA node read from SysFS had negative value (-1), but there must be at least one NUMA node, so returning NUMA node zero
Wed Oct 17 12:15:28 2018[1,6]<stderr>:2018-10-17 12:15:28.772061: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1411] Found device 0 with properties:
Wed Oct 17 12:15:28 2018[1,6]<stderr>:name: Tesla V100-SXM2-16GB major: 7 minor: 0 memoryClockRate(GHz): 1.53
Wed Oct 17 12:15:28 2018[1,6]<stderr>:pciBusID: 0000:00:1d.0
Wed Oct 17 12:15:28 2018[1,6]<stderr>:totalMemory: 15.78GiB freeMemory: 15.37GiB
Wed Oct 17 12:15:28 2018[1,6]<stderr>:2018-10-17 12:15:28.772093: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1490] Adding visible gpu devices: 2
Wed Oct 17 12:15:29 2018[1,1]<stderr>:2018-10-17 12:15:29.045511: I tensorflow/core/common_runtime/gpu/gpu_device.cc:971] Device interconnect StreamExecutor with strength 1 edge matrix:
Wed Oct 17 12:15:29 2018[1,1]<stderr>:2018-10-17 12:15:29.045568: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 1
Wed Oct 17 12:15:29 2018[1,1]<stderr>:2018-10-17 12:15:29.045578: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 1: N
Wed Oct 17 12:15:29 2018[1,1]<stderr>:2018-10-17 12:15:29.045901: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1103] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 14861 MB memory) -> physical GPU (device: 1, name: Tesla V100-SXM2-16GB, pci bus id: 0000:00:1c.0, compute capability: 7.0)
Wed Oct 17 12:15:29 2018[1,0]<stderr>:2018-10-17 12:15:29.084076: I tensorflow/core/common_runtime/gpu/gpu_device.cc:971] Device interconnect StreamExecutor with strength 1 edge matrix:
Wed Oct 17 12:15:29 2018[1,0]<stderr>:2018-10-17 12:15:29.084128: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 0
Wed Oct 17 12:15:29 2018[1,0]<stderr>:2018-10-17 12:15:29.084142: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 0: N
Wed Oct 17 12:15:29 2018[1,0]<stderr>:2018-10-17 12:15:29.084487: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1103] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 14861 MB memory) -> physical GPU (device: 0, name: Tesla V100-SXM2-16GB, pci bus id: 0000:00:1b.0, compute capability: 7.0)
Wed Oct 17 12:15:29 2018[1,3]<stderr>:2018-10-17 12:15:29.086357: I tensorflow/core/common_runtime/gpu/gpu_device.cc:971] Device interconnect StreamExecutor with strength 1 edge matrix:
Wed Oct 17 12:15:29 2018[1,3]<stderr>:2018-10-17 12:15:29.086391: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 3
Wed Oct 17 12:15:29 2018[1,3]<stderr>:2018-10-17 12:15:29.086400: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 3: N
Wed Oct 17 12:15:29 2018[1,3]<stderr>:2018-10-17 12:15:29.099388: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1103] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 14861 MB memory) -> physical GPU (device: 3, name: Tesla V100-SXM2-16GB, pci bus id: 0000:00:1e.0, compute capability: 7.0)
Wed Oct 17 12:15:29 2018[1,4]<stderr>:2018-10-17 12:15:29.130636: I tensorflow/core/common_runtime/gpu/gpu_device.cc:971] Device interconnect StreamExecutor with strength 1 edge matrix:
Wed Oct 17 12:15:29 2018[1,4]<stderr>:2018-10-17 12:15:29.130687: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 0
Wed Oct 17 12:15:29 2018[1,4]<stderr>:2018-10-17 12:15:29.130696: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 0: N
Wed Oct 17 12:15:29 2018[1,4]<stderr>:2018-10-17 12:15:29.131085: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1103] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 14861 MB memory) -> physical GPU (device: 0, name: Tesla V100-SXM2-16GB, pci bus id: 0000:00:1b.0, compute capability: 7.0)
Wed Oct 17 12:15:29 2018[1,2]<stderr>:2018-10-17 12:15:29.151779: I tensorflow/core/common_runtime/gpu/gpu_device.cc:971] Device interconnect StreamExecutor with strength 1 edge matrix:
Wed Oct 17 12:15:29 2018[1,2]<stderr>:2018-10-17 12:15:29.151828: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 2
Wed Oct 17 12:15:29 2018[1,2]<stderr>:2018-10-17 12:15:29.151837: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 2: N
Wed Oct 17 12:15:29 2018[1,2]<stderr>:2018-10-17 12:15:29.152195: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1103] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 14861 MB memory) -> physical GPU (device: 2, name: Tesla V100-SXM2-16GB, pci bus id: 0000:00:1d.0, compute capability: 7.0)
Wed Oct 17 12:15:29 2018[1,7]<stderr>:2018-10-17 12:15:29.176458: I tensorflow/core/common_runtime/gpu/gpu_device.cc:971] Device interconnect StreamExecutor with strength 1 edge matrix:
Wed Oct 17 12:15:29 2018[1,7]<stderr>:2018-10-17 12:15:29.176508: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 3
Wed Oct 17 12:15:29 2018[1,7]<stderr>:2018-10-17 12:15:29.176518: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 3: N
Wed Oct 17 12:15:29 2018[1,7]<stderr>:2018-10-17 12:15:29.176848: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1103] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 14861 MB memory) -> physical GPU (device: 3, name: Tesla V100-SXM2-16GB, pci bus id: 0000:00:1e.0, compute capability: 7.0)
Wed Oct 17 12:15:29 2018[1,5]<stderr>:2018-10-17 12:15:29.209940: I tensorflow/core/common_runtime/gpu/gpu_device.cc:971] Device interconnect StreamExecutor with strength 1 edge matrix:
Wed Oct 17 12:15:29 2018[1,5]<stderr>:2018-10-17 12:15:29.209995: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 1
Wed Oct 17 12:15:29 2018[1,5]<stderr>:2018-10-17 12:15:29.210005: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 1: N
Wed Oct 17 12:15:29 2018[1,5]<stderr>:2018-10-17 12:15:29.210349: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1103] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 14861 MB memory) -> physical GPU (device: 1, name: Tesla V100-SXM2-16GB, pci bus id: 0000:00:1c.0, compute capability: 7.0)
Wed Oct 17 12:15:29 2018[1,6]<stderr>:2018-10-17 12:15:29.251443: I tensorflow/core/common_runtime/gpu/gpu_device.cc:971] Device interconnect StreamExecutor with strength 1 edge matrix:
Wed Oct 17 12:15:29 2018[1,6]<stderr>:2018-10-17 12:15:29.251493: I tensorflow/core/common_runtime/gpu/gpu_device.cc:977] 2
Wed Oct 17 12:15:29 2018[1,6]<stderr>:2018-10-17 12:15:29.251503: I tensorflow/core/common_runtime/gpu/gpu_device.cc:990] 2: N
Wed Oct 17 12:15:29 2018[1,6]<stderr>:2018-10-17 12:15:29.251850: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1103] Created TensorFlow device (/job:localhost/replica:0/task:0/device:GPU:0 with 14861 MB memory) -> physical GPU (device: 2, name: Tesla V100-SXM2-16GB, pci bus id: 0000:00:1d.0, compute capability: 7.0)
Wed Oct 17 12:15:29 2018[1,1]<stderr>:I1017 12:15:29.414557 140103804675840 tf_logging.py:115] Running local_init_op.
Wed Oct 17 12:15:29 2018[1,3]<stderr>:I1017 12:15:29.467867 140676811613952 tf_logging.py:115] Running local_init_op.
Wed Oct 17 12:15:29 2018[1,0]<stderr>:I1017 12:15:29.469954 140599208318720 tf_logging.py:115] Running local_init_op.
Wed Oct 17 12:15:29 2018[1,4]<stderr>:I1017 12:15:29.503685 140213149005568 tf_logging.py:115] Running local_init_op.
Wed Oct 17 12:15:29 2018[1,2]<stderr>:I1017 12:15:29.535506 139655365052160 tf_logging.py:115] Running local_init_op.
Wed Oct 17 12:15:29 2018[1,7]<stderr>:I1017 12:15:29.552582 140311553251072 tf_logging.py:115] Running local_init_op.
Wed Oct 17 12:15:29 2018[1,5]<stderr>:I1017 12:15:29.593708 139989938726656 tf_logging.py:115] Running local_init_op.
Wed Oct 17 12:15:29 2018[1,6]<stderr>:I1017 12:15:29.630061 139945291773696 tf_logging.py:115] Running local_init_op.
Wed Oct 17 12:15:38 2018[1,7]<stderr>:I1017 12:15:38.720482 140311553251072 tf_logging.py:115] Done running local_init_op.
Wed Oct 17 12:15:38 2018[1,4]<stderr>:I1017 12:15:38.728429 140213149005568 tf_logging.py:115] Done running local_init_op.
Wed Oct 17 12:15:39 2018[1,5]<stderr>:I1017 12:15:39.004335 139989938726656 tf_logging.py:115] Done running local_init_op.
Wed Oct 17 12:15:39 2018[1,6]<stderr>:I1017 12:15:39.125670 139945291773696 tf_logging.py:115] Done running local_init_op.
Wed Oct 17 12:15:39 2018[1,2]<stderr>:I1017 12:15:39.889797 139655365052160 tf_logging.py:115] Done running local_init_op.
Wed Oct 17 12:15:40 2018[1,1]<stderr>:I1017 12:15:40.065726 140103804675840 tf_logging.py:115] Done running local_init_op.
Wed Oct 17 12:15:40 2018[1,3]<stderr>:I1017 12:15:40.076987 140676811613952 tf_logging.py:115] Done running local_init_op.
Wed Oct 17 12:15:40 2018[1,0]<stderr>:I1017 12:15:40.114632 140599208318720 tf_logging.py:115] Done running local_init_op.
Wed Oct 17 12:15:46 2018[1,2]<stdout>:Running warm up
Wed Oct 17 12:15:46 2018[1,0]<stdout>:Running warm up
Wed Oct 17 12:15:46 2018[1,6]<stdout>:Running warm up
Wed Oct 17 12:15:46 2018[1,4]<stdout>:Running warm up
Wed Oct 17 12:15:46 2018[1,1]<stdout>:Running warm up
Wed Oct 17 12:15:46 2018[1,7]<stdout>:Running warm up
Wed Oct 17 12:15:46 2018[1,3]<stdout>:Running warm up
Wed Oct 17 12:15:46 2018[1,5]<stdout>:Running warm up
Wed Oct 17 12:15:59 2018[1,1]<stderr>:2018-10-17 12:15:59.267119: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 1691 of 10000
Wed Oct 17 12:15:59 2018[1,6]<stderr>:2018-10-17 12:15:59.534794: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3520 of 10000
Wed Oct 17 12:15:59 2018[1,3]<stderr>:2018-10-17 12:15:59.607052: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3311 of 10000
Wed Oct 17 12:15:59 2018[1,0]<stderr>:2018-10-17 12:15:59.786902: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 1661 of 10000
Wed Oct 17 12:15:59 2018[1,4]<stderr>:2018-10-17 12:15:59.894538: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 1506 of 10000
Wed Oct 17 12:16:00 2018[1,2]<stderr>:2018-10-17 12:16:00.126825: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 713 of 10000
Wed Oct 17 12:16:00 2018[1,7]<stderr>:2018-10-17 12:16:00.234321: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 1487 of 10000
Wed Oct 17 12:16:01 2018[1,5]<stderr>:2018-10-17 12:16:01.791684: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 1516 of 10000
Wed Oct 17 12:16:09 2018[1,7]<stderr>:2018-10-17 12:16:09.793525: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3225 of 10000
Wed Oct 17 12:16:10 2018[1,6]<stderr>:2018-10-17 12:16:10.334193: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 7004 of 10000
Wed Oct 17 12:16:10 2018[1,4]<stderr>:2018-10-17 12:16:10.774201: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3431 of 10000
Wed Oct 17 12:16:10 2018[1,2]<stderr>:2018-10-17 12:16:10.915886: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 1573 of 10000
Wed Oct 17 12:16:12 2018[1,1]<stderr>:2018-10-17 12:16:12.254308: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3348 of 10000
Wed Oct 17 12:16:12 2018[1,5]<stderr>:2018-10-17 12:16:12.811808: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3394 of 10000
Wed Oct 17 12:16:12 2018[1,6]<stderr>:2018-10-17 12:16:12.951290: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:136] Shuffle buffer filled.
Wed Oct 17 12:16:13 2018[1,3]<stderr>:2018-10-17 12:16:13.692982: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3427 of 10000
Wed Oct 17 12:16:13 2018[1,0]<stderr>:2018-10-17 12:16:13.953272: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3335 of 10000
Wed Oct 17 12:16:19 2018[1,3]<stderr>:2018-10-17 12:16:19.049858: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:136] Shuffle buffer filled.
Wed Oct 17 12:16:19 2018[1,1]<stderr>:2018-10-17 12:16:19.459115: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 6817 of 10000
Wed Oct 17 12:16:22 2018[1,7]<stderr>:2018-10-17 12:16:22.516284: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3446 of 10000
Wed Oct 17 12:16:23 2018[1,5]<stderr>:2018-10-17 12:16:23.350772: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3475 of 10000
Wed Oct 17 12:16:24 2018[1,0]<stderr>:2018-10-17 12:16:24.057483: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 6896 of 10000
Wed Oct 17 12:16:24 2018[1,1]<stderr>:2018-10-17 12:16:24.639116: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:136] Shuffle buffer filled.
Wed Oct 17 12:16:24 2018[1,4]<stderr>:2018-10-17 12:16:24.670121: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3477 of 10000
Wed Oct 17 12:16:25 2018[1,0]<stderr>:2018-10-17 12:16:25.616375: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:136] Shuffle buffer filled.
Wed Oct 17 12:16:26 2018[1,7]<stderr>:2018-10-17 12:16:26.496371: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:136] Shuffle buffer filled.
Wed Oct 17 12:16:26 2018[1,5]<stderr>:2018-10-17 12:16:26.817841: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:136] Shuffle buffer filled.
Wed Oct 17 12:16:27 2018[1,2]<stderr>:2018-10-17 12:16:27.557004: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 3480 of 10000
Wed Oct 17 12:16:27 2018[1,4]<stderr>:2018-10-17 12:16:27.858624: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:136] Shuffle buffer filled.
Wed Oct 17 12:16:31 2018[1,2]<stderr>:2018-10-17 12:16:31.756625: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:98] Filling up shuffle buffer (this may take a while): 6841 of 10000
Wed Oct 17 12:16:31 2018[1,2]<stderr>:2018-10-17 12:16:31.916107: I tensorflow/core/kernels/data/shuffle_dataset_op.cc:136] Shuffle buffer filled.
Wed Oct 17 12:16:34 2018[1,0]<stdout>:
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] misc/ibvwrap.cu:63 NCCL WARN Failed to open libibverbs.so[.1]
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Using internal Network Socket
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO NET : Using interface eth0:192.168.142.144<0>
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO NET/Socket : 1 interfaces found
Wed Oct 17 12:16:34 2018[1,0]<stdout>:NCCL version 2.3.5+cuda9.0
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO rank 0 nranks 8
Wed Oct 17 12:16:34 2018[1,1]<stdout>:
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] misc/ibvwrap.cu:63 NCCL WARN Failed to open libibverbs.so[.1]
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Using internal Network Socket
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO rank 1 nranks 8
Wed Oct 17 12:16:34 2018[1,3]<stdout>:
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] misc/ibvwrap.cu:63 NCCL WARN Failed to open libibverbs.so[.1]
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO Using internal Network Socket
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO rank 3 nranks 8
Wed Oct 17 12:16:34 2018[1,7]<stdout>:
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] misc/ibvwrap.cu:63 NCCL WARN Failed to open libibverbs.so[.1]
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO Using internal Network Socket
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO rank 7 nranks 8
Wed Oct 17 12:16:34 2018[1,4]<stdout>:
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] misc/ibvwrap.cu:63 NCCL WARN Failed to open libibverbs.so[.1]
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Using internal Network Socket
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO rank 4 nranks 8
Wed Oct 17 12:16:34 2018[1,5]<stdout>:
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] misc/ibvwrap.cu:63 NCCL WARN Failed to open libibverbs.so[.1]
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Using internal Network Socket
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO rank 5 nranks 8
Wed Oct 17 12:16:34 2018[1,2]<stdout>:
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] misc/ibvwrap.cu:63 NCCL WARN Failed to open libibverbs.so[.1]
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Using internal Network Socket
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO rank 2 nranks 8
Wed Oct 17 12:16:34 2018[1,6]<stdout>:
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] misc/ibvwrap.cu:63 NCCL WARN Failed to open libibverbs.so[.1]
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Using internal Network Socket
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO rank 6 nranks 8
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO comm 0x7f6b6c37c2d0 rank 1 nranks 8
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO NET : Using interface eth0:192.168.142.144<0>
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO NET/Socket : 1 interfaces found
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Could not find real path of /sys/class/net/eth0/device
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO CUDA Dev 1, IP Interfaces : eth0(SOC)
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO comm 0x7f50e83b1220 rank 5 nranks 8
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO NET : Using interface eth0:192.168.198.126<0>
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO NET/Socket : 1 interfaces found
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO comm 0x7f46843a8180 rank 6 nranks 8
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO NET : Using interface eth0:192.168.198.126<0>
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO NET/Socket : 1 interfaces found
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO comm 0x7f84e03b1770 rank 4 nranks 8
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO NET : Using interface eth0:192.168.198.126<0>
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO NET/Socket : 1 interfaces found
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO comm 0x7ff0d4383c50 rank 3 nranks 8
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO NET : Using interface eth0:192.168.142.144<0>
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO NET/Socket : 1 interfaces found
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO comm 0x7f0304386060 rank 2 nranks 8
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO Could not find real path of /sys/class/net/eth0/device
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO CUDA Dev 3, IP Interfaces : eth0(SOC)
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO NET : Using interface eth0:192.168.142.144<0>
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO NET/Socket : 1 interfaces found
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Could not find real path of /sys/class/net/eth0/device
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO CUDA Dev 2, IP Interfaces : eth0(SOC)
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Could not find real path of /sys/class/net/eth0/device
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO CUDA Dev 1, IP Interfaces : eth0(SOC)
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO comm 0x7f9bcc36b630 rank 7 nranks 8
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO NET : Using interface eth0:192.168.198.126<0>
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO NET/Socket : 1 interfaces found
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO comm 0x7fdec43399b0 rank 0 nranks 8
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Could not find real path of /sys/class/net/eth0/device
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO CUDA Dev 2, IP Interfaces : eth0(SOC)
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Could not find real path of /sys/class/net/eth0/device
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO CUDA Dev 0, IP Interfaces : eth0(SOC)
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Could not find real path of /sys/class/net/eth0/device
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO CUDA Dev 0, IP Interfaces : eth0(SOC)
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO Could not find real path of /sys/class/net/eth0/device
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO CUDA Dev 3, IP Interfaces : eth0(SOC)
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO NCCL_MIN_NRINGS set by environment to 8.
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO NCCL_MIN_NRINGS set by environment to 8.
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO NCCL_MIN_NRINGS set by environment to 8.
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO NCCL_MIN_NRINGS set by environment to 8.
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO NCCL_MIN_NRINGS set by environment to 8.
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Duplicating rings to 8 per user request.
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO NCCL_MIN_NRINGS set by environment to 8.
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO NCCL_MIN_NRINGS set by environment to 8.
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO NCCL_MIN_NRINGS set by environment to 8.
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Using 256 threads
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Min Comp Cap 7
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 00 : 0 1 2 3 4 5 6 7
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 01 : 0 1 2 3 4 5 6 7
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 02 : 0 1 2 3 4 5 6 7
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 03 : 0 1 2 3 4 5 6 7
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 04 : 0 1 2 3 4 5 6 7
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 05 : 0 1 2 3 4 5 6 7
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 06 : 0 1 2 3 4 5 6 7
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 07 : 0 1 2 3 4 5 6 7
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Ring 00 : 6[2] -> 7[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Ring 00 : 5[1] -> 6[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Ring 00 : 1[1] -> 2[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Ring 00 : 2[2] -> 3[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 00 : 3 -> 4 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 00 : 7 -> 0 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 00 : 4[0] -> 5[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 00 : 0[0] -> 1[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Ring 01 : 1[1] -> 2[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Ring 01 : 2[2] -> 3[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Ring 01 : 5[1] -> 6[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 01 : 3 -> 4 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 01 : 4[0] -> 5[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Ring 01 : 6[2] -> 7[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 01 : 7 -> 0 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 01 : 0[0] -> 1[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Ring 02 : 1[1] -> 2[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Ring 02 : 2[2] -> 3[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Ring 02 : 5[1] -> 6[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Ring 02 : 6[2] -> 7[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 02 : 3 -> 4 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 02 : 4[0] -> 5[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 02 : 7 -> 0 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 02 : 0[0] -> 1[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Ring 03 : 1[1] -> 2[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Ring 03 : 2[2] -> 3[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Ring 03 : 5[1] -> 6[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Ring 03 : 6[2] -> 7[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 03 : 3 -> 4 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 03 : 4[0] -> 5[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 03 : 7 -> 0 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 03 : 0[0] -> 1[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Ring 04 : 1[1] -> 2[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Ring 04 : 2[2] -> 3[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Ring 04 : 5[1] -> 6[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Ring 04 : 6[2] -> 7[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 04 : 3 -> 4 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 04 : 4[0] -> 5[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 04 : 7 -> 0 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 04 : 0[0] -> 1[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Ring 05 : 1[1] -> 2[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Ring 05 : 2[2] -> 3[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Ring 05 : 5[1] -> 6[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Ring 05 : 6[2] -> 7[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 05 : 3 -> 4 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 05 : 4[0] -> 5[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 05 : 7 -> 0 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 05 : 0[0] -> 1[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Ring 06 : 1[1] -> 2[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Ring 06 : 2[2] -> 3[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Ring 06 : 5[1] -> 6[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Ring 06 : 6[2] -> 7[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 06 : 3 -> 4 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 06 : 4[0] -> 5[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 06 : 7 -> 0 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 06 : 0[0] -> 1[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,5]<stdout>:openmpi-worker-1:39:306 [1] NCCL INFO Ring 07 : 5[1] -> 6[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,6]<stdout>:openmpi-worker-1:41:305 [2] NCCL INFO Ring 07 : 6[2] -> 7[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 07 : 3 -> 4 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,4]<stdout>:openmpi-worker-1:37:314 [0] NCCL INFO Ring 07 : 4[0] -> 5[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,3]<stdout>:openmpi-worker-0:48:315 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,1]<stdout>:openmpi-worker-0:45:318 [1] NCCL INFO Ring 07 : 1[1] -> 2[2] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,2]<stdout>:openmpi-worker-0:47:309 [2] NCCL INFO Ring 07 : 2[2] -> 3[3] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,7]<stdout>:openmpi-worker-1:42:307 [3] NCCL INFO nvmlDeviceGetNvLinkState() failed: Not Supported
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 07 : 7 -> 0 via NET/Socket/0
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Ring 07 : 0[0] -> 1[1] via P2P/IPC
Wed Oct 17 12:16:34 2018[1,0]<stdout>:openmpi-worker-0:43:310 [0] NCCL INFO Launch mode Parallel
Wed Oct 17 12:16:46 2018[1,7]<stdout>:Done warm up
Wed Oct 17 12:16:46 2018[1,7]<stdout>:Step Img/sec total_loss
Wed Oct 17 12:16:46 2018[1,6]<stdout>:Done warm up
Wed Oct 17 12:16:46 2018[1,6]<stdout>:Step Img/sec total_loss
Wed Oct 17 12:16:46 2018[1,2]<stdout>:Done warm up
Wed Oct 17 12:16:46 2018[1,2]<stdout>:Step Img/sec total_loss
Wed Oct 17 12:16:46 2018[1,3]<stdout>:Done warm up
Wed Oct 17 12:16:46 2018[1,3]<stdout>:Step Img/sec total_loss
Wed Oct 17 12:16:46 2018[1,0]<stdout>:Done warm up
Wed Oct 17 12:16:46 2018[1,0]<stdout>:Step Img/sec total_loss
Wed Oct 17 12:16:46 2018[1,1]<stdout>:Done warm up
Wed Oct 17 12:16:46 2018[1,1]<stdout>:Step Img/sec total_loss
Wed Oct 17 12:16:46 2018[1,4]<stdout>:Done warm up
Wed Oct 17 12:16:46 2018[1,4]<stdout>:Step Img/sec total_loss
Wed Oct 17 12:16:46 2018[1,5]<stdout>:Done warm up
Wed Oct 17 12:16:46 2018[1,5]<stdout>:Step Img/sec total_loss
Wed Oct 17 12:16:47 2018[1,3]<stdout>:1 images/sec: 62.0 +/- 0.0 (jitter = 0.0) 7.255
Wed Oct 17 12:16:47 2018[1,6]<stdout>:1 images/sec: 61.9 +/- 0.0 (jitter = 0.0) 7.255
Wed Oct 17 12:16:47 2018[1,5]<stdout>:1 images/sec: 61.8 +/- 0.0 (jitter = 0.0) 7.256
Wed Oct 17 12:16:47 2018[1,7]<stdout>:1 images/sec: 61.0 +/- 0.0 (jitter = 0.0) 7.255
Wed Oct 17 12:16:47 2018[1,2]<stdout>:1 images/sec: 60.9 +/- 0.0 (jitter = 0.0) 7.255
Wed Oct 17 12:16:47 2018[1,1]<stdout>:1 images/sec: 60.9 +/- 0.0 (jitter = 0.0) 7.255
Wed Oct 17 12:16:47 2018[1,4]<stdout>:1 images/sec: 61.1 +/- 0.0 (jitter = 0.0) 7.255
Wed Oct 17 12:16:47 2018[1,0]<stdout>:1 images/sec: 60.0 +/- 0.0 (jitter = 0.0) 7.256
Wed Oct 17 12:16:56 2018[1,6]<stdout>:10 images/sec: 60.8 +/- 0.4 (jitter = 1.8) 7.256
Wed Oct 17 12:16:56 2018[1,7]<stdout>:10 images/sec: 60.7 +/- 0.3 (jitter = 0.8) 7.255
Wed Oct 17 12:16:56 2018[1,2]<stdout>:10 images/sec: 60.8 +/- 0.3 (jitter = 1.0) 7.255
Wed Oct 17 12:16:57 2018[1,5]<stdout>:10 images/sec: 60.7 +/- 0.6 (jitter = 2.4) 7.256
Wed Oct 17 12:16:57 2018[1,3]<stdout>:10 images/sec: 60.7 +/- 0.5 (jitter = 1.9) 7.255
Wed Oct 17 12:16:57 2018[1,1]<stdout>:10 images/sec: 60.7 +/- 0.3 (jitter = 1.4) 7.255
Wed Oct 17 12:16:57 2018[1,4]<stdout>:10 images/sec: 60.7 +/- 0.5 (jitter = 2.2) 7.255
Wed Oct 17 12:16:57 2018[1,0]<stdout>:10 images/sec: 60.7 +/- 0.5 (jitter = 0.7) 7.255
Wed Oct 17 12:17:07 2018[1,1]<stdout>:20 images/sec: 60.3 +/- 0.3 (jitter = 1.3) 7.255
Wed Oct 17 12:17:07 2018[1,0]<stdout>:20 images/sec: 60.2 +/- 0.3 (jitter = 1.0) 7.255
Wed Oct 17 12:17:07 2018[1,7]<stdout>:20 images/sec: 60.2 +/- 0.3 (jitter = 1.3) 7.255
Wed Oct 17 12:17:07 2018[1,2]<stdout>:20 images/sec: 60.2 +/- 0.3 (jitter = 1.2) 7.255
Wed Oct 17 12:17:07 2018[1,6]<stdout>:20 images/sec: 60.2 +/- 0.3 (jitter = 2.0) 7.255
Wed Oct 17 12:17:07 2018[1,5]<stdout>:20 images/sec: 60.2 +/- 0.4 (jitter = 1.9) 7.255
Wed Oct 17 12:17:07 2018[1,3]<stdout>:20 images/sec: 60.1 +/- 0.4 (jitter = 1.9) 7.255
Wed Oct 17 12:17:07 2018[1,4]<stdout>:20 images/sec: 60.1 +/- 0.4 (jitter = 2.2) 7.255
Wed Oct 17 12:17:18 2018[1,1]<stdout>:30 images/sec: 60.1 +/- 0.4 (jitter = 2.2) 7.255
Wed Oct 17 12:17:18 2018[1,5]<stdout>:30 images/sec: 60.1 +/- 0.4 (jitter = 2.5) 7.255
Wed Oct 17 12:17:18 2018[1,2]<stdout>:30 images/sec: 60.1 +/- 0.4 (jitter = 1.7) 7.255
Wed Oct 17 12:17:18 2018[1,6]<stdout>:30 images/sec: 60.1 +/- 0.4 (jitter = 2.4) 7.256
Wed Oct 17 12:17:18 2018[1,3]<stdout>:30 images/sec: 60.1 +/- 0.4 (jitter = 1.9) 7.255
Wed Oct 17 12:17:18 2018[1,7]<stdout>:30 images/sec: 60.1 +/- 0.3 (jitter = 1.7) 7.255
Wed Oct 17 12:17:18 2018[1,0]<stdout>:30 images/sec: 60.1 +/- 0.4 (jitter = 2.0) 7.255
Wed Oct 17 12:17:18 2018[1,4]<stdout>:30 images/sec: 60.2 +/- 0.4 (jitter = 2.4) 7.255
Wed Oct 17 12:17:28 2018[1,1]<stdout>:40 images/sec: 60.5 +/- 0.4 (jitter = 1.8) 7.255
Wed Oct 17 12:17:28 2018[1,0]<stdout>:40 images/sec: 60.5 +/- 0.3 (jitter = 2.3) 7.255
Wed Oct 17 12:17:28 2018[1,7]<stdout>:40 images/sec: 60.5 +/- 0.3 (jitter = 2.1) 7.255
Wed Oct 17 12:17:28 2018[1,2]<stdout>:40 images/sec: 60.5 +/- 0.3 (jitter = 1.9) 7.255
Wed Oct 17 12:17:28 2018[1,6]<stdout>:40 images/sec: 60.5 +/- 0.3 (jitter = 2.6) 7.255
Wed Oct 17 12:17:28 2018[1,3]<stdout>:40 images/sec: 60.5 +/- 0.4 (jitter = 2.1) 7.255
Wed Oct 17 12:17:28 2018[1,5]<stdout>:40 images/sec: 60.5 +/- 0.3 (jitter = 2.5) 7.255
Wed Oct 17 12:17:28 2018[1,4]<stdout>:40 images/sec: 60.5 +/- 0.3 (jitter = 2.1) 7.255
Wed Oct 17 12:17:39 2018[1,2]<stdout>:50 images/sec: 60.4 +/- 0.3 (jitter = 2.1) 7.255
Wed Oct 17 12:17:39 2018[1,1]<stdout>:50 images/sec: 60.4 +/- 0.3 (jitter = 2.3) 7.255
Wed Oct 17 12:17:39 2018[1,7]<stdout>:50 images/sec: 60.4 +/- 0.3 (jitter = 2.4) 7.255
Wed Oct 17 12:17:39 2018[1,0]<stdout>:50 images/sec: 60.4 +/- 0.3 (jitter = 2.4) 7.255
Wed Oct 17 12:17:39 2018[1,3]<stdout>:50 images/sec: 60.4 +/- 0.3 (jitter = 2.2) 7.255
Wed Oct 17 12:17:39 2018[1,6]<stdout>:50 images/sec: 60.4 +/- 0.3 (jitter = 2.6) 7.255
Wed Oct 17 12:17:39 2018[1,4]<stdout>:50 images/sec: 60.4 +/- 0.3 (jitter = 2.3) 7.255
Wed Oct 17 12:17:39 2018[1,5]<stdout>:50 images/sec: 60.4 +/- 0.3 (jitter = 2.7) 7.255
Wed Oct 17 12:17:49 2018[1,5]<stdout>:60 images/sec: 60.5 +/- 0.3 (jitter = 2.7) 7.255
Wed Oct 17 12:17:49 2018[1,6]<stdout>:60 images/sec: 60.5 +/- 0.3 (jitter = 2.6) 7.255
Wed Oct 17 12:17:49 2018[1,4]<stdout>:60 images/sec: 60.5 +/- 0.3 (jitter = 2.3) 7.255
Wed Oct 17 12:17:49 2018[1,3]<stdout>:60 images/sec: 60.5 +/- 0.3 (jitter = 2.3) 7.255
Wed Oct 17 12:17:49 2018[1,2]<stdout>:60 images/sec: 60.5 +/- 0.3 (jitter = 2.3) 7.255
Wed Oct 17 12:17:49 2018[1,7]<stdout>:60 images/sec: 60.5 +/- 0.3 (jitter = 2.5) 7.256
Wed Oct 17 12:17:49 2018[1,1]<stdout>:60 images/sec: 60.5 +/- 0.3 (jitter = 2.4) 7.255
Wed Oct 17 12:17:49 2018[1,0]<stdout>:60 images/sec: 60.5 +/- 0.3 (jitter = 2.4) 7.255
Wed Oct 17 12:18:00 2018[1,2]<stdout>:70 images/sec: 60.5 +/- 0.3 (jitter = 2.3) 7.255
Wed Oct 17 12:18:00 2018[1,3]<stdout>:70 images/sec: 60.5 +/- 0.3 (jitter = 2.3) 7.255
Wed Oct 17 12:18:00 2018[1,7]<stdout>:70 images/sec: 60.5 +/- 0.3 (jitter = 2.5) 7.255
Wed Oct 17 12:18:00 2018[1,6]<stdout>:70 images/sec: 60.5 +/- 0.3 (jitter = 2.6) 7.255
Wed Oct 17 12:18:00 2018[1,1]<stdout>:70 images/sec: 60.5 +/- 0.3 (jitter = 2.2) 7.255
Wed Oct 17 12:18:00 2018[1,0]<stdout>:70 images/sec: 60.5 +/- 0.3 (jitter = 2.5) 7.254
Wed Oct 17 12:18:00 2018[1,5]<stdout>:70 images/sec: 60.5 +/- 0.3 (jitter = 2.6) 7.255
Wed Oct 17 12:18:00 2018[1,4]<stdout>:70 images/sec: 60.5 +/- 0.3 (jitter = 2.4) 7.256
Wed Oct 17 12:18:10 2018[1,3]<stdout>:80 images/sec: 60.6 +/- 0.3 (jitter = 2.4) 7.255
Wed Oct 17 12:18:10 2018[1,6]<stdout>:80 images/sec: 60.6 +/- 0.2 (jitter = 2.5) 7.255
Wed Oct 17 12:18:10 2018[1,2]<stdout>:80 images/sec: 60.6 +/- 0.2 (jitter = 2.0) 7.256
Wed Oct 17 12:18:10 2018[1,7]<stdout>:80 images/sec: 60.6 +/- 0.2 (jitter = 2.2) 7.256
Wed Oct 17 12:18:10 2018[1,5]<stdout>:80 images/sec: 60.6 +/- 0.2 (jitter = 2.2) 7.255
Wed Oct 17 12:18:10 2018[1,4]<stdout>:80 images/sec: 60.6 +/- 0.2 (jitter = 2.1) 7.255
Wed Oct 17 12:18:10 2018[1,1]<stdout>:80 images/sec: 60.6 +/- 0.3 (jitter = 2.1) 7.255
Wed Oct 17 12:18:10 2018[1,0]<stdout>:80 images/sec: 60.6 +/- 0.3 (jitter = 2.4) 7.255
Wed Oct 17 12:18:21 2018[1,5]<stdout>:90 images/sec: 60.5 +/- 0.2 (jitter = 2.5) 7.255
Wed Oct 17 12:18:21 2018[1,4]<stdout>:90 images/sec: 60.5 +/- 0.2 (jitter = 2.4) 7.255
Wed Oct 17 12:18:21 2018[1,3]<stdout>:90 images/sec: 60.5 +/- 0.2 (jitter = 2.3) 7.255
Wed Oct 17 12:18:21 2018[1,6]<stdout>:90 images/sec: 60.5 +/- 0.2 (jitter = 2.6) 7.255
Wed Oct 17 12:18:21 2018[1,7]<stdout>:90 images/sec: 60.5 +/- 0.2 (jitter = 2.3) 7.256
Wed Oct 17 12:18:21 2018[1,1]<stdout>:90 images/sec: 60.5 +/- 0.2 (jitter = 2.1) 7.255
Wed Oct 17 12:18:21 2018[1,2]<stdout>:90 images/sec: 60.5 +/- 0.2 (jitter = 2.1) 7.255
Wed Oct 17 12:18:21 2018[1,0]<stdout>:90 images/sec: 60.5 +/- 0.3 (jitter = 2.3) 7.255
Wed Oct 17 12:18:32 2018[1,1]<stdout>:100 images/sec: 60.5 +/- 0.2 (jitter = 2.4) 7.256
Wed Oct 17 12:18:32 2018[1,1]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,1]<stdout>:total images/sec: 483.64
Wed Oct 17 12:18:32 2018[1,1]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,2]<stdout>:100 images/sec: 60.5 +/- 0.2 (jitter = 2.3) 7.255
Wed Oct 17 12:18:32 2018[1,2]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,2]<stdout>:total images/sec: 483.63
Wed Oct 17 12:18:32 2018[1,2]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,0]<stdout>:100 images/sec: 60.5 +/- 0.2 (jitter = 2.3) 7.255
Wed Oct 17 12:18:32 2018[1,0]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,0]<stdout>:total images/sec: 483.62
Wed Oct 17 12:18:32 2018[1,0]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,7]<stdout>:100 images/sec: 60.5 +/- 0.2 (jitter = 2.4) 7.255
Wed Oct 17 12:18:32 2018[1,7]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,7]<stdout>:total images/sec: 483.62
Wed Oct 17 12:18:32 2018[1,7]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,3]<stdout>:100 images/sec: 60.5 +/- 0.2 (jitter = 2.4) 7.255
Wed Oct 17 12:18:32 2018[1,3]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,3]<stdout>:total images/sec: 483.61
Wed Oct 17 12:18:32 2018[1,3]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,6]<stdout>:100 images/sec: 60.5 +/- 0.2 (jitter = 2.6) 7.255
Wed Oct 17 12:18:32 2018[1,6]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,6]<stdout>:total images/sec: 483.60
Wed Oct 17 12:18:32 2018[1,6]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,5]<stdout>:100 images/sec: 60.5 +/- 0.2 (jitter = 2.5) 7.255
Wed Oct 17 12:18:32 2018[1,5]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,5]<stdout>:total images/sec: 483.60
Wed Oct 17 12:18:32 2018[1,5]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,4]<stdout>:100 images/sec: 60.5 +/- 0.2 (jitter = 2.3) 7.255
Wed Oct 17 12:18:32 2018[1,4]<stdout>:----------------------------------------------------------------
Wed Oct 17 12:18:32 2018[1,4]<stdout>:total images/sec: 483.61
Wed Oct 17 12:18:32 2018[1,4]<stdout>:----------------------------------------------------------------
exit ${exit_code}
+ exit 0