This repository has been archived by the owner on Dec 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_run_allreduce_rocm_only_ucx_debug_dump.log
3268 lines (3267 loc) · 457 KB
/
test_run_allreduce_rocm_only_ucx_debug_dump.log
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
/# mpirun --allow-run-as-root -np 2 -H <rocm_0_ip>,<rocm_1_ip> -mca pml ucx -mca coll_ucc_enable 1 -mca coll_ucc_priority 100 -x UCX_LOG_LEVEL=DEBUG /test_allreduce
[1730380068.685085] [ip-rocm_0:1781 :0] debug.c:1154 UCX DEBUG using signal stack 0x72ab6b42b000 size 141824
[1730380068.686251] [ip-rocm_0:1781 :0] cpu.c:338 UCX DEBUG measured tsc frequency 2799.188 MHz after 1.00 ms
[1730380068.686305] [ip-rocm_0:1781 :0] init.c:120 UCX DEBUG /usr/lib/libucs.so.0 loaded at 0x72ab749f2000
[1730380068.686408] [ip-rocm_1:259 :0] debug.c:1154 UCX DEBUG using signal stack 0x70045c9ee000 size 141824
[1730380068.686347] [ip-rocm_0:1781 :0] init.c:122 UCX DEBUG cmd line: /test_allreduce
[1730380068.686370] [ip-rocm_0:1781 :0] module.c:72 UCX DEBUG ucs library path: /usr/lib/libucs.so.0
[1730380068.686376] [ip-rocm_0:1781 :0] module.c:280 UCX DEBUG loading modules for ucs
[1730380068.687109] [ip-rocm_1:259 :0] cpu.c:338 UCX DEBUG measured tsc frequency 2795.890 MHz after 0.51 ms
[1730380068.687140] [ip-rocm_1:259 :0] init.c:120 UCX DEBUG /usr/lib/libucs.so.0 loaded at 0x700465fb5000
[1730380068.687201] [ip-rocm_1:259 :0] init.c:122 UCX DEBUG cmd line: /test_allreduce
[1730380068.687227] [ip-rocm_1:259 :0] module.c:72 UCX DEBUG ucs library path: /usr/lib/libucs.so.0
[1730380068.687234] [ip-rocm_1:259 :0] module.c:280 UCX DEBUG loading modules for ucs
[1730380068.730763] [ip-rocm_0:1781 :0] time.c:22 UCX DEBUG arch clock frequency: 2799188000.00 Hz
[1730380068.730837] [ip-rocm_0:1781 :0] ucp_context.c:2255 UCX INFO Version 1.18.0 (loaded from /usr/lib/libucp.so.0)
[1730380068.730859] [ip-rocm_0:1781 :0] ucp_context.c:2013 UCX DEBUG estimated number of endpoints is 2
[1730380068.730872] [ip-rocm_0:1781 :0] ucp_context.c:2020 UCX DEBUG estimated number of endpoints per node is 1
[1730380068.730878] [ip-rocm_0:1781 :0] ucp_context.c:2031 UCX DEBUG estimated bcopy bandwidth is 7340032000.000000
[1730380068.730901] [ip-rocm_0:1781 :0] ucp_context.c:2090 UCX DEBUG allocation method[0] is md 'sysv'
[1730380068.730911] [ip-rocm_0:1781 :0] ucp_context.c:2090 UCX DEBUG allocation method[1] is md 'posix'
[1730380068.730920] [ip-rocm_0:1781 :0] ucp_context.c:2102 UCX DEBUG allocation method[2] is 'thp'
[1730380068.730930] [ip-rocm_0:1781 :0] ucp_context.c:2090 UCX DEBUG allocation method[3] is md '*'
[1730380068.730934] [ip-rocm_0:1781 :0] ucp_context.c:2102 UCX DEBUG allocation method[4] is 'mmap'
[1730380068.730946] [ip-rocm_0:1781 :0] ucp_context.c:2102 UCX DEBUG allocation method[5] is 'heap'
[1730380068.730965] [ip-rocm_0:1781 :0] module.c:280 UCX DEBUG loading modules for uct
[1730380068.731164] [ip-rocm_0:1781 :0] module.c:280 UCX DEBUG loading modules for uct_rocm
[1730380068.731408] [ip-rocm_0:1781 :0] numa.c:153 UCX DEBUG failed to discover numa node for device: /sys/devices/pci0000:00/0000:00:1e.0, status Success, parsed_node -1
[1730380068.731424] [ip-rocm_0:1781 :0] topo.c:298 UCX DEBUG added sys_dev 0 for bus id 00:1e.0
[1730380068.731813] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.731867] [ip-rocm_0:1781 :0] numa.c:153 UCX DEBUG failed to discover numa node for device: /sys/devices/pci0000:00/0000:00:05.0, status Success, parsed_node -1
[1730380068.731879] [ip-rocm_0:1781 :0] topo.c:298 UCX DEBUG added sys_dev 1 for bus id 00:05.0
[1730380068.731885] [ip-rocm_0:1781 :0] topo.c:552 UCX DEBUG ens5: bdf_name 0000:00:05.0 sys_dev 1
[1730380068.732015] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.732029] [ip-rocm_0:1781 :0] topo.c:556 UCX DEBUG lo: system device unknown
[1730380068.732143] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool rcache_mp: align 8, maxelems 4294967295, elemsize 144
[1730380068.732184] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x8a82b0 [id=18 ref 1] ???() to hash
[1730380068.732343] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 18 events 0x1 mode thread_spinlock
[1730380068.732408] [ip-rocm_0:1781 :0] module.c:280 UCX DEBUG loading modules for ucm
[1730380068.732466] [ip-rocm_1:259 :0] time.c:22 UCX DEBUG arch clock frequency: 2795890410.96 Hz
[1730380068.732542] [ip-rocm_1:259 :0] ucp_context.c:2255 UCX INFO Version 1.18.0 (loaded from /usr/lib/libucp.so.0)
[1730380068.732557] [ip-rocm_1:259 :0] ucp_context.c:2013 UCX DEBUG estimated number of endpoints is 2
[1730380068.732561] [ip-rocm_1:259 :0] ucp_context.c:2020 UCX DEBUG estimated number of endpoints per node is 1
[1730380068.732565] [ip-rocm_1:259 :0] ucp_context.c:2031 UCX DEBUG estimated bcopy bandwidth is 7340032000.000000
[1730380068.732579] [ip-rocm_1:259 :0] ucp_context.c:2090 UCX DEBUG allocation method[0] is md 'sysv'
[1730380068.732590] [ip-rocm_1:259 :0] ucp_context.c:2090 UCX DEBUG allocation method[1] is md 'posix'
[1730380068.732604] [ip-rocm_1:259 :0] ucp_context.c:2102 UCX DEBUG allocation method[2] is 'thp'
[1730380068.732617] [ip-rocm_1:259 :0] ucp_context.c:2090 UCX DEBUG allocation method[3] is md '*'
[1730380068.732620] [ip-rocm_1:259 :0] ucp_context.c:2102 UCX DEBUG allocation method[4] is 'mmap'
[1730380068.732623] [ip-rocm_1:259 :0] ucp_context.c:2102 UCX DEBUG allocation method[5] is 'heap'
[1730380068.732655] [ip-rocm_1:259 :0] module.c:280 UCX DEBUG loading modules for uct
[1730380068.732865] [ip-rocm_1:259 :0] module.c:280 UCX DEBUG loading modules for uct_rocm
[1730380068.733079] [ip-rocm_1:259 :0] numa.c:153 UCX DEBUG failed to discover numa node for device: /sys/devices/pci0000:00/0000:00:1e.0, status Success, parsed_node -1
[1730380068.733095] [ip-rocm_1:259 :0] topo.c:298 UCX DEBUG added sys_dev 0 for bus id 00:1e.0
[1730380068.733512] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.733564] [ip-rocm_1:259 :0] numa.c:153 UCX DEBUG failed to discover numa node for device: /sys/devices/pci0000:00/0000:00:05.0, status Success, parsed_node -1
[1730380068.733576] [ip-rocm_1:259 :0] topo.c:298 UCX DEBUG added sys_dev 1 for bus id 00:05.0
[1730380068.733581] [ip-rocm_1:259 :0] topo.c:552 UCX DEBUG ens5: bdf_name 0000:00:05.0 sys_dev 1
[1730380068.733724] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.733739] [ip-rocm_1:259 :0] topo.c:556 UCX DEBUG lo: system device unknown
[1730380068.733851] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool rcache_mp: align 8, maxelems 4294967295, elemsize 144
[1730380068.733891] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xb042b0 [id=18 ref 1] ???() to hash
[1730380068.734051] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 18 events 0x1 mode thread_spinlock
[1730380068.734110] [ip-rocm_1:259 :0] module.c:280 UCX DEBUG loading modules for ucm
[1730380068.740406] [ip-rocm_0:1781 :0] ucp_context.c:1711 UCX DEBUG register host memory on: self, tcp, rocm_cpy, cma
[1730380068.740425] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering cuda memory
[1730380068.740428] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering cuda-managed memory
[1730380068.740431] [ip-rocm_0:1781 :0] ucp_context.c:1711 UCX DEBUG register rocm memory on: rocm_cpy, rocm_ipc
[1730380068.740434] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering rocm-managed memory
[1730380068.740437] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering rdma memory
[1730380068.740440] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-host memory
[1730380068.740452] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-device memory
[1730380068.740459] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-managed memory
[1730380068.740489] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool rcache_mp: align 8, maxelems 4294967295, elemsize 144
[1730380068.740562] [ip-rocm_0:1781 :0] ucp_context.c:2327 UCX DEBUG created ucp context ucp_context_0 0x8a66d0 [7 mds 8 tls] features 0x1 tl bitmap 0xff 0x0
[1730380068.742238] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool self_msg_desc: align 64, maxelems 4294967295, elemsize 8200
[1730380068.742257] [ip-rocm_0:1781 :0] self.c:245 UCX DEBUG created self iface id 0x6b315db536a5d88d send_size 8192
[1730380068.742358] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[0]=0x8e1950 using self/memory on worker 0x8e32f0
[1730380068.742400] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_tx_buf_mp: align 64, maxelems 4294967295, elemsize 8205
[1730380068.742414] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_rx_buf_mp: align 64, maxelems 4294967295, elemsize 131090
[1730380068.742401] [ip-rocm_1:259 :0] ucp_context.c:1711 UCX DEBUG register host memory on: self, tcp, rocm_cpy, cma
[1730380068.742422] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering cuda memory
[1730380068.742426] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering cuda-managed memory
[1730380068.742429] [ip-rocm_1:259 :0] ucp_context.c:1711 UCX DEBUG register rocm memory on: rocm_cpy, rocm_ipc
[1730380068.742432] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering rocm-managed memory
[1730380068.742435] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering rdma memory
[1730380068.742438] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-host memory
[1730380068.742441] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-device memory
[1730380068.742444] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-managed memory
[1730380068.742573] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x8e0f40 [id=24 ref 1] ???() to hash
[1730380068.742602] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 24 events 0x5 mode thread_spinlock
[1730380068.742487] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool rcache_mp: align 8, maxelems 4294967295, elemsize 144
[1730380068.742623] [ip-rocm_0:1781 :0] tcp_iface.c:595 UCX DEBUG tcp_iface 0x8e2670: listening for connections (fd=24) on 10.0.4.136:60399 netif ens5
[1730380068.742677] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.742689] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.742565] [ip-rocm_1:259 :0] ucp_context.c:2327 UCX DEBUG created ucp context ucp_context_0 0xb026d0 [7 mds 8 tls] features 0x1 tl bitmap 0xff 0x0
[1730380068.742790] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.742874] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.742886] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.743068] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[1]=0x8e2670 using tcp/ens5 on worker 0x8e32f0
[1730380068.743099] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_tx_buf_mp: align 64, maxelems 4294967295, elemsize 8205
[1730380068.743103] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_rx_buf_mp: align 64, maxelems 4294967295, elemsize 131090
[1730380068.743205] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x908040 [id=26 ref 1] ???() to hash
[1730380068.743231] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 26 events 0x5 mode thread_spinlock
[1730380068.743240] [ip-rocm_0:1781 :0] tcp_iface.c:595 UCX DEBUG tcp_iface 0x9063d0: listening for connections (fd=26) on 127.0.0.1:55613 netif lo
[1730380068.743299] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.743314] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.743409] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.743424] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.743463] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[2]=0x9063d0 using tcp/lo on worker 0x8e32f0
[1730380068.743564] [ip-rocm_0:1781 :0] mm_sysv.c:97 UCX DEBUG mm failed to allocate 33023 bytes with hugetlb
[1730380068.743648] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool mm_recv_desc: align 64, maxelems 4294967295, elemsize 8368
[1730380068.743693] [ip-rocm_0:1781 :0] mm_sysv.c:97 UCX DEBUG mm failed to allocate 4292720 bytes with hugetlb
[1730380068.743728] [ip-rocm_0:1781 :0] mpool.c:281 UCX DEBUG mpool mm_recv_desc: allocated chunk 0x72aa683e7018 of 4296680 bytes with 512 elements
[1730380068.744471] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool self_msg_desc: align 64, maxelems 4294967295, elemsize 8200
[1730380068.744492] [ip-rocm_1:259 :0] self.c:245 UCX DEBUG created self iface id 0x99c0dfbb41b57fc2 send_size 8192
[1730380068.744507] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[0]=0xb3d950 using self/memory on worker 0xb3f2f0
[1730380068.744533] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_tx_buf_mp: align 64, maxelems 4294967295, elemsize 8205
[1730380068.744547] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_rx_buf_mp: align 64, maxelems 4294967295, elemsize 131090
[1730380068.744748] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xb3cf40 [id=24 ref 1] ???() to hash
[1730380068.744779] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 24 events 0x5 mode thread_spinlock
[1730380068.744796] [ip-rocm_1:259 :0] tcp_iface.c:595 UCX DEBUG tcp_iface 0xb3e670: listening for connections (fd=24) on 10.0.10.201:40375 netif ens5
[1730380068.744834] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.744858] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.744978] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.745079] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.745093] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.745270] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[1]=0xb3e670 using tcp/ens5 on worker 0xb3f2f0
[1730380068.745300] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_tx_buf_mp: align 64, maxelems 4294967295, elemsize 8205
[1730380068.745313] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_rx_buf_mp: align 64, maxelems 4294967295, elemsize 131090
[1730380068.745431] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xb64040 [id=26 ref 1] ???() to hash
[1730380068.745458] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 26 events 0x5 mode thread_spinlock
[1730380068.745465] [ip-rocm_1:259 :0] tcp_iface.c:595 UCX DEBUG tcp_iface 0xb623d0: listening for connections (fd=26) on 127.0.0.1:36177 netif lo
[1730380068.745491] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.745503] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.745512] [ip-rocm_0:1781 :0] mm_iface.c:730 UCX DEBUG created mm iface 0x907260 FIFO id 0x20028 va 0x72ab6a610000 size 36864 (128 x 256 elems)
[1730380068.745548] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[3]=0x907260 using sysv/memory on worker 0x8e32f0
[1730380068.745610] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.745624] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.745664] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[2]=0xb623d0 using tcp/lo on worker 0xb3f2f0
[1730380068.745686] [ip-rocm_0:1781 :0] mm_posix.c:572 UCX DEBUG allocated posix shared memory at 0x72ab6a607000 length 36864
[1730380068.745715] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool mm_recv_desc: align 64, maxelems 4294967295, elemsize 8368
[1730380068.745755] [ip-rocm_1:259 :0] mm_sysv.c:97 UCX DEBUG mm failed to allocate 33023 bytes with hugetlb
[1730380068.745856] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool mm_recv_desc: align 64, maxelems 4294967295, elemsize 8368
[1730380068.745896] [ip-rocm_1:259 :0] mm_sysv.c:97 UCX DEBUG mm failed to allocate 4292720 bytes with hugetlb
[1730380068.745930] [ip-rocm_1:259 :0] mpool.c:281 UCX DEBUG mpool mm_recv_desc: allocated chunk 0x700358de7018 of 4296680 bytes with 512 elements
[1730380068.747854] [ip-rocm_1:259 :0] mm_iface.c:730 UCX DEBUG created mm iface 0xb63260 FIFO id 0x2a va 0x70035afb8000 size 36864 (128 x 256 elems)
[1730380068.747900] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[3]=0xb63260 using sysv/memory on worker 0xb3f2f0
[1730380068.747828] [ip-rocm_0:1781 :0] mm_posix.c:338 UCX DEBUG shared memory mmap(addr=(nil), length=6291456, flags= HUGETLB, fd=30) failed: Invalid argument
[1730380068.747852] [ip-rocm_0:1781 :0] mm_posix.c:572 UCX DEBUG allocated posix shared memory at 0x72aa615e7000 length 4296704
[1730380068.747872] [ip-rocm_0:1781 :0] mpool.c:281 UCX DEBUG mpool mm_recv_desc: allocated chunk 0x72aa615e7018 of 4296680 bytes with 512 elements
[1730380068.748051] [ip-rocm_1:259 :0] mm_posix.c:572 UCX DEBUG allocated posix shared memory at 0x70035afaf000 length 36864
[1730380068.748083] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool mm_recv_desc: align 64, maxelems 4294967295, elemsize 8368
[1730380068.748615] [ip-rocm_0:1781 :0] mm_iface.c:730 UCX DEBUG created mm iface 0x908080 FIFO id 0xd0000007000006f5 va 0x72ab6a607000 size 36864 (128 x 256 elems)
[1730380068.748638] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[4]=0x908080 using posix/memory on worker 0x8e32f0
[1730380068.748658] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ROCM_COPY signal objects: align 64, maxelems 1024, elemsize 40
[1730380068.748679] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[5]=0x908af0 using rocm_copy/rocm_cpy on worker 0x8e32f0
[1730380068.748698] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ROCM_IPC signal objects: align 64, maxelems 1024, elemsize 40
[1730380068.748718] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[6]=0x909380 using rocm_ipc/rocm_ipc on worker 0x8e32f0
[1730380068.748750] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_scopy_iface_tx_mp: align 64, maxelems 4294967295, elemsize 736
[1730380068.748772] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[7]=0x90a2d0 using cma/memory on worker 0x8e32f0
[1730380068.748787] [ip-rocm_0:1781 :0] ucp_worker.c:1151 UCX DEBUG selected scalable tl bitmap: 0xff 0x0 (8 tls)
[1730380068.748813] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x8e0f80 [id=23 ref 1] ???() to hash
[1730380068.748875] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 23 events 0x0 mode thread_spinlock
[1730380068.748920] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.748938] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.749045] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.749110] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.749141] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.749197] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.749216] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.749331] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.749386] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.749398] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.749443] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.749463] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.749557] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.749622] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.749637] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.749687] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.749720] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.749804] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.749883] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.749898] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.749970] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.749990] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.750072] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.750139] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.750162] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.750183] [ip-rocm_1:259 :0] mm_posix.c:338 UCX DEBUG shared memory mmap(addr=(nil), length=6291456, flags= HUGETLB, fd=30) failed: Invalid argument
[1730380068.750205] [ip-rocm_1:259 :0] mm_posix.c:572 UCX DEBUG allocated posix shared memory at 0x7003589ce000 length 4296704
[1730380068.750214] [ip-rocm_1:259 :0] mpool.c:281 UCX DEBUG mpool mm_recv_desc: allocated chunk 0x7003589ce018 of 4296680 bytes with 512 elements
[1730380068.750212] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.750244] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.750357] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.750423] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.750436] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.750481] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.750501] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.750581] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.750633] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.750646] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.750704] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.750724] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.750825] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.750891] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.750919] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.750912] [ip-rocm_1:259 :0] mm_iface.c:730 UCX DEBUG created mm iface 0xb64080 FIFO id 0xd000000700000103 va 0x70035afaf000 size 36864 (128 x 256 elems)
[1730380068.750932] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[4]=0xb64080 using posix/memory on worker 0xb3f2f0
[1730380068.750975] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.750954] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ROCM_COPY signal objects: align 64, maxelems 1024, elemsize 40
[1730380068.751009] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.750980] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[5]=0xb64af0 using rocm_copy/rocm_cpy on worker 0xb3f2f0
[1730380068.751000] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ROCM_IPC signal objects: align 64, maxelems 1024, elemsize 40
[1730380068.751012] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[6]=0xb65380 using rocm_ipc/rocm_ipc on worker 0xb3f2f0
[1730380068.751057] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_scopy_iface_tx_mp: align 64, maxelems 4294967295, elemsize 736
[1730380068.751083] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[7]=0xb662d0 using cma/memory on worker 0xb3f2f0
[1730380068.751104] [ip-rocm_1:259 :0] ucp_worker.c:1151 UCX DEBUG selected scalable tl bitmap: 0xff 0x0 (8 tls)
[1730380068.751134] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xb3cf80 [id=23 ref 1] ???() to hash
[1730380068.751105] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.751165] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.751179] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.751235] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.751255] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.751163] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 23 events 0x0 mode thread_spinlock
[1730380068.751367] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.751468] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.751493] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.751421] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.751433] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.751478] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.751497] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.751597] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.751592] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.751646] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.751659] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.751721] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.751741] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.751675] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.751697] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.751751] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.751777] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.751814] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.751863] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.751915] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.751928] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.751895] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.751908] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.751953] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.751972] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.751974] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.751992] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.752067] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.752078] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.752148] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.752161] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.752150] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.752165] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.752241] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.752267] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.752212] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x908ab0 [id=25 ref 1] ???() to hash
[1730380068.752238] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 25 events 0x0 mode thread_spinlock
[1730380068.752291] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.752317] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.752355] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.752412] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.752425] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.752420] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.752434] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.752469] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.752488] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.752484] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.752503] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.752593] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.752607] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.752646] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.752677] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.752576] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.752762] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.752777] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.752644] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.752657] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.752702] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.752721] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.752809] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.752824] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.752843] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.752866] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.752878] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.752931] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.752955] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.752919] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.752931] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.753008] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.753027] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.753103] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.753116] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.753043] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.753102] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.753114] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.753175] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.753191] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.753157] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.753193] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.753287] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.753304] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.753329] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.753364] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.753385] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.753384] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.753402] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.753443] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.753471] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.753494] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.753508] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.753561] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.753554] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.753573] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.753625] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.753641] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.753671] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.753685] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.753707] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.753750] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.753734] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.753753] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.753859] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.753821] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.753926] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.753942] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.753849] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.754000] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.754035] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.753904] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.753929] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.754133] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.754008] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.754020] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.754232] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.754255] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.754058] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.754074] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.754314] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.754342] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.754141] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.754155] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.754431] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.754200] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.754219] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.754493] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.754508] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.754314] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.754327] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.754565] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.754595] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.754368] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.754385] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.754692] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.754754] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.754761] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.754847] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xb64ab0 [id=25 ref 1] ???() to hash
[1730380068.754874] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 25 events 0x0 mode thread_spinlock
[1730380068.754890] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.754453] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.754467] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.754917] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.754508] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x90a160 [id=27 ref 1] ???() to hash
[1730380068.754532] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 27 events 0x0 mode thread_spinlock
[1730380068.755020] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.755034] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.754554] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x90a1a0 [id=29 ref 1] ???() to hash
[1730380068.754573] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 29 events 0x0 mode thread_spinlock
[1730380068.755094] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.755127] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.754598] [ip-rocm_0:1781 :0] tcp_sockcm.c:225 UCX DEBUG created tcp_sockcm 0x90a960
[1730380068.754736] [ip-rocm_0:1781 :0] ucp_ep.c:405 UCX DEBUG created ep 0x72aa6986e000 to <no debug data> mem_type_ep:rocm
[1730380068.754901] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for tag/rndv
[1730380068.754953] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/ats
[1730380068.754996] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.755234] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.755248] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.755026] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.755039] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.755055] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.755069] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.755298] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.755112] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.755132] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.755146] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.755327] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.755171] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.755425] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.755439] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.755201] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.755230] [ip-rocm_0:1781 :0] wireup.c:1214 UCX DEBUG ep 0x72aa6986e000: am_lane <none> wireup_msg_lane <none> cm_lane <none> keepalive_lane <none> reachable_mds 0x10
[1730380068.755246] [ip-rocm_0:1781 :0] wireup.c:1237 UCX DEBUG ep 0x72aa6986e000: lane[0]: 5:rocm_copy/rocm_cpy.0 md[4] -> addr[0].md[4]/rocm_cpy/sysdev[0] seg 4294967295 rma_bw#0
[1730380068.755258] [ip-rocm_0:1781 :0] wireup.c:1240 UCX DEBUG ep 0x72aa6986e000: err mode 0, flags 0x1
[1730380068.755487] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.755507] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.755400] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_requests: align 64, maxelems 4294967295, elemsize 440
[1730380068.755416] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_rkeys: align 64, maxelems 4294967295, elemsize 112
[1730380068.755420] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_reg_bufs: align 64, maxelems 4294967295, elemsize 8216
[1730380068.755446] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_am_bufs: align 64, maxelems 4294967295, elemsize 153
[1730380068.755460] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_am_bufs: align 64, maxelems 4294967295, elemsize 1113
[1730380068.755464] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_am_bufs: align 64, maxelems 4294967295, elemsize 65625
[1730380068.755472] [ip-rocm_0:1781 :0] mpool_set.c:129 UCX DEBUG mpool_set:ucp_am_bufs, sizes map 0x80000440, largest size 65536, mpools num 3
[1730380068.755593] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.755614] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.755496] [ip-rocm_0:1781 :0] parser.c:2315 UCX INFO UCX_* env variable: UCX_LOG_LEVEL=DEBUG
[1730380068.755681] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.755699] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.755768] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.755788] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.755845] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.755872] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.755959] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.755972] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.756014] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.756033] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.756126] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.756140] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.756210] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.756236] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.756325] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.756338] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.756380] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.756399] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.756492] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.756505] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.756555] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.756574] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.756653] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.756666] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.756712] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.756730] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.756805] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.756817] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.756893] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.756920] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.757025] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.757038] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.757079] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.757095] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.757186] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.757200] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.757250] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xb66160 [id=27 ref 1] ???() to hash
[1730380068.757272] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 27 events 0x0 mode thread_spinlock
[1730380068.757295] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xb661a0 [id=29 ref 1] ???() to hash
[1730380068.757322] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 29 events 0x0 mode thread_spinlock
[1730380068.757355] [ip-rocm_1:259 :0] tcp_sockcm.c:225 UCX DEBUG created tcp_sockcm 0xb66960
[1730380068.757541] [ip-rocm_1:259 :0] ucp_ep.c:405 UCX DEBUG created ep 0x70035af5a000 to <no debug data> mem_type_ep:rocm
[1730380068.757727] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for tag/rndv
[1730380068.757787] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/ats
[1730380068.757802] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.757833] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.757847] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.757862] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.757876] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.757920] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.757940] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.757954] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.757976] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.757988] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.758005] [ip-rocm_1:259 :0] wireup.c:1214 UCX DEBUG ep 0x70035af5a000: am_lane <none> wireup_msg_lane <none> cm_lane <none> keepalive_lane <none> reachable_mds 0x10
[1730380068.758022] [ip-rocm_1:259 :0] wireup.c:1237 UCX DEBUG ep 0x70035af5a000: lane[0]: 5:rocm_copy/rocm_cpy.0 md[4] -> addr[0].md[4]/rocm_cpy/sysdev[0] seg 4294967295 rma_bw#0
[1730380068.758028] [ip-rocm_1:259 :0] wireup.c:1240 UCX DEBUG ep 0x70035af5a000: err mode 0, flags 0x1
[1730380068.758210] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ucp_requests: align 64, maxelems 4294967295, elemsize 440
[1730380068.758225] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ucp_rkeys: align 64, maxelems 4294967295, elemsize 112
[1730380068.758229] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ucp_reg_bufs: align 64, maxelems 4294967295, elemsize 8216
[1730380068.758241] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ucp_am_bufs: align 64, maxelems 4294967295, elemsize 153
[1730380068.758245] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ucp_am_bufs: align 64, maxelems 4294967295, elemsize 1113
[1730380068.758249] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ucp_am_bufs: align 64, maxelems 4294967295, elemsize 65625
[1730380068.758254] [ip-rocm_1:259 :0] mpool_set.c:129 UCX DEBUG mpool_set:ucp_am_bufs, sizes map 0x80000440, largest size 65536, mpools num 3
[1730380068.758277] [ip-rocm_1:259 :0] parser.c:2315 UCX INFO UCX_* env variable: UCX_LOG_LEVEL=DEBUG
[1730380068.759814] [ip-rocm_1:259 :0] ucp_ep.c:405 UCX DEBUG created ep 0x70035af5a060 to <no debug data> from api call
[1730380068.759692] [ip-rocm_0:1781 :0] ucp_ep.c:405 UCX DEBUG created ep 0x72aa6986e060 to <no debug data> from api call
[1730380068.759798] [ip-rocm_0:1781 :0] ucp_worker.c:1903 UCX INFO ucp_context_0 self cfg#1 tag(self/memory cma/memory rocm_copy/rocm_cpy)
[1730380068.759923] [ip-rocm_1:259 :0] ucp_worker.c:1903 UCX INFO ucp_context_0 self cfg#1 tag(self/memory cma/memory rocm_copy/rocm_cpy)
[1730380068.760544] [ip-rocm_1:259 :0] wireup.c:1214 UCX DEBUG ep 0x70035af5a060: am_lane 0 wireup_msg_lane <none> cm_lane <none> keepalive_lane <none> reachable_mds 0x5f
[1730380068.760563] [ip-rocm_1:259 :0] wireup.c:1237 UCX DEBUG ep 0x70035af5a060: lane[0]: 0:self/memory.0 md[0] -> addr[0].md[0]/self/sysdev[255] seg 4294967295 am rkey_ptr am_bw#0
[1730380068.760576] [ip-rocm_1:259 :0] wireup.c:1237 UCX DEBUG ep 0x70035af5a060: lane[1]: 7:cma/memory.0 md[6] -> addr[7].md[6]/cma/sysdev[255] seg 4294967295 rma_bw#0
[1730380068.760450] [ip-rocm_0:1781 :0] wireup.c:1214 UCX DEBUG ep 0x72aa6986e060: am_lane 0 wireup_msg_lane <none> cm_lane <none> keepalive_lane <none> reachable_mds 0x5f
[1730380068.760470] [ip-rocm_0:1781 :0] wireup.c:1237 UCX DEBUG ep 0x72aa6986e060: lane[0]: 0:self/memory.0 md[0] -> addr[0].md[0]/self/sysdev[255] seg 4294967295 am rkey_ptr am_bw#0
[1730380068.760477] [ip-rocm_0:1781 :0] wireup.c:1237 UCX DEBUG ep 0x72aa6986e060: lane[1]: 7:cma/memory.0 md[6] -> addr[7].md[6]/cma/sysdev[255] seg 4294967295 rma_bw#0
[1730380068.760482] [ip-rocm_0:1781 :0] wireup.c:1237 UCX DEBUG ep 0x72aa6986e060: lane[2]: 5:rocm_copy/rocm_cpy.0 md[4] -> addr[5].md[4]/rocm_cpy/sysdev[0] seg 4294967295 rma_bw#1
[1730380068.760487] [ip-rocm_0:1781 :0] wireup.c:1240 UCX DEBUG ep 0x72aa6986e060: err mode 0, flags 0x1
[1730380068.760582] [ip-rocm_1:259 :0] wireup.c:1237 UCX DEBUG ep 0x70035af5a060: lane[2]: 5:rocm_copy/rocm_cpy.0 md[4] -> addr[5].md[4]/rocm_cpy/sysdev[0] seg 4294967295 rma_bw#1
[1730380068.760589] [ip-rocm_1:259 :0] wireup.c:1240 UCX DEBUG ep 0x70035af5a060: err mode 0, flags 0x1
[1730380068.767437] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ec cpu executors: align 64, maxelems 4294967295, elemsize 24
[1730380068.767454] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ec cpu executor tasks: align 64, maxelems 4294967295, elemsize 272
[1730380068.767468] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ROCM Event Objects: align 64, maxelems 4294967295, elemsize 16
[1730380068.767479] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool EE executor Objects: align 64, maxelems 4294967295, elemsize 112
[1730380068.767482] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool interruptible executor tasks: align 64, maxelems 4294967295, elemsize 280
[1730380068.767536] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool stub_tasks: align 64, maxelems 4294967295, elemsize 448
[1730380068.767624] [ip-rocm_0:1781 :0] ucp_context.c:2255 UCX INFO Version 1.18.0 (loaded from /usr/lib/libucp.so.0)
[1730380068.767637] [ip-rocm_0:1781 :0] ucp_context.c:2013 UCX DEBUG estimated number of endpoints is 2
[1730380068.767641] [ip-rocm_0:1781 :0] ucp_context.c:2020 UCX DEBUG estimated number of endpoints per node is 1
[1730380068.767655] [ip-rocm_0:1781 :0] ucp_context.c:2031 UCX DEBUG estimated bcopy bandwidth is 7340032000.000000
[1730380068.767667] [ip-rocm_0:1781 :0] ucp_context.c:2090 UCX DEBUG allocation method[0] is md 'sysv'
[1730380068.767671] [ip-rocm_0:1781 :0] ucp_context.c:2090 UCX DEBUG allocation method[1] is md 'posix'
[1730380068.767683] [ip-rocm_0:1781 :0] ucp_context.c:2102 UCX DEBUG allocation method[2] is 'thp'
[1730380068.767687] [ip-rocm_0:1781 :0] ucp_context.c:2090 UCX DEBUG allocation method[3] is md '*'
[1730380068.767698] [ip-rocm_0:1781 :0] ucp_context.c:2102 UCX DEBUG allocation method[4] is 'mmap'
[1730380068.767702] [ip-rocm_0:1781 :0] ucp_context.c:2102 UCX DEBUG allocation method[5] is 'heap'
[1730380068.767850] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ec cpu executors: align 64, maxelems 4294967295, elemsize 24
[1730380068.767869] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ec cpu executor tasks: align 64, maxelems 4294967295, elemsize 272
[1730380068.767883] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ROCM Event Objects: align 64, maxelems 4294967295, elemsize 16
[1730380068.767895] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool EE executor Objects: align 64, maxelems 4294967295, elemsize 112
[1730380068.767900] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool interruptible executor tasks: align 64, maxelems 4294967295, elemsize 280
[1730380068.767972] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool stub_tasks: align 64, maxelems 4294967295, elemsize 448
[1730380068.768080] [ip-rocm_1:259 :0] ucp_context.c:2255 UCX INFO Version 1.18.0 (loaded from /usr/lib/libucp.so.0)
[1730380068.768103] [ip-rocm_1:259 :0] ucp_context.c:2013 UCX DEBUG estimated number of endpoints is 2
[1730380068.768107] [ip-rocm_1:259 :0] ucp_context.c:2020 UCX DEBUG estimated number of endpoints per node is 1
[1730380068.768113] [ip-rocm_1:259 :0] ucp_context.c:2031 UCX DEBUG estimated bcopy bandwidth is 7340032000.000000
[1730380068.768126] [ip-rocm_1:259 :0] ucp_context.c:2090 UCX DEBUG allocation method[0] is md 'sysv'
[1730380068.768047] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.768067] [ip-rocm_0:1781 :0] topo.c:552 UCX DEBUG ens5: bdf_name 0000:00:05.0 sys_dev 1
[1730380068.768131] [ip-rocm_1:259 :0] ucp_context.c:2090 UCX DEBUG allocation method[1] is md 'posix'
[1730380068.768135] [ip-rocm_1:259 :0] ucp_context.c:2102 UCX DEBUG allocation method[2] is 'thp'
[1730380068.768147] [ip-rocm_1:259 :0] ucp_context.c:2090 UCX DEBUG allocation method[3] is md '*'
[1730380068.768151] [ip-rocm_1:259 :0] ucp_context.c:2102 UCX DEBUG allocation method[4] is 'mmap'
[1730380068.768155] [ip-rocm_1:259 :0] ucp_context.c:2102 UCX DEBUG allocation method[5] is 'heap'
[1730380068.768190] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.768205] [ip-rocm_0:1781 :0] topo.c:556 UCX DEBUG lo: system device unknown
[1730380068.768300] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool rcache_mp: align 8, maxelems 4294967295, elemsize 144
[1730380068.768410] [ip-rocm_0:1781 :0] ucp_context.c:1711 UCX DEBUG register host memory on: self, tcp, rocm_cpy, cma
[1730380068.768425] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering cuda memory
[1730380068.768429] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering cuda-managed memory
[1730380068.768433] [ip-rocm_0:1781 :0] ucp_context.c:1711 UCX DEBUG register rocm memory on: rocm_cpy, rocm_ipc
[1730380068.768437] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering rocm-managed memory
[1730380068.768441] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering rdma memory
[1730380068.768452] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-host memory
[1730380068.768457] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-device memory
[1730380068.768461] [ip-rocm_0:1781 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-managed memory
[1730380068.768480] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool rcache_mp: align 8, maxelems 4294967295, elemsize 144
[1730380068.768557] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.768576] [ip-rocm_1:259 :0] topo.c:552 UCX DEBUG ens5: bdf_name 0000:00:05.0 sys_dev 1
[1730380068.768576] [ip-rocm_0:1781 :0] ucp_context.c:2327 UCX DEBUG created ucp context UCC_UCP_CONTEXT 0x979470 [7 mds 8 tls] features 0x41 tl bitmap 0xff 0x0
[1730380068.768711] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.768725] [ip-rocm_1:259 :0] topo.c:556 UCX DEBUG lo: system device unknown
[1730380068.768696] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool self_msg_desc: align 64, maxelems 4294967295, elemsize 8200
[1730380068.768712] [ip-rocm_0:1781 :0] self.c:245 UCX DEBUG created self iface id 0xcd3e3e27e95a2c8a send_size 8192
[1730380068.768720] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[0]=0x89d690 using self/memory on worker 0x9b9960
[1730380068.768798] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool rcache_mp: align 8, maxelems 4294967295, elemsize 144
[1730380068.768750] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_tx_buf_mp: align 64, maxelems 4294967295, elemsize 8205
[1730380068.768763] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_rx_buf_mp: align 64, maxelems 4294967295, elemsize 131090
[1730380068.768857] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x979410 [id=33 ref 1] ???() to hash
[1730380068.768883] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 33 events 0x5 mode thread_spinlock
[1730380068.768898] [ip-rocm_0:1781 :0] tcp_iface.c:595 UCX DEBUG tcp_iface 0x89e140: listening for connections (fd=33) on 10.0.4.136:40167 netif ens5
[1730380068.768927] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.768917] [ip-rocm_1:259 :0] ucp_context.c:1711 UCX DEBUG register host memory on: self, tcp, rocm_cpy, cma
[1730380068.768939] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering cuda memory
[1730380068.768943] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering cuda-managed memory
[1730380068.768947] [ip-rocm_1:259 :0] ucp_context.c:1711 UCX DEBUG register rocm memory on: rocm_cpy, rocm_ipc
[1730380068.768960] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering rocm-managed memory
[1730380068.768964] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering rdma memory
[1730380068.768968] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-host memory
[1730380068.768939] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.768973] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-device memory
[1730380068.768985] [ip-rocm_1:259 :0] ucp_context.c:1699 UCX DEBUG no memory domain supports registering ze-managed memory
[1730380068.768996] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool rcache_mp: align 8, maxelems 4294967295, elemsize 144
[1730380068.769033] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.769109] [ip-rocm_1:259 :0] ucp_context.c:2327 UCX DEBUG created ucp context UCC_UCP_CONTEXT 0xbd55a0 [7 mds 8 tls] features 0x41 tl bitmap 0xff 0x0
[1730380068.769263] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool self_msg_desc: align 64, maxelems 4294967295, elemsize 8200
[1730380068.769278] [ip-rocm_1:259 :0] self.c:245 UCX DEBUG created self iface id 0x259f2225d082f3ae send_size 8192
[1730380068.769285] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[0]=0xaf9690 using self/memory on worker 0xc15a90
[1730380068.769103] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.769116] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.769313] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_tx_buf_mp: align 64, maxelems 4294967295, elemsize 8205
[1730380068.769328] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_rx_buf_mp: align 64, maxelems 4294967295, elemsize 131090
[1730380068.769159] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[1]=0x89e140 using tcp/ens5 on worker 0x9b9960
[1730380068.769192] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_tx_buf_mp: align 64, maxelems 4294967295, elemsize 8205
[1730380068.769206] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_rx_buf_mp: align 64, maxelems 4294967295, elemsize 131090
[1730380068.769314] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x9793d0 [id=35 ref 1] ???() to hash
[1730380068.769337] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 35 events 0x5 mode thread_spinlock
[1730380068.769343] [ip-rocm_0:1781 :0] tcp_iface.c:595 UCX DEBUG tcp_iface 0x89e8d0: listening for connections (fd=35) on 127.0.0.1:38925 netif lo
[1730380068.769370] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.769441] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xbd5540 [id=33 ref 1] ???() to hash
[1730380068.769474] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 33 events 0x5 mode thread_spinlock
[1730380068.769488] [ip-rocm_1:259 :0] tcp_iface.c:595 UCX DEBUG tcp_iface 0xafa140: listening for connections (fd=33) on 10.0.10.201:44793 netif ens5
[1730380068.769390] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.769512] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.769538] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.769639] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.769469] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.769484] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.769531] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[2]=0x89e8d0 using tcp/lo on worker 0x9b9960
[1730380068.769572] [ip-rocm_0:1781 :0] mm_sysv.c:97 UCX DEBUG mm failed to allocate 33023 bytes with hugetlb
[1730380068.769627] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool mm_recv_desc: align 64, maxelems 4294967295, elemsize 8368
[1730380068.769716] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.769735] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.769659] [ip-rocm_0:1781 :0] mm_sysv.c:97 UCX DEBUG mm failed to allocate 4292720 bytes with hugetlb
[1730380068.769694] [ip-rocm_0:1781 :0] mpool.c:281 UCX DEBUG mpool mm_recv_desc: allocated chunk 0x72aa611ce018 of 4296680 bytes with 512 elements
[1730380068.769780] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[1]=0xafa140 using tcp/ens5 on worker 0xc15a90
[1730380068.769820] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_tx_buf_mp: align 64, maxelems 4294967295, elemsize 8205
[1730380068.769835] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_tcp_iface_rx_buf_mp: align 64, maxelems 4294967295, elemsize 131090
[1730380068.769927] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xbd5500 [id=35 ref 1] ???() to hash
[1730380068.769955] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 35 events 0x5 mode thread_spinlock
[1730380068.769970] [ip-rocm_1:259 :0] tcp_iface.c:595 UCX DEBUG tcp_iface 0xafa8d0: listening for connections (fd=35) on 127.0.0.1:58257 netif lo
[1730380068.769991] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.770011] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.770099] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.770114] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.770165] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[2]=0xafa8d0 using tcp/lo on worker 0xc15a90
[1730380068.770219] [ip-rocm_1:259 :0] mm_sysv.c:97 UCX DEBUG mm failed to allocate 33023 bytes with hugetlb
[1730380068.770292] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool mm_recv_desc: align 64, maxelems 4294967295, elemsize 8368
[1730380068.770334] [ip-rocm_1:259 :0] mm_sysv.c:97 UCX DEBUG mm failed to allocate 4292720 bytes with hugetlb
[1730380068.770380] [ip-rocm_1:259 :0] mpool.c:281 UCX DEBUG mpool mm_recv_desc: allocated chunk 0x7003585b5018 of 4296680 bytes with 512 elements
[1730380068.771445] [ip-rocm_0:1781 :0] mm_iface.c:730 UCX DEBUG created mm iface 0x976ea0 FIFO id 0x2002b va 0x72aa6989b000 size 36864 (128 x 256 elems)
[1730380068.771467] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[3]=0x976ea0 using sysv/memory on worker 0x9b9960
[1730380068.771591] [ip-rocm_0:1781 :0] mm_posix.c:572 UCX DEBUG allocated posix shared memory at 0x72aa69892000 length 36864
[1730380068.771620] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool mm_recv_desc: align 64, maxelems 4294967295, elemsize 8368
[1730380068.772112] [ip-rocm_1:259 :0] mm_iface.c:730 UCX DEBUG created mm iface 0xbd2fd0 FIFO id 0x2d va 0x70035ae2e000 size 36864 (128 x 256 elems)
[1730380068.772134] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[3]=0xbd2fd0 using sysv/memory on worker 0xc15a90
[1730380068.772297] [ip-rocm_1:259 :0] mm_posix.c:572 UCX DEBUG allocated posix shared memory at 0x70035ae25000 length 36864
[1730380068.772324] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool mm_recv_desc: align 64, maxelems 4294967295, elemsize 8368
[1730380068.773721] [ip-rocm_0:1781 :0] mm_posix.c:338 UCX DEBUG shared memory mmap(addr=(nil), length=6291456, flags= HUGETLB, fd=39) failed: Invalid argument
[1730380068.773749] [ip-rocm_0:1781 :0] mm_posix.c:572 UCX DEBUG allocated posix shared memory at 0x72aa60db5000 length 4296704
[1730380068.773768] [ip-rocm_0:1781 :0] mpool.c:281 UCX DEBUG mpool mm_recv_desc: allocated chunk 0x72aa60db5018 of 4296680 bytes with 512 elements
[1730380068.774499] [ip-rocm_1:259 :0] mm_posix.c:338 UCX DEBUG shared memory mmap(addr=(nil), length=6291456, flags= HUGETLB, fd=39) failed: Invalid argument
[1730380068.774528] [ip-rocm_1:259 :0] mm_posix.c:572 UCX DEBUG allocated posix shared memory at 0x70035819c000 length 4296704
[1730380068.774538] [ip-rocm_1:259 :0] mpool.c:281 UCX DEBUG mpool mm_recv_desc: allocated chunk 0x70035819c018 of 4296680 bytes with 512 elements
[1730380068.774493] [ip-rocm_0:1781 :0] mm_iface.c:730 UCX DEBUG created mm iface 0x978800 FIFO id 0xd0000009400006f5 va 0x72aa69892000 size 36864 (128 x 256 elems)
[1730380068.774512] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[4]=0x978800 using posix/memory on worker 0x9b9960
[1730380068.774536] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ROCM_COPY signal objects: align 64, maxelems 1024, elemsize 40
[1730380068.774555] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[5]=0x978df0 using rocm_copy/rocm_cpy on worker 0x9b9960
[1730380068.774571] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ROCM_IPC signal objects: align 64, maxelems 1024, elemsize 40
[1730380068.774579] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[6]=0x987fb0 using rocm_ipc/rocm_ipc on worker 0x9b9960
[1730380068.774608] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool uct_scopy_iface_tx_mp: align 64, maxelems 4294967295, elemsize 736
[1730380068.774634] [ip-rocm_0:1781 :0] ucp_worker.c:1434 UCX DEBUG created interface[7]=0x988940 using cma/memory on worker 0x9b9960
[1730380068.774646] [ip-rocm_0:1781 :0] ucp_worker.c:1151 UCX DEBUG selected scalable tl bitmap: 0xff 0x0 (8 tls)
[1730380068.774654] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x97cc20 [id=32 ref 1] ???() to hash
[1730380068.774674] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 32 events 0x0 mode thread_spinlock
[1730380068.774699] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.774722] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.774818] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.774890] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.774904] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.774947] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.774966] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.775055] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.775115] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.775130] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.775175] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.775194] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.775302] [ip-rocm_1:259 :0] mm_iface.c:730 UCX DEBUG created mm iface 0xbd4930 FIFO id 0xd000000940000103 va 0x70035ae25000 size 36864 (128 x 256 elems)
[1730380068.775328] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[4]=0xbd4930 using posix/memory on worker 0xc15a90
[1730380068.775296] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.775364] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ROCM_COPY signal objects: align 64, maxelems 1024, elemsize 40
[1730380068.775356] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.775370] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.775387] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[5]=0xbd4f20 using rocm_copy/rocm_cpy on worker 0xc15a90
[1730380068.775415] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool ROCM_IPC signal objects: align 64, maxelems 1024, elemsize 40
[1730380068.775427] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[6]=0xbe40e0 using rocm_ipc/rocm_ipc on worker 0xc15a90
[1730380068.775415] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.775434] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.775453] [ip-rocm_1:259 :0] mpool.c:136 UCX DEBUG mpool uct_scopy_iface_tx_mp: align 64, maxelems 4294967295, elemsize 736
[1730380068.775481] [ip-rocm_1:259 :0] ucp_worker.c:1434 UCX DEBUG created interface[7]=0xbe4a70 using cma/memory on worker 0xc15a90
[1730380068.775488] [ip-rocm_1:259 :0] ucp_worker.c:1151 UCX DEBUG selected scalable tl bitmap: 0xff 0x0 (8 tls)
[1730380068.775508] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xbd8d50 [id=32 ref 1] ???() to hash
[1730380068.775516] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.775544] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 32 events 0x0 mode thread_spinlock
[1730380068.775577] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.775612] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.775572] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.775587] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.775632] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.775652] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.775747] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.775833] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.775854] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.775733] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.775794] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.775807] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.775928] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.775938] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.775850] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.775869] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.775945] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776003] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.776017] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.776027] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776063] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.776082] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.776086] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.776099] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.776159] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776151] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.776195] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.776219] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.776234] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.776301] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.776321] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.776279] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776340] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.776353] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.776405] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776400] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.776421] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.776464] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.776478] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.776505] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776522] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.776542] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.776572] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.776592] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.776627] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776638] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.776658] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.776686] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.776699] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.776744] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776743] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.776761] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.776802] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.776816] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.776865] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.776843] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776885] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.776901] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.776914] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.776973] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.776958] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.776977] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777038] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.777051] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.777049] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.777100] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.777120] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777108] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.777121] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.777237] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.777161] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.777180] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777292] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.777304] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.777259] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.777349] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.777375] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777342] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.777358] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.777403] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.777422] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777472] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.777503] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.777530] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.777542] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.777561] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.777576] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.777594] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.777614] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777620] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.777640] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777713] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.777701] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.777775] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.777789] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.777769] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.777783] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.777830] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.777848] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777835] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.777856] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777937] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.778000] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.778013] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.777944] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.778062] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.778082] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.777998] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.778010] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.778055] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.778074] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.778225] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.778155] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.778213] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.778227] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.778279] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.778291] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.778297] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.778316] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.778341] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.778360] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.778401] [ip-rocm_0:1781 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.778449] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.778462] [ip-rocm_0:1781 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.778476] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.778507] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.778520] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.778518] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x97aed0 [id=34 ref 1] ???() to hash
[1730380068.778541] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 34 events 0x0 mode thread_spinlock
[1730380068.778564] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.778567] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.778592] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.778583] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.778679] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.778673] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.778689] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.778731] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.778743] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.778733] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.778751] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.778787] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.778807] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.778831] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.778845] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.778890] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.778887] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.778905] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.778964] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.778979] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.778987] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.779001] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.779033] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.779052] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.779052] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.779073] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.779156] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.779236] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.779249] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.779300] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.779321] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.779154] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.779167] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.779208] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.779227] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.779330] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.779345] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.779393] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.779416] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.779413] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.779490] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.779503] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.779464] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.779476] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.779546] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.779566] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.779520] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=ens5) failed: Operation not supported
[1730380068.779539] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of ens5 is UNKNOWN, assuming 100 Mbps
[1730380068.779625] [ip-rocm_1:259 :0] topo.c:898 UCX DEBUG /sys/class/net/ens5: PF sysfs path is '/sys/devices/pci0000:00/0000:00:05.0'
[1730380068.779648] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.779661] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.779707] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.779728] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.779690] [ip-rocm_1:259 :0] topo.c:823 UCX DEBUG ens5: incorrect format of current_link_speed file: expected: <double> GT/s, actual: Unknown
[1730380068.779703] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG ens5: pci bandwidth undetected, using maximal value
[1730380068.779808] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.779822] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.779749] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xbd7000 [id=34 ref 1] ???() to hash
[1730380068.779777] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 34 events 0x0 mode thread_spinlock
[1730380068.779806] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.779871] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.779891] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.779825] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.779927] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.779952] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780005] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780023] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780014] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780091] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780111] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780030] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780189] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780203] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780110] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780122] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780241] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780259] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780166] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780196] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780279] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780293] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780346] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780364] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780356] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780371] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780446] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780459] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780421] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780443] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780501] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780518] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780527] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780541] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780595] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780608] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780591] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780614] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780653] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780672] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780697] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780711] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780768] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780781] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780760] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780781] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780822] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780841] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780862] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780875] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780912] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.780927] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.780916] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.780935] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.780972] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.781015] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.781029] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781007] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781084] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.781105] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781099] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.781112] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781193] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.781208] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781196] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.781213] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781256] [ip-rocm_0:1781 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.781301] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.781315] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781304] [ip-rocm_0:1781 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781365] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.781393] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781388] [ip-rocm_0:1781 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.781401] [ip-rocm_0:1781 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781481] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.781494] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781440] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x97adc0 [id=36 ref 1] ???() to hash
[1730380068.781462] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 36 events 0x0 mode thread_spinlock
[1730380068.781534] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.781551] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781482] [ip-rocm_0:1781 :0] async.c:247 UCX DEBUG added async handler 0x989010 [id=38 ref 1] ???() to hash
[1730380068.781502] [ip-rocm_0:1781 :0] async.c:512 UCX DEBUG listening to async event fd 38 events 0x0 mode thread_spinlock
[1730380068.781520] [ip-rocm_0:1781 :0] tcp_sockcm.c:225 UCX DEBUG created tcp_sockcm 0x989260
[1730380068.781629] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.781642] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781653] [ip-rocm_0:1781 :0] ucp_ep.c:405 UCX DEBUG created ep 0x72aa6963a000 to <no debug data> mem_type_ep:rocm
[1730380068.781691] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.781710] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781737] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for tag/rndv
[1730380068.781761] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/ats
[1730380068.781786] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.781805] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781773] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.781846] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.781866] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781794] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.781809] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.781943] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.781956] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781821] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.781827] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.781999] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.782025] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781850] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.781870] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.781876] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.782113] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.782126] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.781893] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.781906] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.781933] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.781946] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.782198] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.781956] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for am/rndv
[1730380068.782210] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.781986] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.782000] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype
[1730380068.782009] [ip-rocm_0:1781 :0] proto_rndv.c:514 UCX DEBUG no active message lane for am/rndv
[1730380068.782310] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.782324] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.782029] [ip-rocm_0:1781 :0] wireup.c:1214 UCX DEBUG ep 0x72aa6963a000: am_lane <none> wireup_msg_lane <none> cm_lane <none> keepalive_lane <none> reachable_mds 0x10
[1730380068.782044] [ip-rocm_0:1781 :0] wireup.c:1237 UCX DEBUG ep 0x72aa6963a000: lane[0]: 5:rocm_copy/rocm_cpy.0 md[4] -> addr[0].md[4]/rocm_cpy/sysdev[0] seg 4294967295 rma_bw#0
[1730380068.782056] [ip-rocm_0:1781 :0] wireup.c:1240 UCX DEBUG ep 0x72aa6963a000: err mode 0, flags 0x1
[1730380068.782378] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.782396] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.782067] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_requests: align 64, maxelems 4294967295, elemsize 280
[1730380068.782078] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_rkeys: align 64, maxelems 4294967295, elemsize 112
[1730380068.782477] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.782494] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.782083] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_reg_bufs: align 64, maxelems 4294967295, elemsize 8216
[1730380068.782095] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_am_bufs: align 64, maxelems 4294967295, elemsize 153
[1730380068.782109] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_am_bufs: align 64, maxelems 4294967295, elemsize 1113
[1730380068.782114] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool ucp_am_bufs: align 64, maxelems 4294967295, elemsize 65625
[1730380068.782118] [ip-rocm_0:1781 :0] mpool_set.c:129 UCX DEBUG mpool_set:ucp_am_bufs, sizes map 0x80000440, largest size 65536, mpools num 3
[1730380068.782532] [ip-rocm_1:259 :0] sock.c:90 UCX DEBUG ioctl(req=35142, ifr_name=lo) failed: Operation not supported
[1730380068.782548] [ip-rocm_1:259 :0] tcp_net.c:61 UCX DEBUG speed of lo is UNKNOWN, assuming 100 Mbps
[1730380068.782157] [ip-rocm_0:1781 :0] mpool.c:136 UCX DEBUG mpool tl_ucp_req_mp: align 64, maxelems 4294967295, elemsize 648
[1730380068.782616] [ip-rocm_1:259 :0] topo.c:895 UCX DEBUG /sys/class/net/lo: sysfs path undetected
[1730380068.782636] [ip-rocm_1:259 :0] topo.c:848 UCX DEBUG lo: pci bandwidth undetected, using maximal value
[1730380068.782683] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xbd6ef0 [id=36 ref 1] ???() to hash
[1730380068.782706] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 36 events 0x0 mode thread_spinlock
[1730380068.782728] [ip-rocm_1:259 :0] async.c:247 UCX DEBUG added async handler 0xbe5140 [id=38 ref 1] ???() to hash
[1730380068.782757] [ip-rocm_1:259 :0] async.c:512 UCX DEBUG listening to async event fd 38 events 0x0 mode thread_spinlock
[1730380068.782781] [ip-rocm_1:259 :0] tcp_sockcm.c:225 UCX DEBUG created tcp_sockcm 0xbe5390
[1730380068.782977] [ip-rocm_1:259 :0] ucp_ep.c:405 UCX DEBUG created ep 0x70035ae05000 to <no debug data> mem_type_ep:rocm
[1730380068.783088] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for tag/rndv
[1730380068.783130] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/ats
[1730380068.783145] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.783165] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr
[1730380068.783197] [ip-rocm_1:259 :0] proto_rndv.c:514 UCX DEBUG no active message lane for rndv/rtr/mtype