forked from seri-win21-circuits/clip-enrichment-circuits
-
Notifications
You must be signed in to change notification settings - Fork 0
/
relu_conv_bottleneck_4_0.txt
2048 lines (2048 loc) · 164 KB
/
relu_conv_bottleneck_4_0.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
Unit 0 -> (tensor(0.6929, device='cuda:0', dtype=torch.float16), 1.2061767578125)
Unit 1 -> (tensor(0.4941, device='cuda:0', dtype=torch.float16), 0.8013916015625)
Unit 2 -> (tensor(0.3711, device='cuda:0', dtype=torch.float16), 0.0810546875)
Unit 3 -> (tensor(0.6001, device='cuda:0', dtype=torch.float16), 0.2919921875)
Unit 4 -> (tensor(0.5513, device='cuda:0', dtype=torch.float16), 1.0550537109375)
Unit 5 -> (tensor(0.7866, device='cuda:0', dtype=torch.float16), 1.67919921875)
Unit 6 -> (tensor(0.8389, device='cuda:0', dtype=torch.float16), 0.21337890625)
Unit 7 -> (tensor(0.6011, device='cuda:0', dtype=torch.float16), 0.56884765625)
Unit 8 -> (tensor(0.7764, device='cuda:0', dtype=torch.float16), 0.06494140625)
Unit 9 -> (tensor(0.3809, device='cuda:0', dtype=torch.float16), 1.474609375)
Unit 10 -> (tensor(0.9692, device='cuda:0', dtype=torch.float16), 1.78759765625)
Unit 11 -> (tensor(0.7456, device='cuda:0', dtype=torch.float16), 0.57470703125)
Unit 12 -> (tensor(0.5054, device='cuda:0', dtype=torch.float16), 0.13720703125)
Unit 13 -> (tensor(0.6313, device='cuda:0', dtype=torch.float16), 0.865234375)
Unit 14 -> (tensor(0.9868, device='cuda:0', dtype=torch.float16), 0.8477783203125)
Unit 15 -> (tensor(0.6021, device='cuda:0', dtype=torch.float16), 0.93212890625)
Unit 16 -> (tensor(0.4751, device='cuda:0', dtype=torch.float16), 0.107421875)
Unit 17 -> (tensor(0.6323, device='cuda:0', dtype=torch.float16), 0.0517578125)
Unit 18 -> (tensor(0.8486, device='cuda:0', dtype=torch.float16), 0.0966796875)
Unit 19 -> (tensor(0.9434, device='cuda:0', dtype=torch.float16), 0.4384765625)
Unit 20 -> (tensor(0.3936, device='cuda:0', dtype=torch.float16), 1.75537109375)
Unit 21 -> (tensor(0.6328, device='cuda:0', dtype=torch.float16), 1.28369140625)
Unit 22 -> (tensor(0.6733, device='cuda:0', dtype=torch.float16), 0.67529296875)
Unit 23 -> (tensor(0.8574, device='cuda:0', dtype=torch.float16), 1.85009765625)
Unit 24 -> (tensor(0.5195, device='cuda:0', dtype=torch.float16), 0.29736328125)
Unit 25 -> (tensor(0.4907, device='cuda:0', dtype=torch.float16), 1.53955078125)
Unit 26 -> (tensor(0.5649, device='cuda:0', dtype=torch.float16), 0.09619140625)
Unit 27 -> (tensor(0.4995, device='cuda:0', dtype=torch.float16), 1.673828125)
Unit 28 -> (tensor(0.7344, device='cuda:0', dtype=torch.float16), 1.35693359375)
Unit 29 -> (tensor(0.6650, device='cuda:0', dtype=torch.float16), 0.962188720703125)
Unit 30 -> (tensor(0.7305, device='cuda:0', dtype=torch.float16), 0.7841796875)
Unit 31 -> (tensor(0.8662, device='cuda:0', dtype=torch.float16), 0.06494140625)
Unit 32 -> (tensor(0.9238, device='cuda:0', dtype=torch.float16), 0.29638671875)
Unit 33 -> (tensor(0.9619, device='cuda:0', dtype=torch.float16), 0.960205078125)
Unit 34 -> (tensor(0.5659, device='cuda:0', dtype=torch.float16), 0.119140625)
Unit 35 -> (tensor(0.4636, device='cuda:0', dtype=torch.float16), 1.8828125)
Unit 36 -> (tensor(0.4800, device='cuda:0', dtype=torch.float16), 1.7626953125)
Unit 37 -> (tensor(0.8320, device='cuda:0', dtype=torch.float16), 0.7794189453125)
Unit 38 -> (tensor(0.5693, device='cuda:0', dtype=torch.float16), 1.76416015625)
Unit 39 -> (tensor(0.3433, device='cuda:0', dtype=torch.float16), 0.64697265625)
Unit 40 -> (tensor(0.7759, device='cuda:0', dtype=torch.float16), 0.03125)
Unit 41 -> (tensor(0.8018, device='cuda:0', dtype=torch.float16), 1.68896484375)
Unit 42 -> (tensor(0.5698, device='cuda:0', dtype=torch.float16), 1.204833984375)
Unit 43 -> (tensor(0.6836, device='cuda:0', dtype=torch.float16), 0.91229248046875)
Unit 44 -> (tensor(0.4688, device='cuda:0', dtype=torch.float16), 0.8658447265625)
Unit 45 -> (tensor(0.7461, device='cuda:0', dtype=torch.float16), 1.5146484375)
Unit 46 -> (tensor(0.6143, device='cuda:0', dtype=torch.float16), 0.0712890625)
Unit 47 -> (tensor(0.7573, device='cuda:0', dtype=torch.float16), 0.99971604347229)
Unit 48 -> (tensor(0.8989, device='cuda:0', dtype=torch.float16), 0.10546875)
Unit 49 -> (tensor(0.9897, device='cuda:0', dtype=torch.float16), 0.48193359375)
Unit 50 -> (tensor(0.5688, device='cuda:0', dtype=torch.float16), 1.85498046875)
Unit 51 -> (tensor(0.5400, device='cuda:0', dtype=torch.float16), 0.2041015625)
Unit 52 -> (tensor(0.6123, device='cuda:0', dtype=torch.float16), 0.03271484375)
Unit 53 -> (tensor(0.7896, device='cuda:0', dtype=torch.float16), 0.201171875)
Unit 54 -> (tensor(0.8848, device='cuda:0', dtype=torch.float16), 1.70361328125)
Unit 55 -> (tensor(0.8926, device='cuda:0', dtype=torch.float16), 1.8681640625)
Unit 56 -> (tensor(0.6094, device='cuda:0', dtype=torch.float16), 1.93408203125)
Unit 57 -> (tensor(0.7139, device='cuda:0', dtype=torch.float16), 0.95880126953125)
Unit 58 -> (tensor(0.6562, device='cuda:0', dtype=torch.float16), 0.13330078125)
Unit 59 -> (tensor(0.8726, device='cuda:0', dtype=torch.float16), 1.921875)
Unit 60 -> (tensor(0.9478, device='cuda:0', dtype=torch.float16), 0.18994140625)
Unit 61 -> (tensor(0.8062, device='cuda:0', dtype=torch.float16), 1.0038070678710938)
Unit 62 -> (tensor(0.8892, device='cuda:0', dtype=torch.float16), 1.9365234375)
Unit 63 -> (tensor(0.5791, device='cuda:0', dtype=torch.float16), 1.939453125)
Unit 64 -> (tensor(0.6616, device='cuda:0', dtype=torch.float16), 0.8408203125)
Unit 65 -> (tensor(0.6475, device='cuda:0', dtype=torch.float16), 1.34228515625)
Unit 66 -> (tensor(0.5073, device='cuda:0', dtype=torch.float16), 0.3134765625)
Unit 67 -> (tensor(0.4197, device='cuda:0', dtype=torch.float16), 0.86962890625)
Unit 68 -> (tensor(0.4180, device='cuda:0', dtype=torch.float16), 1.65185546875)
Unit 69 -> (tensor(0.6758, device='cuda:0', dtype=torch.float16), 0.068359375)
Unit 70 -> (tensor(0.3298, device='cuda:0', dtype=torch.float16), 1.625)
Unit 71 -> (tensor(0.9458, device='cuda:0', dtype=torch.float16), 1.478759765625)
Unit 72 -> (tensor(0.8105, device='cuda:0', dtype=torch.float16), 1.86767578125)
Unit 73 -> (tensor(0.8345, device='cuda:0', dtype=torch.float16), 1.80322265625)
Unit 74 -> (tensor(0.9790, device='cuda:0', dtype=torch.float16), 0.9254150390625)
Unit 75 -> (tensor(0.8091, device='cuda:0', dtype=torch.float16), 0.20849609375)
Unit 76 -> (tensor(0.5972, device='cuda:0', dtype=torch.float16), 1.634765625)
Unit 77 -> (tensor(0.5132, device='cuda:0', dtype=torch.float16), 0.8267822265625)
Unit 78 -> (tensor(0.9858, device='cuda:0', dtype=torch.float16), 0.45849609375)
Unit 79 -> (tensor(0.5610, device='cuda:0', dtype=torch.float16), 1.80859375)
Unit 80 -> (tensor(0.6396, device='cuda:0', dtype=torch.float16), 1.52294921875)
Unit 81 -> (tensor(0.6465, device='cuda:0', dtype=torch.float16), 0.05615234375)
Unit 82 -> (tensor(0.5327, device='cuda:0', dtype=torch.float16), 0.13427734375)
Unit 83 -> (tensor(0.9761, device='cuda:0', dtype=torch.float16), 1.042083740234375)
Unit 84 -> (tensor(0.8267, device='cuda:0', dtype=torch.float16), 0.39599609375)
Unit 85 -> (tensor(0.9307, device='cuda:0', dtype=torch.float16), 1.63818359375)
Unit 86 -> (tensor(0.4141, device='cuda:0', dtype=torch.float16), 0.47314453125)
Unit 87 -> (tensor(0.7441, device='cuda:0', dtype=torch.float16), 1.90673828125)
Unit 88 -> (tensor(0.5264, device='cuda:0', dtype=torch.float16), 0.87725830078125)
Unit 89 -> (tensor(0.9839, device='cuda:0', dtype=torch.float16), 0.59814453125)
Unit 90 -> (tensor(0.9038, device='cuda:0', dtype=torch.float16), 1.327392578125)
Unit 91 -> (tensor(0.8950, device='cuda:0', dtype=torch.float16), 0.618896484375)
Unit 92 -> (tensor(0.7100, device='cuda:0', dtype=torch.float16), 0.48828125)
Unit 93 -> (tensor(0.8232, device='cuda:0', dtype=torch.float16), 0.03857421875)
Unit 94 -> (tensor(0.4829, device='cuda:0', dtype=torch.float16), 0.3017578125)
Unit 95 -> (tensor(0.3872, device='cuda:0', dtype=torch.float16), 0.072265625)
Unit 96 -> (tensor(0.5190, device='cuda:0', dtype=torch.float16), 0.2333984375)
Unit 97 -> (tensor(0.7822, device='cuda:0', dtype=torch.float16), 0.06591796875)
Unit 98 -> (tensor(0.9141, device='cuda:0', dtype=torch.float16), 1.2685546875)
Unit 99 -> (tensor(0.5898, device='cuda:0', dtype=torch.float16), 0.42041015625)
Unit 100 -> (tensor(0.6045, device='cuda:0', dtype=torch.float16), 1.88232421875)
Unit 101 -> (tensor(0.6543, device='cuda:0', dtype=torch.float16), 0.50244140625)
Unit 102 -> (tensor(0.4541, device='cuda:0', dtype=torch.float16), 0.8394775390625)
Unit 103 -> (tensor(0.7173, device='cuda:0', dtype=torch.float16), 1.9599609375)
Unit 104 -> (tensor(0.7866, device='cuda:0', dtype=torch.float16), 1.054779052734375)
Unit 105 -> (tensor(0.7554, device='cuda:0', dtype=torch.float16), 0.955078125)
Unit 106 -> (tensor(0.7593, device='cuda:0', dtype=torch.float16), 0.12060546875)
Unit 107 -> (tensor(0.8335, device='cuda:0', dtype=torch.float16), 1.046234130859375)
Unit 108 -> (tensor(0.6782, device='cuda:0', dtype=torch.float16), 0.49609375)
Unit 109 -> (tensor(0.6143, device='cuda:0', dtype=torch.float16), 1.09808349609375)
Unit 110 -> (tensor(0.6133, device='cuda:0', dtype=torch.float16), 0.10302734375)
Unit 111 -> (tensor(0.4800, device='cuda:0', dtype=torch.float16), 0.04541015625)
Unit 112 -> (tensor(0.6279, device='cuda:0', dtype=torch.float16), 0.107421875)
Unit 113 -> (tensor(0.6812, device='cuda:0', dtype=torch.float16), 0.8465576171875)
Unit 114 -> (tensor(0.3669, device='cuda:0', dtype=torch.float16), 0.0390625)
Unit 115 -> (tensor(0.7559, device='cuda:0', dtype=torch.float16), 0.67626953125)
Unit 116 -> (tensor(0.9683, device='cuda:0', dtype=torch.float16), 0.68017578125)
Unit 117 -> (tensor(0.6450, device='cuda:0', dtype=torch.float16), 1.9296875)
Unit 118 -> (tensor(0.5796, device='cuda:0', dtype=torch.float16), 0.19091796875)
Unit 119 -> (tensor(0.6792, device='cuda:0', dtype=torch.float16), 0.10546875)
Unit 120 -> (tensor(0.8926, device='cuda:0', dtype=torch.float16), 0.13720703125)
Unit 121 -> (tensor(0.9795, device='cuda:0', dtype=torch.float16), 1.2054443359375)
Unit 122 -> (tensor(0.7002, device='cuda:0', dtype=torch.float16), 1.9072265625)
Unit 123 -> (tensor(0.5962, device='cuda:0', dtype=torch.float16), 0.04345703125)
Unit 124 -> (tensor(0.8135, device='cuda:0', dtype=torch.float16), 1.343017578125)
Unit 125 -> (tensor(0.6387, device='cuda:0', dtype=torch.float16), 0.9877243041992188)
Unit 126 -> (tensor(0.8203, device='cuda:0', dtype=torch.float16), 0.044921875)
Unit 127 -> (tensor(0.9585, device='cuda:0', dtype=torch.float16), 0.964569091796875)
Unit 128 -> (tensor(0.9795, device='cuda:0', dtype=torch.float16), 1.57177734375)
Unit 129 -> (tensor(0.7915, device='cuda:0', dtype=torch.float16), 0.30078125)
Unit 130 -> (tensor(0.6514, device='cuda:0', dtype=torch.float16), 0.07421875)
Unit 131 -> (tensor(0.4663, device='cuda:0', dtype=torch.float16), 1.927734375)
Unit 132 -> (tensor(0.8354, device='cuda:0', dtype=torch.float16), 0.21923828125)
Unit 133 -> (tensor(0.6479, device='cuda:0', dtype=torch.float16), 0.1552734375)
Unit 134 -> (tensor(0.8091, device='cuda:0', dtype=torch.float16), 0.13037109375)
Unit 135 -> (tensor(0.7524, device='cuda:0', dtype=torch.float16), 1.046539306640625)
Unit 136 -> (tensor(0.7188, device='cuda:0', dtype=torch.float16), 1.884765625)
Unit 137 -> (tensor(0.3809, device='cuda:0', dtype=torch.float16), 1.84765625)
Unit 138 -> (tensor(0.7598, device='cuda:0', dtype=torch.float16), 1.7705078125)
Unit 139 -> (tensor(0.5205, device='cuda:0', dtype=torch.float16), 1.04046630859375)
Unit 140 -> (tensor(0.7329, device='cuda:0', dtype=torch.float16), 1.98828125)
Unit 141 -> (tensor(0.7568, device='cuda:0', dtype=torch.float16), 1.191650390625)
Unit 142 -> (tensor(0.9639, device='cuda:0', dtype=torch.float16), 0.603759765625)
Unit 143 -> (tensor(0.6196, device='cuda:0', dtype=torch.float16), 0.171875)
Unit 144 -> (tensor(0.8164, device='cuda:0', dtype=torch.float16), 1.85888671875)
Unit 145 -> (tensor(0.8276, device='cuda:0', dtype=torch.float16), 1.6611328125)
Unit 146 -> (tensor(0.7710, device='cuda:0', dtype=torch.float16), 0.220703125)
Unit 147 -> (tensor(0.6069, device='cuda:0', dtype=torch.float16), 0.4765625)
Unit 148 -> (tensor(0.8574, device='cuda:0', dtype=torch.float16), 0.13330078125)
Unit 149 -> (tensor(0.5483, device='cuda:0', dtype=torch.float16), 1.85791015625)
Unit 150 -> (tensor(0.5298, device='cuda:0', dtype=torch.float16), 1.32177734375)
Unit 151 -> (tensor(0.8223, device='cuda:0', dtype=torch.float16), 0.142578125)
Unit 152 -> (tensor(0.8501, device='cuda:0', dtype=torch.float16), 0.068359375)
Unit 153 -> (tensor(0.5576, device='cuda:0', dtype=torch.float16), 0.605712890625)
Unit 154 -> (tensor(0.6479, device='cuda:0', dtype=torch.float16), 1.92236328125)
Unit 155 -> (tensor(0.8872, device='cuda:0', dtype=torch.float16), 0.6416015625)
Unit 156 -> (tensor(0.7725, device='cuda:0', dtype=torch.float16), 0.34619140625)
Unit 157 -> (tensor(0.6270, device='cuda:0', dtype=torch.float16), 0.109375)
Unit 158 -> (tensor(0.5332, device='cuda:0', dtype=torch.float16), 0.04150390625)
Unit 159 -> (tensor(0.9468, device='cuda:0', dtype=torch.float16), 0.162109375)
Unit 160 -> (tensor(0.8149, device='cuda:0', dtype=torch.float16), 1.87255859375)
Unit 161 -> (tensor(0.7593, device='cuda:0', dtype=torch.float16), 0.05078125)
Unit 162 -> (tensor(0.5537, device='cuda:0', dtype=torch.float16), 1.2294921875)
Unit 163 -> (tensor(0.8853, device='cuda:0', dtype=torch.float16), 1.83203125)
Unit 164 -> (tensor(0.7119, device='cuda:0', dtype=torch.float16), 1.8779296875)
Unit 165 -> (tensor(0.4736, device='cuda:0', dtype=torch.float16), 0.65576171875)
Unit 166 -> (tensor(0.7227, device='cuda:0', dtype=torch.float16), 1.8251953125)
Unit 167 -> (tensor(0.6118, device='cuda:0', dtype=torch.float16), 1.96630859375)
Unit 168 -> (tensor(0.8535, device='cuda:0', dtype=torch.float16), 0.2255859375)
Unit 169 -> (tensor(0.7031, device='cuda:0', dtype=torch.float16), 1.7353515625)
Unit 170 -> (tensor(0.8203, device='cuda:0', dtype=torch.float16), 0.06396484375)
Unit 171 -> (tensor(0.5776, device='cuda:0', dtype=torch.float16), 0.577392578125)
Unit 172 -> (tensor(0.5732, device='cuda:0', dtype=torch.float16), 1.93896484375)
Unit 173 -> (tensor(0.7642, device='cuda:0', dtype=torch.float16), 1.35888671875)
Unit 174 -> (tensor(0.5537, device='cuda:0', dtype=torch.float16), 1.8466796875)
Unit 175 -> (tensor(0.6235, device='cuda:0', dtype=torch.float16), 1.424560546875)
Unit 176 -> (tensor(0.6396, device='cuda:0', dtype=torch.float16), 0.554931640625)
Unit 177 -> (tensor(0.8701, device='cuda:0', dtype=torch.float16), 0.22021484375)
Unit 178 -> (tensor(0.8535, device='cuda:0', dtype=torch.float16), 1.252685546875)
Unit 179 -> (tensor(0.6030, device='cuda:0', dtype=torch.float16), 0.96490478515625)
Unit 180 -> (tensor(0.5679, device='cuda:0', dtype=torch.float16), 1.830078125)
Unit 181 -> (tensor(0.6929, device='cuda:0', dtype=torch.float16), 1.91845703125)
Unit 182 -> (tensor(0.8008, device='cuda:0', dtype=torch.float16), 1.576171875)
Unit 183 -> (tensor(0.4468, device='cuda:0', dtype=torch.float16), 0.11669921875)
Unit 184 -> (tensor(0.7720, device='cuda:0', dtype=torch.float16), 0.22021484375)
Unit 185 -> (tensor(0.6763, device='cuda:0', dtype=torch.float16), 1.919921875)
Unit 186 -> (tensor(0.4504, device='cuda:0', dtype=torch.float16), 1.65966796875)
Unit 187 -> (tensor(0.9678, device='cuda:0', dtype=torch.float16), 1.546875)
Unit 188 -> (tensor(0.4492, device='cuda:0', dtype=torch.float16), 1.82421875)
Unit 189 -> (tensor(0.8564, device='cuda:0', dtype=torch.float16), 1.8720703125)
Unit 190 -> (tensor(0.8247, device='cuda:0', dtype=torch.float16), 1.87158203125)
Unit 191 -> (tensor(0.8403, device='cuda:0', dtype=torch.float16), 0.06396484375)
Unit 192 -> (tensor(0.9912, device='cuda:0', dtype=torch.float16), 1.32373046875)
Unit 193 -> (tensor(0.6138, device='cuda:0', dtype=torch.float16), 0.681396484375)
Unit 194 -> (tensor(0.8198, device='cuda:0', dtype=torch.float16), 1.26806640625)
Unit 195 -> (tensor(0.4624, device='cuda:0', dtype=torch.float16), 0.67578125)
Unit 196 -> (tensor(0.4868, device='cuda:0', dtype=torch.float16), 0.3173828125)
Unit 197 -> (tensor(0.8491, device='cuda:0', dtype=torch.float16), 0.11767578125)
Unit 198 -> (tensor(0.6499, device='cuda:0', dtype=torch.float16), 1.6142578125)
Unit 199 -> (tensor(0.6719, device='cuda:0', dtype=torch.float16), 1.2481689453125)
Unit 200 -> (tensor(0.7695, device='cuda:0', dtype=torch.float16), 0.91619873046875)
Unit 201 -> (tensor(0.9722, device='cuda:0', dtype=torch.float16), 1.50439453125)
Unit 202 -> (tensor(0.9629, device='cuda:0', dtype=torch.float16), 0.876708984375)
Unit 203 -> (tensor(0.7192, device='cuda:0', dtype=torch.float16), 0.13916015625)
Unit 204 -> (tensor(0.6064, device='cuda:0', dtype=torch.float16), 0.04736328125)
Unit 205 -> (tensor(0.9287, device='cuda:0', dtype=torch.float16), 0.35888671875)
Unit 206 -> (tensor(0.4333, device='cuda:0', dtype=torch.float16), 1.5439453125)
Unit 207 -> (tensor(0.8950, device='cuda:0', dtype=torch.float16), 0.24267578125)
Unit 208 -> (tensor(0.6636, device='cuda:0', dtype=torch.float16), 1.6640625)
Unit 209 -> (tensor(0.7046, device='cuda:0', dtype=torch.float16), 0.02392578125)
Unit 210 -> (tensor(0.9619, device='cuda:0', dtype=torch.float16), 1.197998046875)
Unit 211 -> (tensor(0.9458, device='cuda:0', dtype=torch.float16), 1.5947265625)
Unit 212 -> (tensor(0.5742, device='cuda:0', dtype=torch.float16), 1.287109375)
Unit 213 -> (tensor(0.9375, device='cuda:0', dtype=torch.float16), 0.547119140625)
Unit 214 -> (tensor(0.9067, device='cuda:0', dtype=torch.float16), 1.446533203125)
Unit 215 -> (tensor(0.4839, device='cuda:0', dtype=torch.float16), 1.91064453125)
Unit 216 -> (tensor(0.5635, device='cuda:0', dtype=torch.float16), 1.60107421875)
Unit 217 -> (tensor(0.6846, device='cuda:0', dtype=torch.float16), 0.693115234375)
Unit 218 -> (tensor(0.3948, device='cuda:0', dtype=torch.float16), 0.34814453125)
Unit 219 -> (tensor(0.8315, device='cuda:0', dtype=torch.float16), 1.86669921875)
Unit 220 -> (tensor(0.6938, device='cuda:0', dtype=torch.float16), 0.8031005859375)
Unit 221 -> (tensor(0.4148, device='cuda:0', dtype=torch.float16), 1.25830078125)
Unit 222 -> (tensor(0.3486, device='cuda:0', dtype=torch.float16), 1.54931640625)
Unit 223 -> (tensor(0.9585, device='cuda:0', dtype=torch.float16), 1.87451171875)
Unit 224 -> (tensor(0.4333, device='cuda:0', dtype=torch.float16), 1.83544921875)
Unit 225 -> (tensor(0.7266, device='cuda:0', dtype=torch.float16), 0.82568359375)
Unit 226 -> (tensor(0.9507, device='cuda:0', dtype=torch.float16), 0.96502685546875)
Unit 227 -> (tensor(0.9722, device='cuda:0', dtype=torch.float16), 1.3447265625)
Unit 228 -> (tensor(0.4756, device='cuda:0', dtype=torch.float16), 1.6337890625)
Unit 229 -> (tensor(0.9600, device='cuda:0', dtype=torch.float16), 0.4072265625)
Unit 230 -> (tensor(0.9683, device='cuda:0', dtype=torch.float16), 1.53125)
Unit 231 -> (tensor(0.5635, device='cuda:0', dtype=torch.float16), 0.1142578125)
Unit 232 -> (tensor(0.5366, device='cuda:0', dtype=torch.float16), 1.2109375)
Unit 233 -> (tensor(0.5947, device='cuda:0', dtype=torch.float16), 1.8125)
Unit 234 -> (tensor(0.5767, device='cuda:0', dtype=torch.float16), 0.08447265625)
Unit 235 -> (tensor(0.6147, device='cuda:0', dtype=torch.float16), 1.93310546875)
Unit 236 -> (tensor(0.2908, device='cuda:0', dtype=torch.float16), 0.8084716796875)
Unit 237 -> (tensor(0.6304, device='cuda:0', dtype=torch.float16), 0.09619140625)
Unit 238 -> (tensor(0.8491, device='cuda:0', dtype=torch.float16), 1.92431640625)
Unit 239 -> (tensor(0.6953, device='cuda:0', dtype=torch.float16), 0.89617919921875)
Unit 240 -> (tensor(0.8540, device='cuda:0', dtype=torch.float16), 0.25927734375)
Unit 241 -> (tensor(0.7524, device='cuda:0', dtype=torch.float16), 0.1806640625)
Unit 242 -> (tensor(0.4695, device='cuda:0', dtype=torch.float16), 1.958984375)
Unit 243 -> (tensor(0.3792, device='cuda:0', dtype=torch.float16), 0.566162109375)
Unit 244 -> (tensor(0.6309, device='cuda:0', dtype=torch.float16), 1.90869140625)
Unit 245 -> (tensor(0.8804, device='cuda:0', dtype=torch.float16), 1.748046875)
Unit 246 -> (tensor(0.5874, device='cuda:0', dtype=torch.float16), 0.07861328125)
Unit 247 -> (tensor(0.9136, device='cuda:0', dtype=torch.float16), 1.91796875)
Unit 248 -> (tensor(0.8525, device='cuda:0', dtype=torch.float16), 1.1732177734375)
Unit 249 -> (tensor(0.8594, device='cuda:0', dtype=torch.float16), 0.33984375)
Unit 250 -> (tensor(0.5742, device='cuda:0', dtype=torch.float16), 0.8499755859375)
Unit 251 -> (tensor(0.8511, device='cuda:0', dtype=torch.float16), 1.057342529296875)
Unit 252 -> (tensor(0.7544, device='cuda:0', dtype=torch.float16), 1.376953125)
Unit 253 -> (tensor(0.7510, device='cuda:0', dtype=torch.float16), 0.92236328125)
Unit 254 -> (tensor(0.8267, device='cuda:0', dtype=torch.float16), 0.21923828125)
Unit 255 -> (tensor(0.9771, device='cuda:0', dtype=torch.float16), 1.76025390625)
Unit 256 -> (tensor(0.7300, device='cuda:0', dtype=torch.float16), 0.781005859375)
Unit 257 -> (tensor(0.9395, device='cuda:0', dtype=torch.float16), 0.8507080078125)
Unit 258 -> (tensor(0.7559, device='cuda:0', dtype=torch.float16), 1.81640625)
Unit 259 -> (tensor(0.8867, device='cuda:0', dtype=torch.float16), 1.050933837890625)
Unit 260 -> (tensor(0.6182, device='cuda:0', dtype=torch.float16), 0.753662109375)
Unit 261 -> (tensor(0.6626, device='cuda:0', dtype=torch.float16), 0.9014892578125)
Unit 262 -> (tensor(0.6367, device='cuda:0', dtype=torch.float16), 1.88525390625)
Unit 263 -> (tensor(0.4849, device='cuda:0', dtype=torch.float16), 1.90380859375)
Unit 264 -> (tensor(0.4131, device='cuda:0', dtype=torch.float16), 1.63916015625)
Unit 265 -> (tensor(0.6123, device='cuda:0', dtype=torch.float16), 1.5205078125)
Unit 266 -> (tensor(0.8574, device='cuda:0', dtype=torch.float16), 1.357177734375)
Unit 267 -> (tensor(0.6562, device='cuda:0', dtype=torch.float16), 1.82470703125)
Unit 268 -> (tensor(0.4546, device='cuda:0', dtype=torch.float16), 1.0231170654296875)
Unit 269 -> (tensor(0.8286, device='cuda:0', dtype=torch.float16), 0.515869140625)
Unit 270 -> (tensor(0.7744, device='cuda:0', dtype=torch.float16), 0.09228515625)
Unit 271 -> (tensor(0.6074, device='cuda:0', dtype=torch.float16), 1.10791015625)
Unit 272 -> (tensor(0.9131, device='cuda:0', dtype=torch.float16), 0.1533203125)
Unit 273 -> (tensor(0.6470, device='cuda:0', dtype=torch.float16), 0.818359375)
Unit 274 -> (tensor(0.5132, device='cuda:0', dtype=torch.float16), 0.8028564453125)
Unit 275 -> (tensor(0.3809, device='cuda:0', dtype=torch.float16), 1.9189453125)
Unit 276 -> (tensor(0.6411, device='cuda:0', dtype=torch.float16), 1.50830078125)
Unit 277 -> (tensor(0.3020, device='cuda:0', dtype=torch.float16), 0.1328125)
Unit 278 -> (tensor(0.5879, device='cuda:0', dtype=torch.float16), 1.95751953125)
Unit 279 -> (tensor(0.4810, device='cuda:0', dtype=torch.float16), 1.421630859375)
Unit 280 -> (tensor(0.7305, device='cuda:0', dtype=torch.float16), 0.840576171875)
Unit 281 -> (tensor(0.9800, device='cuda:0', dtype=torch.float16), 0.56103515625)
Unit 282 -> (tensor(0.7671, device='cuda:0', dtype=torch.float16), 1.07147216796875)
Unit 283 -> (tensor(0.8359, device='cuda:0', dtype=torch.float16), 0.1669921875)
Unit 284 -> (tensor(0.9556, device='cuda:0', dtype=torch.float16), 1.6201171875)
Unit 285 -> (tensor(0.5425, device='cuda:0', dtype=torch.float16), 1.46484375)
Unit 286 -> (tensor(0.5488, device='cuda:0', dtype=torch.float16), 0.02392578125)
Unit 287 -> (tensor(0.9116, device='cuda:0', dtype=torch.float16), 0.2607421875)
Unit 288 -> (tensor(0.6445, device='cuda:0', dtype=torch.float16), 0.7818603515625)
Unit 289 -> (tensor(0.7271, device='cuda:0', dtype=torch.float16), 1.88134765625)
Unit 290 -> (tensor(0.6606, device='cuda:0', dtype=torch.float16), 0.564697265625)
Unit 291 -> (tensor(0.8872, device='cuda:0', dtype=torch.float16), 1.76806640625)
Unit 292 -> (tensor(0.6655, device='cuda:0', dtype=torch.float16), 1.48681640625)
Unit 293 -> (tensor(0.6426, device='cuda:0', dtype=torch.float16), 0.21484375)
Unit 294 -> (tensor(0.6519, device='cuda:0', dtype=torch.float16), 1.055938720703125)
Unit 295 -> (tensor(0.9272, device='cuda:0', dtype=torch.float16), 1.77197265625)
Unit 296 -> (tensor(0.6509, device='cuda:0', dtype=torch.float16), 0.0986328125)
Unit 297 -> (tensor(0.8535, device='cuda:0', dtype=torch.float16), 1.62109375)
Unit 298 -> (tensor(0.6538, device='cuda:0', dtype=torch.float16), 1.8134765625)
Unit 299 -> (tensor(0.8506, device='cuda:0', dtype=torch.float16), 0.9056396484375)
Unit 300 -> (tensor(0.4851, device='cuda:0', dtype=torch.float16), 0.3935546875)
Unit 301 -> (tensor(0.8945, device='cuda:0', dtype=torch.float16), 1.7919921875)
Unit 302 -> (tensor(0.5415, device='cuda:0', dtype=torch.float16), 1.96484375)
Unit 303 -> (tensor(0.6216, device='cuda:0', dtype=torch.float16), 1.91796875)
Unit 304 -> (tensor(0.4524, device='cuda:0', dtype=torch.float16), 0.585205078125)
Unit 305 -> (tensor(0.5732, device='cuda:0', dtype=torch.float16), 0.9129638671875)
Unit 306 -> (tensor(0.9111, device='cuda:0', dtype=torch.float16), 0.05419921875)
Unit 307 -> (tensor(0.5234, device='cuda:0', dtype=torch.float16), 0.02978515625)
Unit 308 -> (tensor(0.6289, device='cuda:0', dtype=torch.float16), 0.7935791015625)
Unit 309 -> (tensor(0.4055, device='cuda:0', dtype=torch.float16), 1.83447265625)
Unit 310 -> (tensor(0.7002, device='cuda:0', dtype=torch.float16), 0.857177734375)
Unit 311 -> (tensor(0.8398, device='cuda:0', dtype=torch.float16), 1.1693115234375)
Unit 312 -> (tensor(0.9258, device='cuda:0', dtype=torch.float16), 1.67333984375)
Unit 313 -> (tensor(0.5552, device='cuda:0', dtype=torch.float16), 1.62548828125)
Unit 314 -> (tensor(0.6816, device='cuda:0', dtype=torch.float16), 1.89404296875)
Unit 315 -> (tensor(0.5190, device='cuda:0', dtype=torch.float16), 0.89019775390625)
Unit 316 -> (tensor(0.5308, device='cuda:0', dtype=torch.float16), 0.6318359375)
Unit 317 -> (tensor(0.9238, device='cuda:0', dtype=torch.float16), 0.646484375)
Unit 318 -> (tensor(0.7524, device='cuda:0', dtype=torch.float16), 0.04833984375)
Unit 319 -> (tensor(0.8247, device='cuda:0', dtype=torch.float16), 1.02874755859375)
Unit 320 -> (tensor(0.5732, device='cuda:0', dtype=torch.float16), 1.7294921875)
Unit 321 -> (tensor(0.9233, device='cuda:0', dtype=torch.float16), 0.111328125)
Unit 322 -> (tensor(0.5488, device='cuda:0', dtype=torch.float16), 1.176025390625)
Unit 323 -> (tensor(0.3420, device='cuda:0', dtype=torch.float16), 1.955078125)
Unit 324 -> (tensor(0.5815, device='cuda:0', dtype=torch.float16), 0.09228515625)
Unit 325 -> (tensor(0.6353, device='cuda:0', dtype=torch.float16), 1.2003173828125)
Unit 326 -> (tensor(0.4204, device='cuda:0', dtype=torch.float16), 0.4287109375)
Unit 327 -> (tensor(0.4795, device='cuda:0', dtype=torch.float16), 0.29296875)
Unit 328 -> (tensor(0.9443, device='cuda:0', dtype=torch.float16), 1.87939453125)
Unit 329 -> (tensor(0.8711, device='cuda:0', dtype=torch.float16), 1.783203125)
Unit 330 -> (tensor(0.5825, device='cuda:0', dtype=torch.float16), 0.13232421875)
Unit 331 -> (tensor(0.8740, device='cuda:0', dtype=torch.float16), 1.681640625)
Unit 332 -> (tensor(0.4709, device='cuda:0', dtype=torch.float16), 0.47119140625)
Unit 333 -> (tensor(0.9741, device='cuda:0', dtype=torch.float16), 1.73583984375)
Unit 334 -> (tensor(0.8408, device='cuda:0', dtype=torch.float16), 0.826416015625)
Unit 335 -> (tensor(0.6562, device='cuda:0', dtype=torch.float16), 1.65478515625)
Unit 336 -> (tensor(0.7466, device='cuda:0', dtype=torch.float16), 1.382568359375)
Unit 337 -> (tensor(0.7690, device='cuda:0', dtype=torch.float16), 0.5703125)
Unit 338 -> (tensor(0.3831, device='cuda:0', dtype=torch.float16), 1.0572509765625)
Unit 339 -> (tensor(0.7881, device='cuda:0', dtype=torch.float16), 1.93359375)
Unit 340 -> (tensor(0.4570, device='cuda:0', dtype=torch.float16), 0.1748046875)
Unit 341 -> (tensor(0.7065, device='cuda:0', dtype=torch.float16), 1.94580078125)
Unit 342 -> (tensor(0.5190, device='cuda:0', dtype=torch.float16), 0.1103515625)
Unit 343 -> (tensor(0.9731, device='cuda:0', dtype=torch.float16), 0.28466796875)
Unit 344 -> (tensor(0.8682, device='cuda:0', dtype=torch.float16), 1.8125)
Unit 345 -> (tensor(0.5156, device='cuda:0', dtype=torch.float16), 1.7939453125)
Unit 346 -> (tensor(0.4685, device='cuda:0', dtype=torch.float16), 1.2451171875)
Unit 347 -> (tensor(0.6338, device='cuda:0', dtype=torch.float16), 1.306640625)
Unit 348 -> (tensor(0.8813, device='cuda:0', dtype=torch.float16), 1.278564453125)
Unit 349 -> (tensor(0.5273, device='cuda:0', dtype=torch.float16), 1.438232421875)
Unit 350 -> (tensor(0.9868, device='cuda:0', dtype=torch.float16), 1.15576171875)
Unit 351 -> (tensor(0.6265, device='cuda:0', dtype=torch.float16), 1.211181640625)
Unit 352 -> (tensor(0.9521, device='cuda:0', dtype=torch.float16), 1.28076171875)
Unit 353 -> (tensor(0.6255, device='cuda:0', dtype=torch.float16), 0.784912109375)
Unit 354 -> (tensor(0.7720, device='cuda:0', dtype=torch.float16), 0.966033935546875)
Unit 355 -> (tensor(0.8682, device='cuda:0', dtype=torch.float16), 0.220703125)
Unit 356 -> (tensor(0.9653, device='cuda:0', dtype=torch.float16), 0.08251953125)
Unit 357 -> (tensor(0.9556, device='cuda:0', dtype=torch.float16), 0.709228515625)
Unit 358 -> (tensor(0.8975, device='cuda:0', dtype=torch.float16), 1.86279296875)
Unit 359 -> (tensor(0.5059, device='cuda:0', dtype=torch.float16), 1.225830078125)
Unit 360 -> (tensor(0.5283, device='cuda:0', dtype=torch.float16), 0.09765625)
Unit 361 -> (tensor(0.7500, device='cuda:0', dtype=torch.float16), 0.23828125)
Unit 362 -> (tensor(0.8599, device='cuda:0', dtype=torch.float16), 1.53662109375)
Unit 363 -> (tensor(0.9185, device='cuda:0', dtype=torch.float16), 0.19677734375)
Unit 364 -> (tensor(0.5981, device='cuda:0', dtype=torch.float16), 1.89208984375)
Unit 365 -> (tensor(0.6670, device='cuda:0', dtype=torch.float16), 0.8895263671875)
Unit 366 -> (tensor(0.9902, device='cuda:0', dtype=torch.float16), 0.6298828125)
Unit 367 -> (tensor(0.7520, device='cuda:0', dtype=torch.float16), 1.837890625)
Unit 368 -> (tensor(0.8101, device='cuda:0', dtype=torch.float16), 1.11199951171875)
Unit 369 -> (tensor(0.6333, device='cuda:0', dtype=torch.float16), 1.79638671875)
Unit 370 -> (tensor(0.6841, device='cuda:0', dtype=torch.float16), 0.20361328125)
Unit 371 -> (tensor(0.6079, device='cuda:0', dtype=torch.float16), 0.078125)
Unit 372 -> (tensor(0.6104, device='cuda:0', dtype=torch.float16), 0.09375)
Unit 373 -> (tensor(0.9639, device='cuda:0', dtype=torch.float16), 0.22802734375)
Unit 374 -> (tensor(0.9111, device='cuda:0', dtype=torch.float16), 0.4404296875)
Unit 375 -> (tensor(0.9644, device='cuda:0', dtype=torch.float16), 0.08447265625)
Unit 376 -> (tensor(0.6187, device='cuda:0', dtype=torch.float16), 0.04833984375)
Unit 377 -> (tensor(0.4307, device='cuda:0', dtype=torch.float16), 0.037109375)
Unit 378 -> (tensor(0.8931, device='cuda:0', dtype=torch.float16), 0.60546875)
Unit 379 -> (tensor(0.6582, device='cuda:0', dtype=torch.float16), 1.94677734375)
Unit 380 -> (tensor(0.7373, device='cuda:0', dtype=torch.float16), 0.81982421875)
Unit 381 -> (tensor(0.5034, device='cuda:0', dtype=torch.float16), 0.969512939453125)
Unit 382 -> (tensor(0.9683, device='cuda:0', dtype=torch.float16), 1.3583984375)
Unit 383 -> (tensor(0.9556, device='cuda:0', dtype=torch.float16), 0.203125)
Unit 384 -> (tensor(0.4026, device='cuda:0', dtype=torch.float16), 1.5791015625)
Unit 385 -> (tensor(0.5854, device='cuda:0', dtype=torch.float16), 1.0592041015625)
Unit 386 -> (tensor(0.4937, device='cuda:0', dtype=torch.float16), 0.858154296875)
Unit 387 -> (tensor(0.6401, device='cuda:0', dtype=torch.float16), 1.52783203125)
Unit 388 -> (tensor(0.4377, device='cuda:0', dtype=torch.float16), 1.90234375)
Unit 389 -> (tensor(0.5405, device='cuda:0', dtype=torch.float16), 0.32861328125)
Unit 390 -> (tensor(0.9854, device='cuda:0', dtype=torch.float16), 1.529296875)
Unit 391 -> (tensor(0.5518, device='cuda:0', dtype=torch.float16), 1.179931640625)
Unit 392 -> (tensor(0.8140, device='cuda:0', dtype=torch.float16), 1.465576171875)
Unit 393 -> (tensor(0.9463, device='cuda:0', dtype=torch.float16), 0.4052734375)
Unit 394 -> (tensor(0.6411, device='cuda:0', dtype=torch.float16), 0.25)
Unit 395 -> (tensor(0.9102, device='cuda:0', dtype=torch.float16), 0.514892578125)
Unit 396 -> (tensor(0.8350, device='cuda:0', dtype=torch.float16), 1.88330078125)
Unit 397 -> (tensor(0.6108, device='cuda:0', dtype=torch.float16), 1.52490234375)
Unit 398 -> (tensor(0.7915, device='cuda:0', dtype=torch.float16), 0.42724609375)
Unit 399 -> (tensor(0.9204, device='cuda:0', dtype=torch.float16), 0.18115234375)
Unit 400 -> (tensor(0.9619, device='cuda:0', dtype=torch.float16), 1.357177734375)
Unit 401 -> (tensor(0.9487, device='cuda:0', dtype=torch.float16), 1.77587890625)
Unit 402 -> (tensor(0.8589, device='cuda:0', dtype=torch.float16), 1.20849609375)
Unit 403 -> (tensor(0.4187, device='cuda:0', dtype=torch.float16), 0.4091796875)
Unit 404 -> (tensor(0.4121, device='cuda:0', dtype=torch.float16), 0.27978515625)
Unit 405 -> (tensor(0.4529, device='cuda:0', dtype=torch.float16), 1.63037109375)
Unit 406 -> (tensor(0.8306, device='cuda:0', dtype=torch.float16), 1.258056640625)
Unit 407 -> (tensor(0.4333, device='cuda:0', dtype=torch.float16), 0.06103515625)
Unit 408 -> (tensor(0.9727, device='cuda:0', dtype=torch.float16), 0.4169921875)
Unit 409 -> (tensor(0.5562, device='cuda:0', dtype=torch.float16), 1.1539306640625)
Unit 410 -> (tensor(0.8838, device='cuda:0', dtype=torch.float16), 0.099609375)
Unit 411 -> (tensor(0.6821, device='cuda:0', dtype=torch.float16), 1.9111328125)
Unit 412 -> (tensor(0.7861, device='cuda:0', dtype=torch.float16), 1.390380859375)
Unit 413 -> (tensor(0.5635, device='cuda:0', dtype=torch.float16), 1.1895751953125)
Unit 414 -> (tensor(0.5132, device='cuda:0', dtype=torch.float16), 0.75634765625)
Unit 415 -> (tensor(0.6895, device='cuda:0', dtype=torch.float16), 1.90234375)
Unit 416 -> (tensor(0.8530, device='cuda:0', dtype=torch.float16), 0.09130859375)
Unit 417 -> (tensor(0.5327, device='cuda:0', dtype=torch.float16), 1.216796875)
Unit 418 -> (tensor(0.4258, device='cuda:0', dtype=torch.float16), 1.87353515625)
Unit 419 -> (tensor(0.9561, device='cuda:0', dtype=torch.float16), 0.09326171875)
Unit 420 -> (tensor(0.6299, device='cuda:0', dtype=torch.float16), 1.8876953125)
Unit 421 -> (tensor(0.5942, device='cuda:0', dtype=torch.float16), 1.8623046875)
Unit 422 -> (tensor(0.8076, device='cuda:0', dtype=torch.float16), 0.091796875)
Unit 423 -> (tensor(0.4885, device='cuda:0', dtype=torch.float16), 0.7451171875)
Unit 424 -> (tensor(0.8452, device='cuda:0', dtype=torch.float16), 1.8017578125)
Unit 425 -> (tensor(0.8452, device='cuda:0', dtype=torch.float16), 0.2109375)
Unit 426 -> (tensor(0.8306, device='cuda:0', dtype=torch.float16), 0.07763671875)
Unit 427 -> (tensor(0.7183, device='cuda:0', dtype=torch.float16), 1.430908203125)
Unit 428 -> (tensor(0.9673, device='cuda:0', dtype=torch.float16), 0.32177734375)
Unit 429 -> (tensor(0.6875, device='cuda:0', dtype=torch.float16), 1.26318359375)
Unit 430 -> (tensor(0.2426, device='cuda:0', dtype=torch.float16), 1.06732177734375)
Unit 431 -> (tensor(0.8345, device='cuda:0', dtype=torch.float16), 1.92919921875)
Unit 432 -> (tensor(0.6064, device='cuda:0', dtype=torch.float16), 1.10601806640625)
Unit 433 -> (tensor(0.9648, device='cuda:0', dtype=torch.float16), 1.1898193359375)
Unit 434 -> (tensor(0.8354, device='cuda:0', dtype=torch.float16), 1.93310546875)
Unit 435 -> (tensor(0.6660, device='cuda:0', dtype=torch.float16), 1.892578125)
Unit 436 -> (tensor(0.4719, device='cuda:0', dtype=torch.float16), 0.24658203125)
Unit 437 -> (tensor(0.4514, device='cuda:0', dtype=torch.float16), 0.14453125)
Unit 438 -> (tensor(0.6675, device='cuda:0', dtype=torch.float16), 0.0908203125)
Unit 439 -> (tensor(0.5981, device='cuda:0', dtype=torch.float16), 0.24951171875)
Unit 440 -> (tensor(0.6465, device='cuda:0', dtype=torch.float16), 0.959686279296875)
Unit 441 -> (tensor(0.7822, device='cuda:0', dtype=torch.float16), 1.90283203125)
Unit 442 -> (tensor(0.7783, device='cuda:0', dtype=torch.float16), 1.2958984375)
Unit 443 -> (tensor(0.8711, device='cuda:0', dtype=torch.float16), 0.322265625)
Unit 444 -> (tensor(0.8589, device='cuda:0', dtype=torch.float16), 0.27587890625)
Unit 445 -> (tensor(0.9302, device='cuda:0', dtype=torch.float16), 1.93896484375)
Unit 446 -> (tensor(0.8682, device='cuda:0', dtype=torch.float16), 0.1103515625)
Unit 447 -> (tensor(0.7559, device='cuda:0', dtype=torch.float16), 1.479248046875)
Unit 448 -> (tensor(0.8281, device='cuda:0', dtype=torch.float16), 1.1683349609375)
Unit 449 -> (tensor(0.9717, device='cuda:0', dtype=torch.float16), 1.21533203125)
Unit 450 -> (tensor(0.4023, device='cuda:0', dtype=torch.float16), 1.83642578125)
Unit 451 -> (tensor(0.8774, device='cuda:0', dtype=torch.float16), 1.796875)
Unit 452 -> (tensor(0.7305, device='cuda:0', dtype=torch.float16), 0.431640625)
Unit 453 -> (tensor(0.4854, device='cuda:0', dtype=torch.float16), 1.7158203125)
Unit 454 -> (tensor(0.7280, device='cuda:0', dtype=torch.float16), 1.88525390625)
Unit 455 -> (tensor(0.7769, device='cuda:0', dtype=torch.float16), 0.12548828125)
Unit 456 -> (tensor(0.8999, device='cuda:0', dtype=torch.float16), 0.08642578125)
Unit 457 -> (tensor(0.4155, device='cuda:0', dtype=torch.float16), 1.373291015625)
Unit 458 -> (tensor(0.7012, device='cuda:0', dtype=torch.float16), 0.9013671875)
Unit 459 -> (tensor(0.7095, device='cuda:0', dtype=torch.float16), 0.24951171875)
Unit 460 -> (tensor(0.4841, device='cuda:0', dtype=torch.float16), 1.3828125)
Unit 461 -> (tensor(0.9712, device='cuda:0', dtype=torch.float16), 1.22119140625)
Unit 462 -> (tensor(0.6216, device='cuda:0', dtype=torch.float16), 1.9287109375)
Unit 463 -> (tensor(0.6616, device='cuda:0', dtype=torch.float16), 0.10302734375)
Unit 464 -> (tensor(0.8418, device='cuda:0', dtype=torch.float16), 0.73779296875)
Unit 465 -> (tensor(0.4268, device='cuda:0', dtype=torch.float16), 0.076171875)
Unit 466 -> (tensor(0.7734, device='cuda:0', dtype=torch.float16), 0.08251953125)
Unit 467 -> (tensor(0.5947, device='cuda:0', dtype=torch.float16), 1.06378173828125)
Unit 468 -> (tensor(0.9741, device='cuda:0', dtype=torch.float16), 1.26416015625)
Unit 469 -> (tensor(0.8936, device='cuda:0', dtype=torch.float16), 1.5048828125)
Unit 470 -> (tensor(0.6108, device='cuda:0', dtype=torch.float16), 0.580078125)
Unit 471 -> (tensor(0.9062, device='cuda:0', dtype=torch.float16), 1.75048828125)
Unit 472 -> (tensor(0.6206, device='cuda:0', dtype=torch.float16), 1.94482421875)
Unit 473 -> (tensor(0.7622, device='cuda:0', dtype=torch.float16), 0.16357421875)
Unit 474 -> (tensor(0.6733, device='cuda:0', dtype=torch.float16), 0.4111328125)
Unit 475 -> (tensor(0.7622, device='cuda:0', dtype=torch.float16), 0.244140625)
Unit 476 -> (tensor(0.8608, device='cuda:0', dtype=torch.float16), 0.26904296875)
Unit 477 -> (tensor(0.8271, device='cuda:0', dtype=torch.float16), 1.8916015625)
Unit 478 -> (tensor(0.9546, device='cuda:0', dtype=torch.float16), 0.811767578125)
Unit 479 -> (tensor(0.3625, device='cuda:0', dtype=torch.float16), 0.554931640625)
Unit 480 -> (tensor(0.6406, device='cuda:0', dtype=torch.float16), 0.885009765625)
Unit 481 -> (tensor(0.6636, device='cuda:0', dtype=torch.float16), 1.2230224609375)
Unit 482 -> (tensor(0.6943, device='cuda:0', dtype=torch.float16), 1.498046875)
Unit 483 -> (tensor(0.6240, device='cuda:0', dtype=torch.float16), 1.9580078125)
Unit 484 -> (tensor(0.6968, device='cuda:0', dtype=torch.float16), 0.803955078125)
Unit 485 -> (tensor(0.6797, device='cuda:0', dtype=torch.float16), 1.767578125)
Unit 486 -> (tensor(0.8809, device='cuda:0', dtype=torch.float16), 1.63916015625)
Unit 487 -> (tensor(0.4468, device='cuda:0', dtype=torch.float16), 1.82958984375)
Unit 488 -> (tensor(0.9663, device='cuda:0', dtype=torch.float16), 1.6708984375)
Unit 489 -> (tensor(0.6538, device='cuda:0', dtype=torch.float16), 0.9926033020019531)
Unit 490 -> (tensor(0.4529, device='cuda:0', dtype=torch.float16), 0.0263671875)
Unit 491 -> (tensor(0.8276, device='cuda:0', dtype=torch.float16), 0.23486328125)
Unit 492 -> (tensor(0.7847, device='cuda:0', dtype=torch.float16), 1.7607421875)
Unit 493 -> (tensor(0.8853, device='cuda:0', dtype=torch.float16), 0.14697265625)
Unit 494 -> (tensor(0.6948, device='cuda:0', dtype=torch.float16), 0.359375)
Unit 495 -> (tensor(0.9551, device='cuda:0', dtype=torch.float16), 1.04010009765625)
Unit 496 -> (tensor(0.5908, device='cuda:0', dtype=torch.float16), 1.630859375)
Unit 497 -> (tensor(0.5347, device='cuda:0', dtype=torch.float16), 0.076171875)
Unit 498 -> (tensor(0.7402, device='cuda:0', dtype=torch.float16), 1.4580078125)
Unit 499 -> (tensor(0.6558, device='cuda:0', dtype=torch.float16), 0.5595703125)
Unit 500 -> (tensor(0.6401, device='cuda:0', dtype=torch.float16), 0.32470703125)
Unit 501 -> (tensor(0.5503, device='cuda:0', dtype=torch.float16), 0.16015625)
Unit 502 -> (tensor(0.9531, device='cuda:0', dtype=torch.float16), 0.658447265625)
Unit 503 -> (tensor(0.8018, device='cuda:0', dtype=torch.float16), 0.576904296875)
Unit 504 -> (tensor(0.8877, device='cuda:0', dtype=torch.float16), 1.78466796875)
Unit 505 -> (tensor(0.6943, device='cuda:0', dtype=torch.float16), 0.10107421875)
Unit 506 -> (tensor(0.9736, device='cuda:0', dtype=torch.float16), 0.255859375)
Unit 507 -> (tensor(0.9321, device='cuda:0', dtype=torch.float16), 0.07666015625)
Unit 508 -> (tensor(0.9844, device='cuda:0', dtype=torch.float16), 1.3271484375)
Unit 509 -> (tensor(0.5142, device='cuda:0', dtype=torch.float16), 1.56591796875)
Unit 510 -> (tensor(0.8564, device='cuda:0', dtype=torch.float16), 0.455078125)
Unit 511 -> (tensor(0.7085, device='cuda:0', dtype=torch.float16), 1.8447265625)
Unit 512 -> (tensor(0.7285, device='cuda:0', dtype=torch.float16), 1.68994140625)
Unit 513 -> (tensor(0.3738, device='cuda:0', dtype=torch.float16), 0.33447265625)
Unit 514 -> (tensor(0.9180, device='cuda:0', dtype=torch.float16), 1.294677734375)
Unit 515 -> (tensor(0.7603, device='cuda:0', dtype=torch.float16), 1.9580078125)
Unit 516 -> (tensor(0.8955, device='cuda:0', dtype=torch.float16), 0.19189453125)
Unit 517 -> (tensor(0.7148, device='cuda:0', dtype=torch.float16), 0.03955078125)
Unit 518 -> (tensor(0.5605, device='cuda:0', dtype=torch.float16), 0.503173828125)
Unit 519 -> (tensor(0.6396, device='cuda:0', dtype=torch.float16), 0.9405517578125)
Unit 520 -> (tensor(0.9629, device='cuda:0', dtype=torch.float16), 0.20458984375)
Unit 521 -> (tensor(0.5815, device='cuda:0', dtype=torch.float16), 1.85546875)
Unit 522 -> (tensor(0.6895, device='cuda:0', dtype=torch.float16), 1.6298828125)
Unit 523 -> (tensor(0.5312, device='cuda:0', dtype=torch.float16), 0.18505859375)
Unit 524 -> (tensor(0.9468, device='cuda:0', dtype=torch.float16), 1.6865234375)
Unit 525 -> (tensor(0.7378, device='cuda:0', dtype=torch.float16), 1.85791015625)
Unit 526 -> (tensor(0.7573, device='cuda:0', dtype=torch.float16), 0.4697265625)
Unit 527 -> (tensor(0.7915, device='cuda:0', dtype=torch.float16), 1.85888671875)
Unit 528 -> (tensor(0.7900, device='cuda:0', dtype=torch.float16), 0.16748046875)
Unit 529 -> (tensor(0.7495, device='cuda:0', dtype=torch.float16), 1.92724609375)
Unit 530 -> (tensor(0.8062, device='cuda:0', dtype=torch.float16), 1.9775390625)
Unit 531 -> (tensor(0.8975, device='cuda:0', dtype=torch.float16), 1.83251953125)
Unit 532 -> (tensor(0.6318, device='cuda:0', dtype=torch.float16), 1.873046875)
Unit 533 -> (tensor(0.8921, device='cuda:0', dtype=torch.float16), 0.0859375)
Unit 534 -> (tensor(0.7119, device='cuda:0', dtype=torch.float16), 0.07763671875)
Unit 535 -> (tensor(0.8179, device='cuda:0', dtype=torch.float16), 1.62255859375)
Unit 536 -> (tensor(0.4978, device='cuda:0', dtype=torch.float16), 0.232421875)
Unit 537 -> (tensor(0.8291, device='cuda:0', dtype=torch.float16), 1.77294921875)
Unit 538 -> (tensor(0.8599, device='cuda:0', dtype=torch.float16), 1.892578125)
Unit 539 -> (tensor(0.7690, device='cuda:0', dtype=torch.float16), 1.69873046875)
Unit 540 -> (tensor(0.4888, device='cuda:0', dtype=torch.float16), 0.22509765625)
Unit 541 -> (tensor(0.5049, device='cuda:0', dtype=torch.float16), 1.96435546875)
Unit 542 -> (tensor(0.9199, device='cuda:0', dtype=torch.float16), 0.4150390625)
Unit 543 -> (tensor(0.8496, device='cuda:0', dtype=torch.float16), 0.740234375)
Unit 544 -> (tensor(0.9556, device='cuda:0', dtype=torch.float16), 1.65771484375)
Unit 545 -> (tensor(0.7793, device='cuda:0', dtype=torch.float16), 0.2548828125)
Unit 546 -> (tensor(0.9380, device='cuda:0', dtype=torch.float16), 1.87353515625)
Unit 547 -> (tensor(0.4663, device='cuda:0', dtype=torch.float16), 1.91162109375)
Unit 548 -> (tensor(0.7695, device='cuda:0', dtype=torch.float16), 0.04345703125)
Unit 549 -> (tensor(0.8301, device='cuda:0', dtype=torch.float16), 1.888671875)
Unit 550 -> (tensor(0.2993, device='cuda:0', dtype=torch.float16), 1.76904296875)
Unit 551 -> (tensor(0.8999, device='cuda:0', dtype=torch.float16), 1.7841796875)
Unit 552 -> (tensor(0.7651, device='cuda:0', dtype=torch.float16), 1.0067901611328125)
Unit 553 -> (tensor(0.8457, device='cuda:0', dtype=torch.float16), 0.33642578125)
Unit 554 -> (tensor(0.9736, device='cuda:0', dtype=torch.float16), 1.0106430053710938)
Unit 555 -> (tensor(0.7129, device='cuda:0', dtype=torch.float16), 1.9765625)
Unit 556 -> (tensor(0.7822, device='cuda:0', dtype=torch.float16), 0.02099609375)
Unit 557 -> (tensor(0.6792, device='cuda:0', dtype=torch.float16), 1.84716796875)
Unit 558 -> (tensor(0.5122, device='cuda:0', dtype=torch.float16), 0.779052734375)
Unit 559 -> (tensor(0.8638, device='cuda:0', dtype=torch.float16), 0.690185546875)
Unit 560 -> (tensor(0.8179, device='cuda:0', dtype=torch.float16), 0.10546875)
Unit 561 -> (tensor(0.3572, device='cuda:0', dtype=torch.float16), 0.015625)
Unit 562 -> (tensor(0.6875, device='cuda:0', dtype=torch.float16), 1.06402587890625)
Unit 563 -> (tensor(0.7573, device='cuda:0', dtype=torch.float16), 1.92578125)
Unit 564 -> (tensor(0.6143, device='cuda:0', dtype=torch.float16), 1.9443359375)
Unit 565 -> (tensor(0.6294, device='cuda:0', dtype=torch.float16), 1.892578125)
Unit 566 -> (tensor(0.9834, device='cuda:0', dtype=torch.float16), 0.9329833984375)
Unit 567 -> (tensor(0.7148, device='cuda:0', dtype=torch.float16), 0.09814453125)
Unit 568 -> (tensor(0.5171, device='cuda:0', dtype=torch.float16), 1.908203125)
Unit 569 -> (tensor(0.7397, device='cuda:0', dtype=torch.float16), 0.4990234375)
Unit 570 -> (tensor(0.8120, device='cuda:0', dtype=torch.float16), 1.58251953125)
Unit 571 -> (tensor(0.8940, device='cuda:0', dtype=torch.float16), 1.8740234375)
Unit 572 -> (tensor(0.6841, device='cuda:0', dtype=torch.float16), 0.0576171875)
Unit 573 -> (tensor(0.6372, device='cuda:0', dtype=torch.float16), 1.6923828125)
Unit 574 -> (tensor(0.6626, device='cuda:0', dtype=torch.float16), 0.19482421875)
Unit 575 -> (tensor(0.4641, device='cuda:0', dtype=torch.float16), 1.52197265625)
Unit 576 -> (tensor(0.5518, device='cuda:0', dtype=torch.float16), 0.3876953125)
Unit 577 -> (tensor(0.3967, device='cuda:0', dtype=torch.float16), 0.12841796875)
Unit 578 -> (tensor(0.6182, device='cuda:0', dtype=torch.float16), 1.9794921875)
Unit 579 -> (tensor(0.7549, device='cuda:0', dtype=torch.float16), 0.08642578125)
Unit 580 -> (tensor(0.8027, device='cuda:0', dtype=torch.float16), 0.24755859375)
Unit 581 -> (tensor(0.6265, device='cuda:0', dtype=torch.float16), 0.2333984375)
Unit 582 -> (tensor(0.3965, device='cuda:0', dtype=torch.float16), 1.923828125)
Unit 583 -> (tensor(0.7397, device='cuda:0', dtype=torch.float16), 0.693603515625)
Unit 584 -> (tensor(0.6191, device='cuda:0', dtype=torch.float16), 0.992095947265625)
Unit 585 -> (tensor(0.9473, device='cuda:0', dtype=torch.float16), 0.33056640625)
Unit 586 -> (tensor(0.7344, device='cuda:0', dtype=torch.float16), 0.083984375)
Unit 587 -> (tensor(0.4573, device='cuda:0', dtype=torch.float16), 0.0654296875)
Unit 588 -> (tensor(0.4629, device='cuda:0', dtype=torch.float16), 1.6845703125)
Unit 589 -> (tensor(0.7456, device='cuda:0', dtype=torch.float16), 0.2080078125)
Unit 590 -> (tensor(0.8657, device='cuda:0', dtype=torch.float16), 0.834716796875)
Unit 591 -> (tensor(0.9346, device='cuda:0', dtype=torch.float16), 0.0546875)
Unit 592 -> (tensor(0.4260, device='cuda:0', dtype=torch.float16), 0.36572265625)
Unit 593 -> (tensor(0.6489, device='cuda:0', dtype=torch.float16), 0.9772186279296875)
Unit 594 -> (tensor(0.5210, device='cuda:0', dtype=torch.float16), 0.959197998046875)
Unit 595 -> (tensor(0.8472, device='cuda:0', dtype=torch.float16), 0.1796875)
Unit 596 -> (tensor(0.6650, device='cuda:0', dtype=torch.float16), 1.458740234375)
Unit 597 -> (tensor(0.8564, device='cuda:0', dtype=torch.float16), 0.1318359375)
Unit 598 -> (tensor(0.4165, device='cuda:0', dtype=torch.float16), 0.11181640625)
Unit 599 -> (tensor(0.7251, device='cuda:0', dtype=torch.float16), 1.28955078125)
Unit 600 -> (tensor(0.4285, device='cuda:0', dtype=torch.float16), 0.197265625)
Unit 601 -> (tensor(0.9487, device='cuda:0', dtype=torch.float16), 0.208984375)
Unit 602 -> (tensor(0.7666, device='cuda:0', dtype=torch.float16), 1.80126953125)
Unit 603 -> (tensor(0.4478, device='cuda:0', dtype=torch.float16), 1.6689453125)
Unit 604 -> (tensor(0.4084, device='cuda:0', dtype=torch.float16), 1.34912109375)
Unit 605 -> (tensor(0.8413, device='cuda:0', dtype=torch.float16), 0.130859375)
Unit 606 -> (tensor(0.8394, device='cuda:0', dtype=torch.float16), 0.737548828125)
Unit 607 -> (tensor(0.9409, device='cuda:0', dtype=torch.float16), 1.5009765625)
Unit 608 -> (tensor(0.4390, device='cuda:0', dtype=torch.float16), 0.09033203125)
Unit 609 -> (tensor(0.3894, device='cuda:0', dtype=torch.float16), 1.2392578125)
Unit 610 -> (tensor(0.5894, device='cuda:0', dtype=torch.float16), 1.14404296875)
Unit 611 -> (tensor(0.7373, device='cuda:0', dtype=torch.float16), 0.635009765625)
Unit 612 -> (tensor(0.6631, device='cuda:0', dtype=torch.float16), 1.34765625)
Unit 613 -> (tensor(0.6411, device='cuda:0', dtype=torch.float16), 0.8563232421875)
Unit 614 -> (tensor(0.5352, device='cuda:0', dtype=torch.float16), 1.7119140625)
Unit 615 -> (tensor(0.6294, device='cuda:0', dtype=torch.float16), 1.10516357421875)
Unit 616 -> (tensor(0.6313, device='cuda:0', dtype=torch.float16), 1.93212890625)
Unit 617 -> (tensor(0.4319, device='cuda:0', dtype=torch.float16), 0.404296875)
Unit 618 -> (tensor(0.9033, device='cuda:0', dtype=torch.float16), 0.16162109375)
Unit 619 -> (tensor(0.5361, device='cuda:0', dtype=torch.float16), 1.96142578125)
Unit 620 -> (tensor(0.8745, device='cuda:0', dtype=torch.float16), 1.900390625)
Unit 621 -> (tensor(0.9448, device='cuda:0', dtype=torch.float16), 1.4736328125)
Unit 622 -> (tensor(0.6299, device='cuda:0', dtype=torch.float16), 0.71240234375)
Unit 623 -> (tensor(0.4150, device='cuda:0', dtype=torch.float16), 0.1025390625)
Unit 624 -> (tensor(0.5146, device='cuda:0', dtype=torch.float16), 0.22314453125)
Unit 625 -> (tensor(0.9409, device='cuda:0', dtype=torch.float16), 1.93896484375)
Unit 626 -> (tensor(0.9536, device='cuda:0', dtype=torch.float16), 1.364990234375)
Unit 627 -> (tensor(0.8652, device='cuda:0', dtype=torch.float16), 1.8212890625)
Unit 628 -> (tensor(0.8535, device='cuda:0', dtype=torch.float16), 0.28173828125)
Unit 629 -> (tensor(0.5796, device='cuda:0', dtype=torch.float16), 0.19287109375)
Unit 630 -> (tensor(0.6392, device='cuda:0', dtype=torch.float16), 1.7880859375)
Unit 631 -> (tensor(0.7197, device='cuda:0', dtype=torch.float16), 0.126953125)
Unit 632 -> (tensor(0.6558, device='cuda:0', dtype=torch.float16), 0.58203125)
Unit 633 -> (tensor(0.8354, device='cuda:0', dtype=torch.float16), 1.11431884765625)
Unit 634 -> (tensor(0.4785, device='cuda:0', dtype=torch.float16), 1.724609375)
Unit 635 -> (tensor(0.3657, device='cuda:0', dtype=torch.float16), 1.77001953125)
Unit 636 -> (tensor(0.5166, device='cuda:0', dtype=torch.float16), 1.1796875)
Unit 637 -> (tensor(0.9663, device='cuda:0', dtype=torch.float16), 1.028350830078125)
Unit 638 -> (tensor(0.9150, device='cuda:0', dtype=torch.float16), 1.482666015625)
Unit 639 -> (tensor(0.3530, device='cuda:0', dtype=torch.float16), 0.45751953125)
Unit 640 -> (tensor(0.7280, device='cuda:0', dtype=torch.float16), 0.46630859375)
Unit 641 -> (tensor(0.2444, device='cuda:0', dtype=torch.float16), 0.23291015625)
Unit 642 -> (tensor(0.4587, device='cuda:0', dtype=torch.float16), 1.5810546875)
Unit 643 -> (tensor(0.5771, device='cuda:0', dtype=torch.float16), 0.61474609375)
Unit 644 -> (tensor(0.8457, device='cuda:0', dtype=torch.float16), 1.86474609375)
Unit 645 -> (tensor(0.3252, device='cuda:0', dtype=torch.float16), 1.289306640625)
Unit 646 -> (tensor(0.9517, device='cuda:0', dtype=torch.float16), 1.6171875)
Unit 647 -> (tensor(0.7764, device='cuda:0', dtype=torch.float16), 1.9033203125)
Unit 648 -> (tensor(0.5562, device='cuda:0', dtype=torch.float16), 1.295166015625)
Unit 649 -> (tensor(0.8862, device='cuda:0', dtype=torch.float16), 1.79541015625)
Unit 650 -> (tensor(0.9766, device='cuda:0', dtype=torch.float16), 0.8743896484375)
Unit 651 -> (tensor(0.6143, device='cuda:0', dtype=torch.float16), 0.068359375)
Unit 652 -> (tensor(0.5288, device='cuda:0', dtype=torch.float16), 0.10595703125)
Unit 653 -> (tensor(0.7642, device='cuda:0', dtype=torch.float16), 0.7540283203125)
Unit 654 -> (tensor(0.7588, device='cuda:0', dtype=torch.float16), 0.34228515625)
Unit 655 -> (tensor(0.7271, device='cuda:0', dtype=torch.float16), 1.81494140625)
Unit 656 -> (tensor(0.9478, device='cuda:0', dtype=torch.float16), 1.71826171875)
Unit 657 -> (tensor(0.5981, device='cuda:0', dtype=torch.float16), 0.653564453125)
Unit 658 -> (tensor(0.6646, device='cuda:0', dtype=torch.float16), 0.45361328125)
Unit 659 -> (tensor(0.5605, device='cuda:0', dtype=torch.float16), 1.231689453125)
Unit 660 -> (tensor(0.6719, device='cuda:0', dtype=torch.float16), 1.826171875)
Unit 661 -> (tensor(0.8032, device='cuda:0', dtype=torch.float16), 1.8017578125)
Unit 662 -> (tensor(0.7236, device='cuda:0', dtype=torch.float16), 1.05584716796875)
Unit 663 -> (tensor(0.9028, device='cuda:0', dtype=torch.float16), 1.2144775390625)
Unit 664 -> (tensor(0.6343, device='cuda:0', dtype=torch.float16), 1.8603515625)
Unit 665 -> (tensor(0.7354, device='cuda:0', dtype=torch.float16), 0.09619140625)
Unit 666 -> (tensor(0.3538, device='cuda:0', dtype=torch.float16), 1.91162109375)
Unit 667 -> (tensor(0.7153, device='cuda:0', dtype=torch.float16), 1.88818359375)
Unit 668 -> (tensor(0.6855, device='cuda:0', dtype=torch.float16), 1.71044921875)
Unit 669 -> (tensor(0.6152, device='cuda:0', dtype=torch.float16), 1.1593017578125)
Unit 670 -> (tensor(0.8354, device='cuda:0', dtype=torch.float16), 0.13525390625)
Unit 671 -> (tensor(0.9697, device='cuda:0', dtype=torch.float16), 1.18798828125)
Unit 672 -> (tensor(0.6616, device='cuda:0', dtype=torch.float16), 0.614990234375)
Unit 673 -> (tensor(0.7080, device='cuda:0', dtype=torch.float16), 1.70361328125)
Unit 674 -> (tensor(0.6479, device='cuda:0', dtype=torch.float16), 1.337158203125)
Unit 675 -> (tensor(0.5654, device='cuda:0', dtype=torch.float16), 1.155517578125)
Unit 676 -> (tensor(0.6655, device='cuda:0', dtype=torch.float16), 1.71923828125)
Unit 677 -> (tensor(0.7529, device='cuda:0', dtype=torch.float16), 0.05322265625)
Unit 678 -> (tensor(0.9194, device='cuda:0', dtype=torch.float16), 0.2197265625)
Unit 679 -> (tensor(0.8882, device='cuda:0', dtype=torch.float16), 0.169921875)
Unit 680 -> (tensor(0.4182, device='cuda:0', dtype=torch.float16), 0.0703125)
Unit 681 -> (tensor(0.6587, device='cuda:0', dtype=torch.float16), 0.18994140625)
Unit 682 -> (tensor(0.7261, device='cuda:0', dtype=torch.float16), 0.11474609375)
Unit 683 -> (tensor(0.9893, device='cuda:0', dtype=torch.float16), 1.198486328125)
Unit 684 -> (tensor(0.6870, device='cuda:0', dtype=torch.float16), 1.8583984375)
Unit 685 -> (tensor(0.9736, device='cuda:0', dtype=torch.float16), 1.413330078125)
Unit 686 -> (tensor(0.6606, device='cuda:0', dtype=torch.float16), 1.87646484375)
Unit 687 -> (tensor(0.9219, device='cuda:0', dtype=torch.float16), 1.2115478515625)
Unit 688 -> (tensor(0.9268, device='cuda:0', dtype=torch.float16), 1.7060546875)
Unit 689 -> (tensor(0.9312, device='cuda:0', dtype=torch.float16), 1.041412353515625)
Unit 690 -> (tensor(0.7339, device='cuda:0', dtype=torch.float16), 0.4580078125)
Unit 691 -> (tensor(0.4995, device='cuda:0', dtype=torch.float16), 0.9322509765625)
Unit 692 -> (tensor(0.7256, device='cuda:0', dtype=torch.float16), 1.8896484375)
Unit 693 -> (tensor(0.8481, device='cuda:0', dtype=torch.float16), 0.3359375)
Unit 694 -> (tensor(0.7964, device='cuda:0', dtype=torch.float16), 1.82861328125)
Unit 695 -> (tensor(0.5444, device='cuda:0', dtype=torch.float16), 1.873046875)
Unit 696 -> (tensor(0.4602, device='cuda:0', dtype=torch.float16), 1.3740234375)
Unit 697 -> (tensor(0.6924, device='cuda:0', dtype=torch.float16), 0.676025390625)
Unit 698 -> (tensor(0.7798, device='cuda:0', dtype=torch.float16), 0.06103515625)
Unit 699 -> (tensor(0.7842, device='cuda:0', dtype=torch.float16), 0.095703125)
Unit 700 -> (tensor(0.7095, device='cuda:0', dtype=torch.float16), 0.06494140625)
Unit 701 -> (tensor(0.7949, device='cuda:0', dtype=torch.float16), 0.07177734375)
Unit 702 -> (tensor(0.8472, device='cuda:0', dtype=torch.float16), 1.257080078125)
Unit 703 -> (tensor(0.5786, device='cuda:0', dtype=torch.float16), 1.873046875)
Unit 704 -> (tensor(0.5825, device='cuda:0', dtype=torch.float16), 0.21923828125)
Unit 705 -> (tensor(0.7222, device='cuda:0', dtype=torch.float16), 1.87841796875)
Unit 706 -> (tensor(0.6138, device='cuda:0', dtype=torch.float16), 0.959075927734375)
Unit 707 -> (tensor(0.9502, device='cuda:0', dtype=torch.float16), 1.60595703125)
Unit 708 -> (tensor(0.7114, device='cuda:0', dtype=torch.float16), 0.796630859375)
Unit 709 -> (tensor(0.5205, device='cuda:0', dtype=torch.float16), 0.1630859375)
Unit 710 -> (tensor(0.9097, device='cuda:0', dtype=torch.float16), 1.82177734375)
Unit 711 -> (tensor(0.8008, device='cuda:0', dtype=torch.float16), 0.65673828125)
Unit 712 -> (tensor(0.7642, device='cuda:0', dtype=torch.float16), 1.4443359375)
Unit 713 -> (tensor(0.6343, device='cuda:0', dtype=torch.float16), 0.15966796875)
Unit 714 -> (tensor(0.4031, device='cuda:0', dtype=torch.float16), 1.034698486328125)
Unit 715 -> (tensor(0.5776, device='cuda:0', dtype=torch.float16), 0.875244140625)
Unit 716 -> (tensor(0.4595, device='cuda:0', dtype=torch.float16), 1.646484375)
Unit 717 -> (tensor(0.8506, device='cuda:0', dtype=torch.float16), 0.8096923828125)
Unit 718 -> (tensor(0.6616, device='cuda:0', dtype=torch.float16), 0.11376953125)
Unit 719 -> (tensor(0.7163, device='cuda:0', dtype=torch.float16), 0.052734375)
Unit 720 -> (tensor(0.7158, device='cuda:0', dtype=torch.float16), 1.779296875)
Unit 721 -> (tensor(0.6685, device='cuda:0', dtype=torch.float16), 0.45263671875)
Unit 722 -> (tensor(0.8232, device='cuda:0', dtype=torch.float16), 0.12060546875)
Unit 723 -> (tensor(0.4236, device='cuda:0', dtype=torch.float16), 1.2059326171875)
Unit 724 -> (tensor(0.5293, device='cuda:0', dtype=torch.float16), 1.287353515625)
Unit 725 -> (tensor(0.9414, device='cuda:0', dtype=torch.float16), 0.3720703125)
Unit 726 -> (tensor(0.4968, device='cuda:0', dtype=torch.float16), 0.04150390625)
Unit 727 -> (tensor(0.5933, device='cuda:0', dtype=torch.float16), 0.07568359375)
Unit 728 -> (tensor(0.9717, device='cuda:0', dtype=torch.float16), 0.848388671875)
Unit 729 -> (tensor(0.8691, device='cuda:0', dtype=torch.float16), 0.32763671875)
Unit 730 -> (tensor(0.5396, device='cuda:0', dtype=torch.float16), 1.97802734375)
Unit 731 -> (tensor(0.7705, device='cuda:0', dtype=torch.float16), 0.9364013671875)
Unit 732 -> (tensor(0.7710, device='cuda:0', dtype=torch.float16), 0.173828125)
Unit 733 -> (tensor(0.4771, device='cuda:0', dtype=torch.float16), 0.9934768676757812)
Unit 734 -> (tensor(0.4246, device='cuda:0', dtype=torch.float16), 1.88818359375)
Unit 735 -> (tensor(0.5537, device='cuda:0', dtype=torch.float16), 0.583984375)
Unit 736 -> (tensor(0.4661, device='cuda:0', dtype=torch.float16), 1.0137176513671875)
Unit 737 -> (tensor(0.5249, device='cuda:0', dtype=torch.float16), 0.9395751953125)
Unit 738 -> (tensor(0.6382, device='cuda:0', dtype=torch.float16), 0.033203125)
Unit 739 -> (tensor(0.6768, device='cuda:0', dtype=torch.float16), 1.83447265625)
Unit 740 -> (tensor(0.6709, device='cuda:0', dtype=torch.float16), 0.13623046875)
Unit 741 -> (tensor(0.6240, device='cuda:0', dtype=torch.float16), 0.234375)
Unit 742 -> (tensor(0.5908, device='cuda:0', dtype=torch.float16), 0.35400390625)
Unit 743 -> (tensor(0.8882, device='cuda:0', dtype=torch.float16), 1.91455078125)
Unit 744 -> (tensor(0.9922, device='cuda:0', dtype=torch.float16), 0.740234375)
Unit 745 -> (tensor(0.7300, device='cuda:0', dtype=torch.float16), 1.46044921875)
Unit 746 -> (tensor(0.5000, device='cuda:0', dtype=torch.float16), 0.2958984375)
Unit 747 -> (tensor(0.3401, device='cuda:0', dtype=torch.float16), 0.59130859375)
Unit 748 -> (tensor(0.7051, device='cuda:0', dtype=torch.float16), 0.04541015625)
Unit 749 -> (tensor(0.6548, device='cuda:0', dtype=torch.float16), 0.662109375)
Unit 750 -> (tensor(0.9849, device='cuda:0', dtype=torch.float16), 0.693603515625)
Unit 751 -> (tensor(0.8706, device='cuda:0', dtype=torch.float16), 1.8017578125)
Unit 752 -> (tensor(0.6455, device='cuda:0', dtype=torch.float16), 0.78271484375)
Unit 753 -> (tensor(0.5142, device='cuda:0', dtype=torch.float16), 1.9404296875)
Unit 754 -> (tensor(0.7666, device='cuda:0', dtype=torch.float16), 1.055938720703125)
Unit 755 -> (tensor(0.6597, device='cuda:0', dtype=torch.float16), 0.624267578125)
Unit 756 -> (tensor(0.6299, device='cuda:0', dtype=torch.float16), 0.30126953125)
Unit 757 -> (tensor(0.5605, device='cuda:0', dtype=torch.float16), 1.66845703125)
Unit 758 -> (tensor(0.7095, device='cuda:0', dtype=torch.float16), 0.90850830078125)
Unit 759 -> (tensor(0.9419, device='cuda:0', dtype=torch.float16), 1.45751953125)
Unit 760 -> (tensor(0.8818, device='cuda:0', dtype=torch.float16), 0.12646484375)
Unit 761 -> (tensor(0.5620, device='cuda:0', dtype=torch.float16), 0.67236328125)
Unit 762 -> (tensor(0.4749, device='cuda:0', dtype=torch.float16), 1.6689453125)
Unit 763 -> (tensor(0.9429, device='cuda:0', dtype=torch.float16), 0.794189453125)
Unit 764 -> (tensor(0.6987, device='cuda:0', dtype=torch.float16), 1.6884765625)
Unit 765 -> (tensor(0.5708, device='cuda:0', dtype=torch.float16), 1.251220703125)
Unit 766 -> (tensor(0.9834, device='cuda:0', dtype=torch.float16), 1.433349609375)
Unit 767 -> (tensor(0.5581, device='cuda:0', dtype=torch.float16), 0.107421875)
Unit 768 -> (tensor(0.7251, device='cuda:0', dtype=torch.float16), 1.254150390625)
Unit 769 -> (tensor(0.7686, device='cuda:0', dtype=torch.float16), 1.921875)
Unit 770 -> (tensor(0.8726, device='cuda:0', dtype=torch.float16), 0.9928398132324219)
Unit 771 -> (tensor(0.6914, device='cuda:0', dtype=torch.float16), 1.3447265625)
Unit 772 -> (tensor(0.9004, device='cuda:0', dtype=torch.float16), 0.07080078125)
Unit 773 -> (tensor(0.5034, device='cuda:0', dtype=torch.float16), 1.75634765625)
Unit 774 -> (tensor(0.5176, device='cuda:0', dtype=torch.float16), 0.35302734375)
Unit 775 -> (tensor(0.8564, device='cuda:0', dtype=torch.float16), 1.95654296875)
Unit 776 -> (tensor(0.9331, device='cuda:0', dtype=torch.float16), 0.21337890625)
Unit 777 -> (tensor(0.6636, device='cuda:0', dtype=torch.float16), 0.04638671875)
Unit 778 -> (tensor(0.5205, device='cuda:0', dtype=torch.float16), 1.74658203125)
Unit 779 -> (tensor(0.6836, device='cuda:0', dtype=torch.float16), 1.91015625)
Unit 780 -> (tensor(0.6758, device='cuda:0', dtype=torch.float16), 1.95849609375)
Unit 781 -> (tensor(0.5879, device='cuda:0', dtype=torch.float16), 1.87548828125)
Unit 782 -> (tensor(0.7529, device='cuda:0', dtype=torch.float16), 0.03125)
Unit 783 -> (tensor(0.6904, device='cuda:0', dtype=torch.float16), 1.97314453125)
Unit 784 -> (tensor(0.7612, device='cuda:0', dtype=torch.float16), 1.396728515625)
Unit 785 -> (tensor(0.7554, device='cuda:0', dtype=torch.float16), 1.30908203125)
Unit 786 -> (tensor(0.7197, device='cuda:0', dtype=torch.float16), 0.1435546875)
Unit 787 -> (tensor(0.7051, device='cuda:0', dtype=torch.float16), 1.966796875)
Unit 788 -> (tensor(0.6333, device='cuda:0', dtype=torch.float16), 1.70166015625)
Unit 789 -> (tensor(0.6128, device='cuda:0', dtype=torch.float16), 1.89013671875)
Unit 790 -> (tensor(0.9375, device='cuda:0', dtype=torch.float16), 1.27099609375)
Unit 791 -> (tensor(0.5430, device='cuda:0', dtype=torch.float16), 1.67578125)
Unit 792 -> (tensor(0.7227, device='cuda:0', dtype=torch.float16), 0.03466796875)
Unit 793 -> (tensor(0.6685, device='cuda:0', dtype=torch.float16), 0.12939453125)
Unit 794 -> (tensor(0.7529, device='cuda:0', dtype=torch.float16), 0.09716796875)
Unit 795 -> (tensor(0.4165, device='cuda:0', dtype=torch.float16), 0.46337890625)
Unit 796 -> (tensor(0.6431, device='cuda:0', dtype=torch.float16), 1.268798828125)
Unit 797 -> (tensor(0.6172, device='cuda:0', dtype=torch.float16), 0.7353515625)
Unit 798 -> (tensor(0.9756, device='cuda:0', dtype=torch.float16), 1.70849609375)
Unit 799 -> (tensor(0.9277, device='cuda:0', dtype=torch.float16), 0.1572265625)
Unit 800 -> (tensor(0.7061, device='cuda:0', dtype=torch.float16), 0.7681884765625)
Unit 801 -> (tensor(0.7212, device='cuda:0', dtype=torch.float16), 1.1046142578125)
Unit 802 -> (tensor(0.8154, device='cuda:0', dtype=torch.float16), 1.5166015625)
Unit 803 -> (tensor(0.5840, device='cuda:0', dtype=torch.float16), 1.292724609375)
Unit 804 -> (tensor(0.5444, device='cuda:0', dtype=torch.float16), 0.66552734375)
Unit 805 -> (tensor(0.4937, device='cuda:0', dtype=torch.float16), 0.9719696044921875)
Unit 806 -> (tensor(0.8232, device='cuda:0', dtype=torch.float16), 0.0380859375)
Unit 807 -> (tensor(0.7749, device='cuda:0', dtype=torch.float16), 0.05224609375)
Unit 808 -> (tensor(0.7603, device='cuda:0', dtype=torch.float16), 1.8642578125)
Unit 809 -> (tensor(0.8105, device='cuda:0', dtype=torch.float16), 0.688232421875)
Unit 810 -> (tensor(0.4348, device='cuda:0', dtype=torch.float16), 0.3662109375)
Unit 811 -> (tensor(0.7822, device='cuda:0', dtype=torch.float16), 0.10693359375)
Unit 812 -> (tensor(0.6733, device='cuda:0', dtype=torch.float16), 0.81591796875)
Unit 813 -> (tensor(0.4558, device='cuda:0', dtype=torch.float16), 0.06640625)
Unit 814 -> (tensor(0.6021, device='cuda:0', dtype=torch.float16), 0.48193359375)
Unit 815 -> (tensor(0.4314, device='cuda:0', dtype=torch.float16), 0.8599853515625)
Unit 816 -> (tensor(0.8042, device='cuda:0', dtype=torch.float16), 0.23779296875)
Unit 817 -> (tensor(0.7891, device='cuda:0', dtype=torch.float16), 1.328857421875)
Unit 818 -> (tensor(0.6309, device='cuda:0', dtype=torch.float16), 0.19140625)
Unit 819 -> (tensor(0.4763, device='cuda:0', dtype=torch.float16), 1.96337890625)
Unit 820 -> (tensor(0.7700, device='cuda:0', dtype=torch.float16), 1.396728515625)
Unit 821 -> (tensor(0.8628, device='cuda:0', dtype=torch.float16), 1.79345703125)
Unit 822 -> (tensor(0.6362, device='cuda:0', dtype=torch.float16), 1.888671875)
Unit 823 -> (tensor(0.6489, device='cuda:0', dtype=torch.float16), 0.10400390625)
Unit 824 -> (tensor(0.8657, device='cuda:0', dtype=torch.float16), 0.9102783203125)
Unit 825 -> (tensor(0.5146, device='cuda:0', dtype=torch.float16), 0.2509765625)
Unit 826 -> (tensor(0.8438, device='cuda:0', dtype=torch.float16), 1.650390625)
Unit 827 -> (tensor(0.6484, device='cuda:0', dtype=torch.float16), 0.8326416015625)
Unit 828 -> (tensor(0.5488, device='cuda:0', dtype=torch.float16), 0.0263671875)
Unit 829 -> (tensor(0.4070, device='cuda:0', dtype=torch.float16), 1.416259765625)
Unit 830 -> (tensor(0.8350, device='cuda:0', dtype=torch.float16), 1.7109375)
Unit 831 -> (tensor(0.9780, device='cuda:0', dtype=torch.float16), 0.4228515625)
Unit 832 -> (tensor(0.6484, device='cuda:0', dtype=torch.float16), 1.025299072265625)
Unit 833 -> (tensor(0.4763, device='cuda:0', dtype=torch.float16), 1.662109375)
Unit 834 -> (tensor(0.2157, device='cuda:0', dtype=torch.float16), 1.334228515625)
Unit 835 -> (tensor(0.9512, device='cuda:0', dtype=torch.float16), 0.34228515625)
Unit 836 -> (tensor(0.5610, device='cuda:0', dtype=torch.float16), 1.92138671875)
Unit 837 -> (tensor(0.3784, device='cuda:0', dtype=torch.float16), 0.15576171875)
Unit 838 -> (tensor(0.6113, device='cuda:0', dtype=torch.float16), 1.88134765625)
Unit 839 -> (tensor(0.8076, device='cuda:0', dtype=torch.float16), 0.189453125)
Unit 840 -> (tensor(0.6992, device='cuda:0', dtype=torch.float16), 1.90234375)
Unit 841 -> (tensor(0.6182, device='cuda:0', dtype=torch.float16), 1.845703125)
Unit 842 -> (tensor(0.9478, device='cuda:0', dtype=torch.float16), 1.177978515625)
Unit 843 -> (tensor(0.7446, device='cuda:0', dtype=torch.float16), 1.7119140625)
Unit 844 -> (tensor(0.5581, device='cuda:0', dtype=torch.float16), 0.556884765625)
Unit 845 -> (tensor(0.7080, device='cuda:0', dtype=torch.float16), 1.67626953125)
Unit 846 -> (tensor(0.6069, device='cuda:0', dtype=torch.float16), 0.05126953125)
Unit 847 -> (tensor(0.5522, device='cuda:0', dtype=torch.float16), 0.28173828125)
Unit 848 -> (tensor(0.6997, device='cuda:0', dtype=torch.float16), 0.142578125)
Unit 849 -> (tensor(0.3655, device='cuda:0', dtype=torch.float16), 0.4580078125)
Unit 850 -> (tensor(0.4309, device='cuda:0', dtype=torch.float16), 1.15185546875)
Unit 851 -> (tensor(0.6357, device='cuda:0', dtype=torch.float16), 1.85693359375)
Unit 852 -> (tensor(0.5308, device='cuda:0', dtype=torch.float16), 0.705810546875)
Unit 853 -> (tensor(0.7671, device='cuda:0', dtype=torch.float16), 0.041015625)
Unit 854 -> (tensor(0.9473, device='cuda:0', dtype=torch.float16), 0.599365234375)
Unit 855 -> (tensor(0.5649, device='cuda:0', dtype=torch.float16), 0.1416015625)
Unit 856 -> (tensor(0.7817, device='cuda:0', dtype=torch.float16), 1.41943359375)
Unit 857 -> (tensor(0.3013, device='cuda:0', dtype=torch.float16), 0.41015625)
Unit 858 -> (tensor(0.7041, device='cuda:0', dtype=torch.float16), 0.05322265625)
Unit 859 -> (tensor(0.7944, device='cuda:0', dtype=torch.float16), 1.70751953125)
Unit 860 -> (tensor(0.8086, device='cuda:0', dtype=torch.float16), 1.59375)
Unit 861 -> (tensor(0.9653, device='cuda:0', dtype=torch.float16), 0.8201904296875)
Unit 862 -> (tensor(0.9717, device='cuda:0', dtype=torch.float16), 1.6025390625)
Unit 863 -> (tensor(0.7139, device='cuda:0', dtype=torch.float16), 0.51806640625)
Unit 864 -> (tensor(0.7251, device='cuda:0', dtype=torch.float16), 1.78662109375)
Unit 865 -> (tensor(0.8325, device='cuda:0', dtype=torch.float16), 1.440673828125)
Unit 866 -> (tensor(0.6621, device='cuda:0', dtype=torch.float16), 1.96044921875)
Unit 867 -> (tensor(0.7617, device='cuda:0', dtype=torch.float16), 0.1103515625)
Unit 868 -> (tensor(0.7515, device='cuda:0', dtype=torch.float16), 0.9102783203125)
Unit 869 -> (tensor(0.9194, device='cuda:0', dtype=torch.float16), 0.43994140625)
Unit 870 -> (tensor(0.7749, device='cuda:0', dtype=torch.float16), 1.75732421875)
Unit 871 -> (tensor(0.5879, device='cuda:0', dtype=torch.float16), 1.10223388671875)
Unit 872 -> (tensor(0.9487, device='cuda:0', dtype=torch.float16), 1.45068359375)
Unit 873 -> (tensor(0.5728, device='cuda:0', dtype=torch.float16), 0.29345703125)
Unit 874 -> (tensor(0.8120, device='cuda:0', dtype=torch.float16), 1.9482421875)
Unit 875 -> (tensor(0.8877, device='cuda:0', dtype=torch.float16), 1.9150390625)
Unit 876 -> (tensor(0.4116, device='cuda:0', dtype=torch.float16), 1.09771728515625)
Unit 877 -> (tensor(0.9600, device='cuda:0', dtype=torch.float16), 0.556640625)
Unit 878 -> (tensor(0.7466, device='cuda:0', dtype=torch.float16), 0.636962890625)
Unit 879 -> (tensor(0.6392, device='cuda:0', dtype=torch.float16), 1.51416015625)
Unit 880 -> (tensor(0.6650, device='cuda:0', dtype=torch.float16), 1.3408203125)
Unit 881 -> (tensor(0.5205, device='cuda:0', dtype=torch.float16), 0.31005859375)
Unit 882 -> (tensor(0.7559, device='cuda:0', dtype=torch.float16), 0.88385009765625)
Unit 883 -> (tensor(0.5127, device='cuda:0', dtype=torch.float16), 0.88702392578125)
Unit 884 -> (tensor(0.5718, device='cuda:0', dtype=torch.float16), 0.21923828125)
Unit 885 -> (tensor(0.7422, device='cuda:0', dtype=torch.float16), 1.0032081604003906)
Unit 886 -> (tensor(0.9419, device='cuda:0', dtype=torch.float16), 0.18505859375)
Unit 887 -> (tensor(0.6069, device='cuda:0', dtype=torch.float16), 1.068115234375)
Unit 888 -> (tensor(0.6123, device='cuda:0', dtype=torch.float16), 1.4453125)
Unit 889 -> (tensor(0.3047, device='cuda:0', dtype=torch.float16), 0.644775390625)
Unit 890 -> (tensor(0.7617, device='cuda:0', dtype=torch.float16), 0.51611328125)
Unit 891 -> (tensor(0.7212, device='cuda:0', dtype=torch.float16), 0.1005859375)
Unit 892 -> (tensor(0.9414, device='cuda:0', dtype=torch.float16), 1.8564453125)
Unit 893 -> (tensor(0.6953, device='cuda:0', dtype=torch.float16), 1.74560546875)
Unit 894 -> (tensor(0.8154, device='cuda:0', dtype=torch.float16), 1.50048828125)
Unit 895 -> (tensor(0.4897, device='cuda:0', dtype=torch.float16), 0.2060546875)
Unit 896 -> (tensor(0.6416, device='cuda:0', dtype=torch.float16), 1.7841796875)
Unit 897 -> (tensor(0.7046, device='cuda:0', dtype=torch.float16), 0.7633056640625)
Unit 898 -> (tensor(0.6870, device='cuda:0', dtype=torch.float16), 1.859375)
Unit 899 -> (tensor(0.6357, device='cuda:0', dtype=torch.float16), 0.17724609375)
Unit 900 -> (tensor(0.4937, device='cuda:0', dtype=torch.float16), 1.91845703125)
Unit 901 -> (tensor(0.8203, device='cuda:0', dtype=torch.float16), 0.7503662109375)
Unit 902 -> (tensor(0.6631, device='cuda:0', dtype=torch.float16), 1.95068359375)
Unit 903 -> (tensor(0.8301, device='cuda:0', dtype=torch.float16), 0.3310546875)
Unit 904 -> (tensor(0.4609, device='cuda:0', dtype=torch.float16), 0.506103515625)
Unit 905 -> (tensor(0.4404, device='cuda:0', dtype=torch.float16), 1.1011962890625)
Unit 906 -> (tensor(0.6470, device='cuda:0', dtype=torch.float16), 1.460693359375)
Unit 907 -> (tensor(0.5698, device='cuda:0', dtype=torch.float16), 0.12353515625)
Unit 908 -> (tensor(0.6211, device='cuda:0', dtype=torch.float16), 1.020355224609375)
Unit 909 -> (tensor(0.7397, device='cuda:0', dtype=torch.float16), 1.76171875)
Unit 910 -> (tensor(0.7285, device='cuda:0', dtype=torch.float16), 0.06787109375)
Unit 911 -> (tensor(0.7163, device='cuda:0', dtype=torch.float16), 0.13330078125)
Unit 912 -> (tensor(0.6553, device='cuda:0', dtype=torch.float16), 1.466796875)
Unit 913 -> (tensor(0.6519, device='cuda:0', dtype=torch.float16), 1.90576171875)
Unit 914 -> (tensor(0.6641, device='cuda:0', dtype=torch.float16), 1.966796875)
Unit 915 -> (tensor(0.9067, device='cuda:0', dtype=torch.float16), 0.3701171875)
Unit 916 -> (tensor(0.9585, device='cuda:0', dtype=torch.float16), 1.81689453125)
Unit 917 -> (tensor(0.7578, device='cuda:0', dtype=torch.float16), 0.09765625)
Unit 918 -> (tensor(0.5830, device='cuda:0', dtype=torch.float16), 1.416015625)
Unit 919 -> (tensor(0.6519, device='cuda:0', dtype=torch.float16), 1.435302734375)
Unit 920 -> (tensor(0.4841, device='cuda:0', dtype=torch.float16), 0.1767578125)
Unit 921 -> (tensor(0.7021, device='cuda:0', dtype=torch.float16), 0.64404296875)
Unit 922 -> (tensor(0.6963, device='cuda:0', dtype=torch.float16), 0.943023681640625)
Unit 923 -> (tensor(0.6299, device='cuda:0', dtype=torch.float16), 1.94970703125)
Unit 924 -> (tensor(0.6533, device='cuda:0', dtype=torch.float16), 1.484375)
Unit 925 -> (tensor(0.7349, device='cuda:0', dtype=torch.float16), 1.39501953125)
Unit 926 -> (tensor(0.8169, device='cuda:0', dtype=torch.float16), 1.1502685546875)
Unit 927 -> (tensor(0.6196, device='cuda:0', dtype=torch.float16), 0.670166015625)
Unit 928 -> (tensor(0.6338, device='cuda:0', dtype=torch.float16), 0.3017578125)
Unit 929 -> (tensor(0.6577, device='cuda:0', dtype=torch.float16), 0.08837890625)
Unit 930 -> (tensor(0.7500, device='cuda:0', dtype=torch.float16), 1.73583984375)
Unit 931 -> (tensor(0.3271, device='cuda:0', dtype=torch.float16), 0.1015625)
Unit 932 -> (tensor(0.7642, device='cuda:0', dtype=torch.float16), 0.1640625)
Unit 933 -> (tensor(0.7139, device='cuda:0', dtype=torch.float16), 0.605224609375)
Unit 934 -> (tensor(0.2786, device='cuda:0', dtype=torch.float16), 0.8216552734375)
Unit 935 -> (tensor(0.8203, device='cuda:0', dtype=torch.float16), 0.162109375)
Unit 936 -> (tensor(0.8101, device='cuda:0', dtype=torch.float16), 1.9013671875)
Unit 937 -> (tensor(0.5625, device='cuda:0', dtype=torch.float16), 1.9208984375)
Unit 938 -> (tensor(0.5107, device='cuda:0', dtype=torch.float16), 0.773681640625)
Unit 939 -> (tensor(0.5645, device='cuda:0', dtype=torch.float16), 1.61669921875)
Unit 940 -> (tensor(0.5684, device='cuda:0', dtype=torch.float16), 0.07763671875)
Unit 941 -> (tensor(0.7866, device='cuda:0', dtype=torch.float16), 1.91455078125)
Unit 942 -> (tensor(0.8867, device='cuda:0', dtype=torch.float16), 0.32421875)
Unit 943 -> (tensor(0.7539, device='cuda:0', dtype=torch.float16), 0.13671875)
Unit 944 -> (tensor(0.6606, device='cuda:0', dtype=torch.float16), 1.91162109375)
Unit 945 -> (tensor(0.7871, device='cuda:0', dtype=torch.float16), 0.10986328125)
Unit 946 -> (tensor(0.6021, device='cuda:0', dtype=torch.float16), 0.928955078125)
Unit 947 -> (tensor(0.4490, device='cuda:0', dtype=torch.float16), 0.23876953125)
Unit 948 -> (tensor(0.3335, device='cuda:0', dtype=torch.float16), 0.7677001953125)
Unit 949 -> (tensor(0.9287, device='cuda:0', dtype=torch.float16), 1.91162109375)
Unit 950 -> (tensor(0.7798, device='cuda:0', dtype=torch.float16), 1.033294677734375)
Unit 951 -> (tensor(0.6680, device='cuda:0', dtype=torch.float16), 0.07177734375)
Unit 952 -> (tensor(0.7397, device='cuda:0', dtype=torch.float16), 1.97412109375)
Unit 953 -> (tensor(0.6401, device='cuda:0', dtype=torch.float16), 0.500732421875)
Unit 954 -> (tensor(0.9390, device='cuda:0', dtype=torch.float16), 1.69677734375)
Unit 955 -> (tensor(0.3481, device='cuda:0', dtype=torch.float16), 1.55859375)
Unit 956 -> (tensor(0.8306, device='cuda:0', dtype=torch.float16), 1.8505859375)
Unit 957 -> (tensor(0.6514, device='cuda:0', dtype=torch.float16), 0.30224609375)
Unit 958 -> (tensor(0.4187, device='cuda:0', dtype=torch.float16), 0.41455078125)
Unit 959 -> (tensor(0.8125, device='cuda:0', dtype=torch.float16), 1.458251953125)
Unit 960 -> (tensor(0.7915, device='cuda:0', dtype=torch.float16), 1.828125)
Unit 961 -> (tensor(0.5869, device='cuda:0', dtype=torch.float16), 0.271484375)
Unit 962 -> (tensor(0.8237, device='cuda:0', dtype=torch.float16), 1.96044921875)
Unit 963 -> (tensor(0.6001, device='cuda:0', dtype=torch.float16), 0.4814453125)
Unit 964 -> (tensor(0.9521, device='cuda:0', dtype=torch.float16), 1.7275390625)
Unit 965 -> (tensor(0.5820, device='cuda:0', dtype=torch.float16), 0.51416015625)
Unit 966 -> (tensor(0.8599, device='cuda:0', dtype=torch.float16), 1.78125)
Unit 967 -> (tensor(0.9131, device='cuda:0', dtype=torch.float16), 1.70166015625)
Unit 968 -> (tensor(0.3909, device='cuda:0', dtype=torch.float16), 1.7373046875)
Unit 969 -> (tensor(0.7734, device='cuda:0', dtype=torch.float16), 1.91259765625)
Unit 970 -> (tensor(0.5820, device='cuda:0', dtype=torch.float16), 1.056304931640625)
Unit 971 -> (tensor(0.6147, device='cuda:0', dtype=torch.float16), 1.95947265625)
Unit 972 -> (tensor(0.9282, device='cuda:0', dtype=torch.float16), 1.163330078125)
Unit 973 -> (tensor(0.3909, device='cuda:0', dtype=torch.float16), 1.305419921875)
Unit 974 -> (tensor(0.5825, device='cuda:0', dtype=torch.float16), 1.08209228515625)
Unit 975 -> (tensor(0.5703, device='cuda:0', dtype=torch.float16), 0.8720703125)
Unit 976 -> (tensor(0.6904, device='cuda:0', dtype=torch.float16), 1.83349609375)
Unit 977 -> (tensor(0.9092, device='cuda:0', dtype=torch.float16), 1.7919921875)
Unit 978 -> (tensor(0.5806, device='cuda:0', dtype=torch.float16), 0.871826171875)
Unit 979 -> (tensor(0.8135, device='cuda:0', dtype=torch.float16), 1.77294921875)
Unit 980 -> (tensor(0.9155, device='cuda:0', dtype=torch.float16), 0.24560546875)
Unit 981 -> (tensor(0.6846, device='cuda:0', dtype=torch.float16), 1.27197265625)
Unit 982 -> (tensor(0.9497, device='cuda:0', dtype=torch.float16), 0.594482421875)
Unit 983 -> (tensor(0.9731, device='cuda:0', dtype=torch.float16), 1.60498046875)
Unit 984 -> (tensor(0.8628, device='cuda:0', dtype=torch.float16), 0.11181640625)
Unit 985 -> (tensor(0.7075, device='cuda:0', dtype=torch.float16), 0.10986328125)
Unit 986 -> (tensor(0.6147, device='cuda:0', dtype=torch.float16), 0.57861328125)
Unit 987 -> (tensor(0.4795, device='cuda:0', dtype=torch.float16), 1.71240234375)
Unit 988 -> (tensor(0.3567, device='cuda:0', dtype=torch.float16), 0.760498046875)
Unit 989 -> (tensor(0.9819, device='cuda:0', dtype=torch.float16), 1.0146102905273438)
Unit 990 -> (tensor(0.8857, device='cuda:0', dtype=torch.float16), 0.06005859375)
Unit 991 -> (tensor(0.4897, device='cuda:0', dtype=torch.float16), 0.0576171875)
Unit 992 -> (tensor(0.7168, device='cuda:0', dtype=torch.float16), 1.8271484375)
Unit 993 -> (tensor(0.6733, device='cuda:0', dtype=torch.float16), 1.94384765625)
Unit 994 -> (tensor(0.7153, device='cuda:0', dtype=torch.float16), 1.95068359375)
Unit 995 -> (tensor(0.6865, device='cuda:0', dtype=torch.float16), 1.7998046875)
Unit 996 -> (tensor(0.7363, device='cuda:0', dtype=torch.float16), 1.2098388671875)
Unit 997 -> (tensor(0.7842, device='cuda:0', dtype=torch.float16), 1.85791015625)
Unit 998 -> (tensor(0.4731, device='cuda:0', dtype=torch.float16), 1.24609375)
Unit 999 -> (tensor(0.4094, device='cuda:0', dtype=torch.float16), 0.30322265625)