-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtime_log.txt
3241 lines (3240 loc) · 225 KB
/
time_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
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
Running attack: go --> down
2017-10-26 21:03:34.678144: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 21:03:34.948353: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 11.07GiB
2017-10-26 21:03:35.193816: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 21:03:35.194506: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 21:03:35.194524: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 21:03:35.194529: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 21:03:35.194532: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 21:03:35.194540: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 21:03:35.194545: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 17.1096 seconds
Attack done (500 iterations) in 39.0555 seconds
Attack done (500 iterations) in 0.2303 seconds
Attack done (500 iterations) in 54.4187 seconds
Attack done (500 iterations) in 54.0748 seconds
Attack done (500 iterations) in 77.5612 seconds
Attack done (500 iterations) in 63.0076 seconds
Attack done (500 iterations) in 31.7504 seconds
Attack done (500 iterations) in 79.1837 seconds
Attack done (500 iterations) in 19.8636 seconds
Attack done (500 iterations) in 18.7639 seconds
Attack done (500 iterations) in 17.6010 seconds
Attack done (500 iterations) in 1.2691 seconds
Attack done (500 iterations) in 25.1455 seconds
Attack done (500 iterations) in 49.4147 seconds
Attack done (500 iterations) in 43.9083 seconds
Attack done (500 iterations) in 26.1632 seconds
Attack done (500 iterations) in 46.9988 seconds
Attack done (500 iterations) in 47.8827 seconds
Attack done (500 iterations) in 104.4578 seconds
Running attack: left --> down
2017-10-26 21:17:15.466672: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 21:17:15.713610: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 11.08GiB
2017-10-26 21:17:15.965829: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 21:17:15.966489: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 21:17:15.966508: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 21:17:15.966513: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 21:17:15.966516: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 21:17:15.966523: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 21:17:15.966527: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 63.3241 seconds
Attack done (500 iterations) in 111.3988 seconds
Attack done (500 iterations) in 118.0704 seconds
Attack done (500 iterations) in 130.0131 seconds
Attack done (500 iterations) in 140.6477 seconds
Attack done (500 iterations) in 10.7368 seconds
Attack done (500 iterations) in 65.8320 seconds
Attack done (500 iterations) in 23.8368 seconds
Attack done (500 iterations) in 63.1834 seconds
Attack done (500 iterations) in 139.8245 seconds
Attack done (500 iterations) in 53.5005 seconds
Attack done (500 iterations) in 145.5692 seconds
Attack done (500 iterations) in 104.2643 seconds
Attack done (500 iterations) in 54.1706 seconds
Attack done (500 iterations) in 32.0414 seconds
Attack done (500 iterations) in 12.3187 seconds
Attack done (500 iterations) in 18.6994 seconds
Attack done (500 iterations) in 141.3865 seconds
Attack done (500 iterations) in 96.6535 seconds
Attack done (500 iterations) in 38.1732 seconds
Running attack: no --> down
2017-10-26 21:43:21.784682: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 21:43:22.064662: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 11.08GiB
2017-10-26 21:43:22.313267: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 21:43:22.313982: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 21:43:22.314006: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 21:43:22.314012: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 21:43:22.314017: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 21:43:22.314024: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 21:43:22.314030: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 67.9692 seconds
Attack done (500 iterations) in 4.1075 seconds
Attack done (500 iterations) in 4.3812 seconds
Attack done (500 iterations) in 25.3969 seconds
Attack done (500 iterations) in 47.2932 seconds
Attack done (500 iterations) in 127.2838 seconds
Attack done (500 iterations) in 21.5544 seconds
Attack done (500 iterations) in 36.5270 seconds
Attack done (500 iterations) in 9.9807 seconds
Attack done (500 iterations) in 20.3957 seconds
Attack done (500 iterations) in 14.0885 seconds
Attack done (500 iterations) in 2.4214 seconds
Attack done (500 iterations) in 22.1025 seconds
Attack done (500 iterations) in 21.1632 seconds
Attack done (500 iterations) in 2.0416 seconds
Attack done (500 iterations) in 9.6773 seconds
Attack done (500 iterations) in 2.6388 seconds
Attack done (500 iterations) in 9.2343 seconds
Attack done (500 iterations) in 10.7344 seconds
Attack done (500 iterations) in 19.3604 seconds
Running attack: off --> down
2017-10-26 21:51:22.675420: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 21:51:22.928390: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 11.08GiB
2017-10-26 21:51:23.191995: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 21:51:23.192916: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 21:51:23.192949: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 21:51:23.192958: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 21:51:23.192963: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 21:51:23.192974: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 21:51:23.192982: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 14.4956 seconds
Attack done (500 iterations) in 53.6991 seconds
Attack done (500 iterations) in 28.1472 seconds
Attack done (500 iterations) in 59.6000 seconds
Attack done (500 iterations) in 28.4227 seconds
Attack done (500 iterations) in 28.8335 seconds
Attack done (500 iterations) in 36.4441 seconds
Attack done (500 iterations) in 34.6203 seconds
Attack done (500 iterations) in 107.9486 seconds
Attack done (500 iterations) in 140.0864 seconds
Attack done (500 iterations) in 39.0158 seconds
Attack done (500 iterations) in 59.5250 seconds
Attack done (500 iterations) in 22.3414 seconds
Attack done (500 iterations) in 57.1576 seconds
Attack done (500 iterations) in 37.3969 seconds
Attack done (500 iterations) in 12.4797 seconds
Attack done (500 iterations) in 35.7610 seconds
Attack done (500 iterations) in 15.2712 seconds
Attack done (500 iterations) in 102.0578 seconds
Attack done (500 iterations) in 75.5051 seconds
Running attack: on --> down
2017-10-26 22:07:54.060125: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 22:07:54.322546: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 11.06GiB
2017-10-26 22:07:54.572432: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 22:07:54.573094: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 22:07:54.573112: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 22:07:54.573117: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 22:07:54.573121: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 22:07:54.573128: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 22:07:54.573132: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 3.0644 seconds
Attack done (500 iterations) in 43.1590 seconds
Attack done (500 iterations) in 14.3475 seconds
Attack done (500 iterations) in 52.3304 seconds
Attack done (500 iterations) in 4.6207 seconds
Attack done (500 iterations) in 58.7237 seconds
Attack done (500 iterations) in 151.3307 seconds
Attack done (500 iterations) in 1.5041 seconds
Attack done (500 iterations) in 98.5836 seconds
Attack done (500 iterations) in 15.8842 seconds
Attack done (500 iterations) in 113.5173 seconds
Attack done (500 iterations) in 0.2115 seconds
Attack done (500 iterations) in 1.8735 seconds
Attack done (500 iterations) in 51.9216 seconds
Attack done (500 iterations) in 117.4684 seconds
Attack done (500 iterations) in 64.3236 seconds
Attack done (500 iterations) in 6.8612 seconds
Attack done (500 iterations) in 3.7313 seconds
Attack done (500 iterations) in 16.5268 seconds
Attack done (500 iterations) in 9.0296 seconds
Running attack: right --> down
2017-10-26 22:21:45.800185: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 22:21:46.056233: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.97GiB
2017-10-26 22:21:46.310281: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 22:21:46.311444: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 22:21:46.311486: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 22:21:46.311496: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 22:21:46.311503: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 22:21:46.311516: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 22:21:46.311526: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 140.8570 seconds
Attack done (500 iterations) in 17.1080 seconds
^[[AAttack done (500 iterations) in 82.3550 seconds
Attack done (500 iterations) in 111.1049 seconds
Attack done (500 iterations) in 1.6779 seconds
Attack done (500 iterations) in 44.8342 seconds
Attack done (500 iterations) in 101.1979 seconds
Attack done (500 iterations) in 45.9162 seconds
Attack done (500 iterations) in 8.1783 seconds
Attack done (500 iterations) in 30.5023 seconds
Attack done (500 iterations) in 40.2973 seconds
Attack done (500 iterations) in 132.6416 seconds
Attack done (500 iterations) in 24.5404 seconds
Attack done (500 iterations) in 18.0608 seconds
Attack done (500 iterations) in 128.2360 seconds
Attack done (500 iterations) in 84.8774 seconds
Attack done (500 iterations) in 22.1785 seconds
Attack done (500 iterations) in 59.7239 seconds
Attack done (500 iterations) in 115.0997 seconds
Attack done (500 iterations) in 59.9550 seconds
Running attack: stop --> down
2017-10-26 22:42:57.770300: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 22:42:58.055799: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 11.07GiB
2017-10-26 22:42:58.306265: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 22:42:58.306925: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 22:42:58.306945: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 22:42:58.306950: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 22:42:58.306955: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 22:42:58.306961: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 22:42:58.306965: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 142.6363 seconds
Attack done (500 iterations) in 33.1882 seconds
Attack done (500 iterations) in 5.2092 seconds
Attack done (500 iterations) in 67.0225 seconds
Attack done (500 iterations) in 28.3692 seconds
Attack done (500 iterations) in 32.3948 seconds
Attack done (500 iterations) in 16.6806 seconds
Attack done (500 iterations) in 22.9328 seconds
Attack done (500 iterations) in 28.0641 seconds
Attack done (500 iterations) in 12.4817 seconds
Attack done (500 iterations) in 25.1258 seconds
Attack done (500 iterations) in 7.6407 seconds
Attack done (500 iterations) in 26.3536 seconds
Attack done (500 iterations) in 88.2617 seconds
Attack done (500 iterations) in 90.3930 seconds
Attack done (500 iterations) in 39.5848 seconds
Attack done (500 iterations) in 14.7916 seconds
Attack done (500 iterations) in 27.2379 seconds
Attack done (500 iterations) in 124.5612 seconds
Attack done (500 iterations) in 22.0597 seconds
Running attack: up --> down
2017-10-26 22:57:15.545481: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 22:57:15.802866: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 11.07GiB
2017-10-26 22:57:16.021240: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 22:57:16.021894: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 22:57:16.021913: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 22:57:16.021918: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 22:57:16.021922: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 22:57:16.021932: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 22:57:16.021938: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 21.0099 seconds
Attack done (500 iterations) in 152.6868 seconds
Attack done (500 iterations) in 104.4420 seconds
Attack done (500 iterations) in 3.7650 seconds
Attack done (500 iterations) in 144.7107 seconds
Attack done (500 iterations) in 142.1570 seconds
Attack done (500 iterations) in 8.7764 seconds
Attack done (500 iterations) in 45.3974 seconds
Attack done (500 iterations) in 68.3778 seconds
Attack done (500 iterations) in 33.3649 seconds
Attack done (500 iterations) in 72.8438 seconds
Attack done (500 iterations) in 119.2222 seconds
Attack done (500 iterations) in 46.9398 seconds
Attack done (500 iterations) in 92.9798 seconds
Attack done (500 iterations) in 11.9401 seconds
Attack done (500 iterations) in 107.9348 seconds
Attack done (500 iterations) in 137.2207 seconds
Attack done (500 iterations) in 45.4746 seconds
Attack done (500 iterations) in 55.5396 seconds
Attack done (500 iterations) in 25.9474 seconds
Running attack: yes --> down
2017-10-26 23:21:19.004613: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 23:21:19.263019: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-26 23:21:19.514524: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 23:21:19.515197: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 23:21:19.515218: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 23:21:19.515223: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 23:21:19.515226: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 23:21:19.515234: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 23:21:19.515238: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 22.7856 seconds
Attack done (500 iterations) in 104.6727 seconds
Attack done (500 iterations) in 0.4280 seconds
Attack done (500 iterations) in 141.5980 seconds
Attack done (500 iterations) in 60.9580 seconds
Attack done (500 iterations) in 13.6134 seconds
Attack done (500 iterations) in 38.0896 seconds
Attack done (500 iterations) in 140.5806 seconds
Attack done (500 iterations) in 141.3959 seconds
Attack done (500 iterations) in 55.5611 seconds
Attack done (500 iterations) in 94.9445 seconds
Attack done (500 iterations) in 113.2595 seconds
Attack done (500 iterations) in 26.0266 seconds
Attack done (500 iterations) in 85.7888 seconds
Attack done (500 iterations) in 25.9084 seconds
Attack done (500 iterations) in 75.6535 seconds
Attack done (500 iterations) in 143.2161 seconds
Attack done (500 iterations) in 66.9020 seconds
Attack done (500 iterations) in 11.6767 seconds
Attack done (500 iterations) in 51.9222 seconds
Running attack: down --> go
2017-10-26 23:44:56.556447: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 23:44:56.814187: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-26 23:44:57.060977: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 23:44:57.061632: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 23:44:57.061652: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 23:44:57.061657: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 23:44:57.061659: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 23:44:57.061667: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 23:44:57.061672: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 6.3700 seconds
Attack done (500 iterations) in 4.8182 seconds
Attack done (500 iterations) in 41.1372 seconds
Attack done (500 iterations) in 15.0717 seconds
Attack done (500 iterations) in 142.0483 seconds
Attack done (500 iterations) in 2.3188 seconds
Attack done (500 iterations) in 102.3454 seconds
Attack done (500 iterations) in 12.0595 seconds
Attack done (500 iterations) in 2.2885 seconds
Attack done (500 iterations) in 3.9850 seconds
Attack done (500 iterations) in 1.4721 seconds
Attack done (500 iterations) in 58.5363 seconds
Attack done (500 iterations) in 2.2289 seconds
Attack done (500 iterations) in 18.2779 seconds
Attack done (500 iterations) in 13.2342 seconds
Attack done (500 iterations) in 2.7723 seconds
Attack done (500 iterations) in 4.7821 seconds
Attack done (500 iterations) in 87.9677 seconds
Attack done (500 iterations) in 41.3738 seconds
Attack done (500 iterations) in 1.6938 seconds
Running attack: left --> go
2017-10-26 23:54:23.984545: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-26 23:54:24.245087: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-26 23:54:24.492745: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-26 23:54:24.493397: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-26 23:54:24.493417: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-26 23:54:24.493422: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-26 23:54:24.493426: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-26 23:54:24.493433: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-26 23:54:24.493438: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 43.1196 seconds
Attack done (500 iterations) in 39.3235 seconds
Attack done (500 iterations) in 121.2568 seconds
Attack done (500 iterations) in 129.0257 seconds
Attack done (500 iterations) in 73.8579 seconds
Attack done (500 iterations) in 9.6050 seconds
Attack done (500 iterations) in 12.3974 seconds
Attack done (500 iterations) in 30.9931 seconds
Attack done (500 iterations) in 45.4138 seconds
Attack done (500 iterations) in 149.6114 seconds
Attack done (500 iterations) in 69.5298 seconds
Attack done (500 iterations) in 146.2447 seconds
Attack done (500 iterations) in 149.8379 seconds
Attack done (500 iterations) in 39.9152 seconds
Attack done (500 iterations) in 27.5357 seconds
Attack done (500 iterations) in 11.5517 seconds
Attack done (500 iterations) in 16.1533 seconds
Attack done (500 iterations) in 156.0176 seconds
Attack done (500 iterations) in 89.0116 seconds
Attack done (500 iterations) in 37.1579 seconds
Running attack: no --> go
2017-10-27 00:17:43.952180: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 00:17:44.207239: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 00:17:44.456664: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 00:17:44.457322: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 00:17:44.457342: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 00:17:44.457347: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 00:17:44.457352: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 00:17:44.457360: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 00:17:44.457365: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 15.5182 seconds
Attack done (500 iterations) in 0.2422 seconds
Attack done (500 iterations) in 6.1164 seconds
Attack done (500 iterations) in 0.9955 seconds
Attack done (500 iterations) in 13.0656 seconds
Attack done (500 iterations) in 14.2669 seconds
Attack done (500 iterations) in 0.7722 seconds
Attack done (500 iterations) in 3.5672 seconds
Attack done (500 iterations) in 4.9995 seconds
Attack done (500 iterations) in 1.9984 seconds
Attack done (500 iterations) in 27.3361 seconds
Attack done (500 iterations) in 5.4742 seconds
Attack done (500 iterations) in 0.2315 seconds
Attack done (500 iterations) in 107.3712 seconds
Attack done (500 iterations) in 4.5407 seconds
Attack done (500 iterations) in 1.6593 seconds
Attack done (500 iterations) in 3.7531 seconds
Attack done (500 iterations) in 1.5647 seconds
Attack done (500 iterations) in 1.2946 seconds
Attack done (500 iterations) in 10.5330 seconds
Running attack: off --> go
2017-10-27 00:21:31.788746: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 00:21:32.050430: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 00:21:32.303374: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 00:21:32.304048: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 00:21:32.304069: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 00:21:32.304074: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 00:21:32.304077: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 00:21:32.304085: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 00:21:32.304090: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 7.9323 seconds
Attack done (500 iterations) in 69.2195 seconds
Attack done (500 iterations) in 31.5967 seconds
Attack done (500 iterations) in 1.5865 seconds
Attack done (500 iterations) in 35.6940 seconds
Attack done (500 iterations) in 26.0001 seconds
Attack done (500 iterations) in 48.9257 seconds
Attack done (500 iterations) in 115.0865 seconds
Attack done (500 iterations) in 45.7829 seconds
Attack done (500 iterations) in 145.6835 seconds
Attack done (500 iterations) in 22.8389 seconds
Attack done (500 iterations) in 6.1591 seconds
Attack done (500 iterations) in 25.3286 seconds
Attack done (500 iterations) in 40.4820 seconds
Attack done (500 iterations) in 32.9603 seconds
Attack done (500 iterations) in 14.9118 seconds
Attack done (500 iterations) in 38.8699 seconds
Attack done (500 iterations) in 1.5337 seconds
Attack done (500 iterations) in 77.0691 seconds
Attack done (500 iterations) in 79.5108 seconds
Running attack: on --> go
2017-10-27 00:36:01.542766: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 00:36:01.790845: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 00:36:02.038872: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 00:36:02.039531: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 00:36:02.039551: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 00:36:02.039556: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 00:36:02.039559: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 00:36:02.039566: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 00:36:02.039571: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 14.1318 seconds
Attack done (500 iterations) in 28.2024 seconds
Attack done (500 iterations) in 91.9487 seconds
Attack done (500 iterations) in 125.5210 seconds
Attack done (500 iterations) in 3.7003 seconds
Attack done (500 iterations) in 83.8904 seconds
Attack done (500 iterations) in 142.4914 seconds
Attack done (500 iterations) in 4.3942 seconds
Attack done (500 iterations) in 128.1913 seconds
Attack done (500 iterations) in 57.1212 seconds
Attack done (500 iterations) in 153.2654 seconds
Attack done (500 iterations) in 7.2292 seconds
Attack done (500 iterations) in 19.8411 seconds
Attack done (500 iterations) in 140.5946 seconds
Attack done (500 iterations) in 146.6334 seconds
Attack done (500 iterations) in 95.8393 seconds
Attack done (500 iterations) in 19.9194 seconds
Attack done (500 iterations) in 19.2653 seconds
Attack done (500 iterations) in 31.4515 seconds
Attack done (500 iterations) in 51.3485 seconds
Running attack: right --> go
2017-10-27 00:58:48.946216: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 00:58:49.204215: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 00:58:49.451813: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 00:58:49.452471: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 00:58:49.452491: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 00:58:49.452496: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 00:58:49.452501: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 00:58:49.452507: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 00:58:49.452512: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 107.0890 seconds
Attack done (500 iterations) in 13.1097 seconds
Attack done (500 iterations) in 143.8200 seconds
Attack done (500 iterations) in 55.2034 seconds
Attack done (500 iterations) in 3.0232 seconds
Attack done (500 iterations) in 46.4632 seconds
Attack done (500 iterations) in 63.7542 seconds
Attack done (500 iterations) in 48.1166 seconds
Attack done (500 iterations) in 15.9506 seconds
Attack done (500 iterations) in 4.1087 seconds
Attack done (500 iterations) in 37.8803 seconds
Attack done (500 iterations) in 103.4466 seconds
Attack done (500 iterations) in 20.2329 seconds
Attack done (500 iterations) in 20.0738 seconds
Attack done (500 iterations) in 141.8863 seconds
Attack done (500 iterations) in 45.2509 seconds
Attack done (500 iterations) in 100.8771 seconds
Attack done (500 iterations) in 103.2023 seconds
Attack done (500 iterations) in 132.3928 seconds
Attack done (500 iterations) in 16.9719 seconds
Running attack: stop --> go
2017-10-27 01:19:14.216213: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 01:19:14.443527: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 01:19:14.669599: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 01:19:14.670274: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 01:19:14.670298: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 01:19:14.670306: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 01:19:14.670310: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 01:19:14.670319: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 01:19:14.670326: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 147.7448 seconds
Attack done (500 iterations) in 32.6029 seconds
Attack done (500 iterations) in 9.9600 seconds
Attack done (500 iterations) in 30.9625 seconds
Attack done (500 iterations) in 15.2826 seconds
Attack done (500 iterations) in 33.3585 seconds
Attack done (500 iterations) in 0.9337 seconds
Attack done (500 iterations) in 21.2703 seconds
Attack done (500 iterations) in 71.6814 seconds
Attack done (500 iterations) in 3.5273 seconds
Attack done (500 iterations) in 14.6250 seconds
Attack done (500 iterations) in 6.8132 seconds
Attack done (500 iterations) in 33.7229 seconds
Attack done (500 iterations) in 95.4753 seconds
Attack done (500 iterations) in 38.6951 seconds
Attack done (500 iterations) in 55.4762 seconds
Attack done (500 iterations) in 3.4655 seconds
Attack done (500 iterations) in 47.4560 seconds
Attack done (500 iterations) in 96.3297 seconds
Attack done (500 iterations) in 23.3100 seconds
Running attack: up --> go
2017-10-27 01:32:19.530708: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 01:32:19.807812: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 01:32:20.057628: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 01:32:20.058332: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 01:32:20.058360: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 01:32:20.058367: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 01:32:20.058372: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 01:32:20.058382: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 01:32:20.058388: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 2.1579 seconds
Attack done (500 iterations) in 145.9147 seconds
Attack done (500 iterations) in 24.0080 seconds
Attack done (500 iterations) in 7.3919 seconds
Attack done (500 iterations) in 72.6559 seconds
Attack done (500 iterations) in 33.7183 seconds
Attack done (500 iterations) in 1.0749 seconds
Attack done (500 iterations) in 51.1608 seconds
Attack done (500 iterations) in 57.4460 seconds
Attack done (500 iterations) in 17.7215 seconds
Attack done (500 iterations) in 10.4715 seconds
Attack done (500 iterations) in 25.1300 seconds
Attack done (500 iterations) in 3.6404 seconds
Attack done (500 iterations) in 39.5573 seconds
Attack done (500 iterations) in 2.9960 seconds
Attack done (500 iterations) in 47.6390 seconds
Attack done (500 iterations) in 3.2534 seconds
Attack done (500 iterations) in 4.1710 seconds
Attack done (500 iterations) in 7.1255 seconds
Attack done (500 iterations) in 23.3236 seconds
Running attack: yes --> go
2017-10-27 01:42:02.684454: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 01:42:02.964665: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 01:42:03.225508: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 01:42:03.226224: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 01:42:03.226249: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 01:42:03.226255: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 01:42:03.226259: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 01:42:03.226267: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 01:42:03.226273: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 132.2683 seconds
Attack done (500 iterations) in 96.5359 seconds
Attack done (500 iterations) in 64.0586 seconds
Attack done (500 iterations) in 83.4121 seconds
Attack done (500 iterations) in 59.9480 seconds
Attack done (500 iterations) in 4.4465 seconds
Attack done (500 iterations) in 30.0102 seconds
Attack done (500 iterations) in 142.2167 seconds
Attack done (500 iterations) in 117.6148 seconds
Attack done (500 iterations) in 55.4599 seconds
Attack done (500 iterations) in 76.4847 seconds
Attack done (500 iterations) in 30.6262 seconds
Attack done (500 iterations) in 61.7659 seconds
Attack done (500 iterations) in 108.5204 seconds
Attack done (500 iterations) in 42.9351 seconds
Attack done (500 iterations) in 67.4590 seconds
Attack done (500 iterations) in 57.3712 seconds
Attack done (500 iterations) in 122.7133 seconds
Attack done (500 iterations) in 4.7110 seconds
Attack done (500 iterations) in 41.7364 seconds
Running attack: down --> left
2017-10-27 02:05:25.569232: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 02:05:25.817550: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 02:05:26.064053: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 02:05:26.064718: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 02:05:26.064744: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 02:05:26.064752: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 02:05:26.064757: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 02:05:26.064766: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 02:05:26.064774: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 150.9233 seconds
Attack done (500 iterations) in 63.2468 seconds
Attack done (500 iterations) in 143.8464 seconds
Attack done (500 iterations) in 150.5185 seconds
Attack done (500 iterations) in 149.4570 seconds
Attack done (500 iterations) in 16.5760 seconds
Attack done (500 iterations) in 147.3039 seconds
Attack done (500 iterations) in 52.6083 seconds
Attack done (500 iterations) in 87.9962 seconds
Attack done (500 iterations) in 44.1981 seconds
Attack done (500 iterations) in 136.4359 seconds
Attack done (500 iterations) in 63.2872 seconds
Attack done (500 iterations) in 7.0741 seconds
Attack done (500 iterations) in 25.5209 seconds
Attack done (500 iterations) in 46.0869 seconds
Attack done (500 iterations) in 146.4649 seconds
Attack done (500 iterations) in 121.1806 seconds
Attack done (500 iterations) in 0.2581 seconds
Attack done (500 iterations) in 5.0885 seconds
Attack done (500 iterations) in 14.9027 seconds
Running attack: go --> left
2017-10-27 02:31:41.238002: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 02:31:41.494815: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 02:31:41.744352: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 02:31:41.745023: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 02:31:41.745043: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 02:31:41.745047: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 02:31:41.745050: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 02:31:41.745058: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 02:31:41.745063: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 6.6357 seconds
Attack done (500 iterations) in 147.5159 seconds
Attack done (500 iterations) in 96.1629 seconds
Attack done (500 iterations) in 25.9300 seconds
Attack done (500 iterations) in 148.3261 seconds
Attack done (500 iterations) in 38.5867 seconds
Attack done (500 iterations) in 104.8021 seconds
Attack done (500 iterations) in 93.3055 seconds
Attack done (500 iterations) in 44.7566 seconds
Attack done (500 iterations) in 6.0622 seconds
Attack done (500 iterations) in 17.4973 seconds
Attack done (500 iterations) in 8.4585 seconds
Attack done (500 iterations) in 33.3551 seconds
Attack done (500 iterations) in 6.2553 seconds
Attack done (500 iterations) in 140.9516 seconds
Attack done (500 iterations) in 111.1198 seconds
Attack done (500 iterations) in 1.5739 seconds
Attack done (500 iterations) in 7.9270 seconds
Attack done (500 iterations) in 55.7398 seconds
Attack done (500 iterations) in 52.1438 seconds
Running attack: no --> left
2017-10-27 02:50:50.996528: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 02:50:51.261789: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 02:50:51.512152: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 02:50:51.512803: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 02:50:51.512823: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 02:50:51.512828: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 02:50:51.512830: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 02:50:51.512837: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 02:50:51.512842: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 27.7700 seconds
Attack done (500 iterations) in 141.7181 seconds
Attack done (500 iterations) in 3.2689 seconds
Attack done (500 iterations) in 14.8923 seconds
Attack done (500 iterations) in 17.7984 seconds
Attack done (500 iterations) in 67.8990 seconds
Attack done (500 iterations) in 26.7585 seconds
Attack done (500 iterations) in 15.1333 seconds
Attack done (500 iterations) in 2.0239 seconds
Attack done (500 iterations) in 18.7653 seconds
Attack done (500 iterations) in 23.9754 seconds
Attack done (500 iterations) in 146.4471 seconds
Attack done (500 iterations) in 3.1881 seconds
Attack done (500 iterations) in 83.2783 seconds
Attack done (500 iterations) in 6.0950 seconds
Attack done (500 iterations) in 12.0518 seconds
Attack done (500 iterations) in 37.4007 seconds
Attack done (500 iterations) in 11.6148 seconds
Attack done (500 iterations) in 21.1086 seconds
Attack done (500 iterations) in 11.7136 seconds
Running attack: off --> left
2017-10-27 03:02:26.559247: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 03:02:26.812408: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 03:02:27.064079: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 03:02:27.064741: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 03:02:27.064763: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 03:02:27.064768: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 03:02:27.064772: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 03:02:27.064780: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 03:02:27.064786: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 58.4304 seconds
Attack done (500 iterations) in 40.5205 seconds
Attack done (500 iterations) in 90.5347 seconds
Attack done (500 iterations) in 122.2655 seconds
Attack done (500 iterations) in 71.4611 seconds
Attack done (500 iterations) in 101.7932 seconds
Attack done (500 iterations) in 54.3718 seconds
Attack done (500 iterations) in 44.4985 seconds
Attack done (500 iterations) in 28.5206 seconds
Attack done (500 iterations) in 125.4118 seconds
Attack done (500 iterations) in 8.8295 seconds
Attack done (500 iterations) in 2.5677 seconds
Attack done (500 iterations) in 4.8627 seconds
Attack done (500 iterations) in 94.3955 seconds
Attack done (500 iterations) in 29.6911 seconds
Attack done (500 iterations) in 144.1469 seconds
Attack done (500 iterations) in 60.1331 seconds
Attack done (500 iterations) in 8.7518 seconds
Attack done (500 iterations) in 38.1831 seconds
Attack done (500 iterations) in 139.8536 seconds
Running attack: on --> left
2017-10-27 03:23:38.381970: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 03:23:38.651516: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 03:23:38.923326: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 03:23:38.924059: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 03:23:38.924085: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 03:23:38.924091: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 03:23:38.924095: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 03:23:38.924103: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 03:23:38.924108: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 12.7389 seconds
Attack done (500 iterations) in 58.2671 seconds
Attack done (500 iterations) in 63.8071 seconds
Attack done (500 iterations) in 77.7928 seconds
Attack done (500 iterations) in 1.3947 seconds
Attack done (500 iterations) in 143.7328 seconds
Attack done (500 iterations) in 150.0125 seconds
Attack done (500 iterations) in 6.7044 seconds
Attack done (500 iterations) in 147.3384 seconds
Attack done (500 iterations) in 55.1741 seconds
Attack done (500 iterations) in 140.8260 seconds
Attack done (500 iterations) in 63.8825 seconds
Attack done (500 iterations) in 29.4988 seconds
Attack done (500 iterations) in 127.8428 seconds
Attack done (500 iterations) in 144.5503 seconds
Attack done (500 iterations) in 108.4069 seconds
Attack done (500 iterations) in 95.6995 seconds
Attack done (500 iterations) in 4.3538 seconds
Attack done (500 iterations) in 30.0901 seconds
Attack done (500 iterations) in 48.9157 seconds
Running attack: right --> left
2017-10-27 03:48:52.076857: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 03:48:52.339370: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 03:48:52.591568: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 03:48:52.592228: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 03:48:52.592248: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 03:48:52.592254: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 03:48:52.592258: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 03:48:52.592265: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 03:48:52.592271: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 60.0629 seconds
Attack done (500 iterations) in 2.1020 seconds
Attack done (500 iterations) in 69.0856 seconds
Attack done (500 iterations) in 4.0033 seconds
Attack done (500 iterations) in 2.2775 seconds
Attack done (500 iterations) in 27.6643 seconds
Attack done (500 iterations) in 29.0688 seconds
Attack done (500 iterations) in 10.2222 seconds
Attack done (500 iterations) in 9.3587 seconds
Attack done (500 iterations) in 11.4346 seconds
Attack done (500 iterations) in 26.4220 seconds
Attack done (500 iterations) in 34.8860 seconds
Attack done (500 iterations) in 1.7292 seconds
Attack done (500 iterations) in 3.2445 seconds
Attack done (500 iterations) in 143.3448 seconds
Attack done (500 iterations) in 21.7173 seconds
Attack done (500 iterations) in 15.1987 seconds
Attack done (500 iterations) in 12.7297 seconds
Attack done (500 iterations) in 7.5748 seconds
Attack done (500 iterations) in 35.5754 seconds
Running attack: stop --> left
2017-10-27 03:57:42.253510: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 03:57:42.509652: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 03:57:42.759268: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 03:57:42.759931: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 03:57:42.759951: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 03:57:42.759957: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 03:57:42.759960: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 03:57:42.759967: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 03:57:42.759972: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 66.6907 seconds
Attack done (500 iterations) in 19.6206 seconds
Attack done (500 iterations) in 4.0369 seconds
Attack done (500 iterations) in 24.6870 seconds
Attack done (500 iterations) in 5.9831 seconds
Attack done (500 iterations) in 8.1583 seconds
Attack done (500 iterations) in 3.1553 seconds
Attack done (500 iterations) in 6.9379 seconds
Attack done (500 iterations) in 52.4070 seconds
Attack done (500 iterations) in 142.4070 seconds
Attack done (500 iterations) in 14.8066 seconds
Attack done (500 iterations) in 8.4760 seconds
Attack done (500 iterations) in 5.1401 seconds
Attack done (500 iterations) in 30.6774 seconds
Attack done (500 iterations) in 132.3111 seconds
Attack done (500 iterations) in 33.7201 seconds
Attack done (500 iterations) in 91.9216 seconds
Attack done (500 iterations) in 98.4644 seconds
Attack done (500 iterations) in 29.2372 seconds
Attack done (500 iterations) in 12.4705 seconds
Running attack: up --> left
2017-10-27 04:10:56.132095: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 04:10:56.392540: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 04:10:56.639651: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 04:10:56.640322: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 04:10:56.640341: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 04:10:56.640347: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 04:10:56.640350: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 04:10:56.640356: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 04:10:56.640361: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 12.4484 seconds
Attack done (500 iterations) in 2.9627 seconds
Attack done (500 iterations) in 18.3470 seconds
Attack done (500 iterations) in 1.7783 seconds
Attack done (500 iterations) in 23.7982 seconds
Attack done (500 iterations) in 66.4465 seconds
Attack done (500 iterations) in 15.6623 seconds
Attack done (500 iterations) in 51.9362 seconds
Attack done (500 iterations) in 37.5236 seconds
Attack done (500 iterations) in 5.4357 seconds
Attack done (500 iterations) in 38.0248 seconds
Attack done (500 iterations) in 58.6278 seconds
Attack done (500 iterations) in 30.7442 seconds
Attack done (500 iterations) in 66.8056 seconds
Attack done (500 iterations) in 11.7328 seconds
Attack done (500 iterations) in 18.1108 seconds
Attack done (500 iterations) in 13.4062 seconds
Attack done (500 iterations) in 10.7651 seconds
Attack done (500 iterations) in 9.0382 seconds
Attack done (500 iterations) in 5.1968 seconds
Running attack: yes --> left
2017-10-27 04:19:17.547226: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 04:19:17.803477: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 04:19:18.050886: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 04:19:18.051553: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 04:19:18.051573: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 04:19:18.051578: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 04:19:18.051581: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 04:19:18.051588: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 04:19:18.051592: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 18.7952 seconds
Attack done (500 iterations) in 34.3902 seconds
Attack done (500 iterations) in 114.6318 seconds
Attack done (500 iterations) in 13.3443 seconds
Attack done (500 iterations) in 5.2589 seconds
Attack done (500 iterations) in 2.0753 seconds
Attack done (500 iterations) in 9.9824 seconds
Attack done (500 iterations) in 8.2662 seconds
Attack done (500 iterations) in 20.5553 seconds
Attack done (500 iterations) in 20.1276 seconds
Attack done (500 iterations) in 24.9730 seconds
Attack done (500 iterations) in 1.5298 seconds
Attack done (500 iterations) in 15.6700 seconds
Attack done (500 iterations) in 23.5283 seconds
Attack done (500 iterations) in 13.3786 seconds
Attack done (500 iterations) in 4.8698 seconds
Attack done (500 iterations) in 7.6980 seconds
Attack done (500 iterations) in 44.4621 seconds
Attack done (500 iterations) in 2.2232 seconds
Attack done (500 iterations) in 11.7662 seconds
Running attack: down --> no
2017-10-27 04:25:57.654662: I tensorflow/core/platform/cpu_feature_guard.cc:137] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
2017-10-27 04:25:57.910284: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 0 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:06:00.0
totalMemory: 11.90GiB freeMemory: 10.98GiB
2017-10-27 04:25:58.160509: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1030] Found device 1 with properties:
name: TITAN X (Pascal) major: 6 minor: 1 memoryClockRate(GHz): 1.531
pciBusID: 0000:0a:00.0
totalMemory: 11.90GiB freeMemory: 11.75GiB
2017-10-27 04:25:58.161161: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1045] Device peer to peer matrix
2017-10-27 04:25:58.161180: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1051] DMA: 0 1
2017-10-27 04:25:58.161185: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 0: Y Y
2017-10-27 04:25:58.161188: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1061] 1: Y Y
2017-10-27 04:25:58.161196: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: TITAN X (Pascal), pci bus id: 0000:06:00.0, compute capability: 6.1)
2017-10-27 04:25:58.161201: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1120] Creating TensorFlow device (/device:GPU:1) -> (device: 1, name: TITAN X (Pascal), pci bus id: 0000:0a:00.0, compute capability: 6.1)
Attack done (500 iterations) in 44.8576 seconds
Attack done (500 iterations) in 27.3300 seconds
Attack done (500 iterations) in 37.9605 seconds
Attack done (500 iterations) in 57.3414 seconds
Attack done (500 iterations) in 72.8665 seconds
Attack done (500 iterations) in 8.4792 seconds
Attack done (500 iterations) in 95.3389 seconds
Attack done (500 iterations) in 5.0071 seconds
Attack done (500 iterations) in 47.8150 seconds
Attack done (500 iterations) in 5.3275 seconds
Attack done (500 iterations) in 64.4713 seconds
Attack done (500 iterations) in 49.1333 seconds