-
Notifications
You must be signed in to change notification settings - Fork 0
/
CodeBERT_1GPU_Eval.result
3637 lines (3634 loc) · 136 KB
/
CodeBERT_1GPU_Eval.result
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
Not a conda environment: /scratch/kv2154/CodeBERT-master/env
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: torch in /home/kv2154/.local/lib/python3.8/site-packages (2.0.0)
Requirement already satisfied: torchvision in /home/kv2154/.local/lib/python3.8/site-packages (0.15.1)
Requirement already satisfied: transformers in /home/kv2154/.local/lib/python3.8/site-packages (4.28.1)
Requirement already satisfied: filelock in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (3.0.12)
Requirement already satisfied: networkx in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (3.1)
Requirement already satisfied: nvidia-nccl-cu11==2.14.3; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (2.14.3)
Requirement already satisfied: nvidia-cuda-runtime-cu11==11.7.99; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (11.7.99)
Requirement already satisfied: nvidia-cusolver-cu11==11.4.0.1; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (11.4.0.1)
Requirement already satisfied: nvidia-cudnn-cu11==8.5.0.96; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (8.5.0.96)
Requirement already satisfied: nvidia-curand-cu11==10.2.10.91; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (10.2.10.91)
Requirement already satisfied: typing-extensions in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (4.5.0)
Requirement already satisfied: jinja2 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from torch) (2.11.2)
Requirement already satisfied: nvidia-cuda-nvrtc-cu11==11.7.99; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (11.7.99)
Requirement already satisfied: nvidia-cufft-cu11==10.9.0.58; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (10.9.0.58)
Requirement already satisfied: triton==2.0.0; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (2.0.0)
Requirement already satisfied: sympy in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (1.11.1)
Requirement already satisfied: nvidia-cuda-cupti-cu11==11.7.101; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (11.7.101)
Requirement already satisfied: nvidia-cublas-cu11==11.10.3.66; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (11.10.3.66)
Requirement already satisfied: nvidia-cusparse-cu11==11.7.4.91; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (11.7.4.91)
Requirement already satisfied: nvidia-nvtx-cu11==11.7.91; platform_system == "Linux" and platform_machine == "x86_64" in /home/kv2154/.local/lib/python3.8/site-packages (from torch) (11.7.91)
Requirement already satisfied: pillow!=8.3.*,>=5.3.0 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from torchvision) (7.2.0)
Requirement already satisfied: requests in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from torchvision) (2.24.0)
Requirement already satisfied: numpy in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from torchvision) (1.18.5)
Requirement already satisfied: pyyaml>=5.1 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from transformers) (5.3.1)
Requirement already satisfied: tokenizers!=0.11.3,<0.14,>=0.11.1 in /home/kv2154/.local/lib/python3.8/site-packages (from transformers) (0.13.3)
Requirement already satisfied: tqdm>=4.27 in /home/kv2154/.local/lib/python3.8/site-packages (from transformers) (4.65.0)
Requirement already satisfied: packaging>=20.0 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from transformers) (20.4)
Requirement already satisfied: regex!=2019.12.17 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from transformers) (2020.6.8)
Requirement already satisfied: huggingface-hub<1.0,>=0.11.0 in /home/kv2154/.local/lib/python3.8/site-packages (from transformers) (0.14.1)
Requirement already satisfied: setuptools in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from nvidia-cuda-runtime-cu11==11.7.99; platform_system == "Linux" and platform_machine == "x86_64"->torch) (49.2.0.post20200714)
Requirement already satisfied: wheel in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from nvidia-cuda-runtime-cu11==11.7.99; platform_system == "Linux" and platform_machine == "x86_64"->torch) (0.34.2)
Requirement already satisfied: MarkupSafe>=0.23 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from jinja2->torch) (1.1.1)
Requirement already satisfied: lit in /home/kv2154/.local/lib/python3.8/site-packages (from triton==2.0.0; platform_system == "Linux" and platform_machine == "x86_64"->torch) (16.0.2)
Requirement already satisfied: cmake in /home/kv2154/.local/lib/python3.8/site-packages (from triton==2.0.0; platform_system == "Linux" and platform_machine == "x86_64"->torch) (3.26.3)
Requirement already satisfied: mpmath>=0.19 in /home/kv2154/.local/lib/python3.8/site-packages (from sympy->torch) (1.3.0)
Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from requests->torchvision) (1.25.9)
Requirement already satisfied: idna<3,>=2.5 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from requests->torchvision) (2.10)
Requirement already satisfied: certifi>=2017.4.17 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from requests->torchvision) (2020.6.20)
Requirement already satisfied: chardet<4,>=3.0.2 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from requests->torchvision) (3.0.4)
Requirement already satisfied: six in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from packaging>=20.0->transformers) (1.15.0)
Requirement already satisfied: pyparsing>=2.0.2 in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from packaging>=20.0->transformers) (2.4.7)
Requirement already satisfied: fsspec in /share/apps/anaconda3/2020.07/lib/python3.8/site-packages (from huggingface-hub<1.0,>=0.11.0->transformers) (0.7.4)
Tue May 9 20:33:01 2023
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 520.61.05 Driver Version: 520.61.05 CUDA Version: 11.8 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|===============================+======================+======================|
| 0 Quadro RTX 8000 On | 00000000:06:00.0 Off | 0 |
| N/A 27C P8 13W / 250W | 0MiB / 46080MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=============================================================================|
| No running processes found |
+-----------------------------------------------------------------------------+
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 48
On-line CPU(s) list: 0-47
Thread(s) per core: 1
Core(s) per socket: 24
Socket(s): 2
NUMA node(s): 2
Vendor ID: GenuineIntel
CPU family: 6
Model: 85
Model name: Intel(R) Xeon(R) Platinum 8268 CPU @ 2.90GHz
Stepping: 7
CPU MHz: 3900.000
CPU max MHz: 3900.0000
CPU min MHz: 1200.0000
BogoMIPS: 5800.00
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 1024K
L3 cache: 36608K
NUMA node0 CPU(s): 0-23
NUMA node1 CPU(s): 24-47
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities
WARNING: you should run this program as super-user.
gr008.hpc.nyu.edu
description: Computer
width: 64 bits
capabilities: smp vsyscall32
*-core
description: Motherboard
physical id: 0
*-memory
description: System memory
physical id: 0
size: 384GiB
*-cpu:0
product: Intel(R) Xeon(R) Platinum 8268 CPU @ 2.90GHz
vendor: Intel Corp.
physical id: 1
bus info: cpu@0
version: 6.85.7
size: 3499MHz
capacity: 3900MHz
width: 64 bits
capabilities: fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities cpufreq
configuration: microcode=83899138
*-cpu:1
product: Intel(R) Xeon(R) Platinum 8268 CPU @ 2.90GHz
vendor: Intel Corp.
physical id: 2
bus info: cpu@1
version: 6.85.7
size: 3500MHz
capacity: 3900MHz
width: 64 bits
capabilities: fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l3 cdp_l3 invpcid_single intel_ppin ssbd mba ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm mpx rdt_a avx512f avx512dq rdseed adx smap clflushopt clwb intel_pt avx512cd avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local dtherm ida arat pln pts pku ospke avx512_vnni md_clear flush_l1d arch_capabilities cpufreq
configuration: microcode=83899138
*-pci:0
description: Host bridge
product: Sky Lake-E DMI3 Registers
vendor: Intel Corporation
physical id: 100
bus info: pci@0000:00:00.0
version: 07
width: 32 bits
clock: 33MHz
*-generic:0
description: System peripheral
product: Sky Lake-E CBDMA Registers
vendor: Intel Corporation
physical id: 4
bus info: pci@0000:00:04.0
version: 07
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: driver=ioatdma latency=0
resources: iomemory:20f0-20ef irq:214 memory:20ffff2c000-20ffff2ffff
*-generic:1
description: System peripheral
product: Sky Lake-E CBDMA Registers
vendor: Intel Corporation
physical id: 4.1
bus info: pci@0000:00:04.1
version: 07
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: driver=ioatdma latency=0
resources: iomemory:20f0-20ef irq:216 memory:20ffff28000-20ffff2bfff
*-generic:2
description: System peripheral
product: Sky Lake-E CBDMA Registers
vendor: Intel Corporation
physical id: 4.2
bus info: pci@0000:00:04.2
version: 07
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: driver=ioatdma latency=0
resources: iomemory:20f0-20ef irq:214 memory:20ffff24000-20ffff27fff
*-generic:3
description: System peripheral
product: Sky Lake-E CBDMA Registers
vendor: Intel Corporation
physical id: 4.3
bus info: pci@0000:00:04.3
version: 07
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: driver=ioatdma latency=0
resources: iomemory:20f0-20ef irq:216 memory:20ffff20000-20ffff23fff
*-generic:4
description: System peripheral
product: Sky Lake-E CBDMA Registers
vendor: Intel Corporation
physical id: 4.4
bus info: pci@0000:00:04.4
version: 07
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: driver=ioatdma latency=0
resources: iomemory:20f0-20ef irq:214 memory:20ffff1c000-20ffff1ffff
*-generic:5
description: System peripheral
product: Sky Lake-E CBDMA Registers
vendor: Intel Corporation
physical id: 4.5
bus info: pci@0000:00:04.5
version: 07
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: driver=ioatdma latency=0
resources: iomemory:20f0-20ef irq:216 memory:20ffff18000-20ffff1bfff
*-generic:6
description: System peripheral
product: Sky Lake-E CBDMA Registers
vendor: Intel Corporation
physical id: 4.6
bus info: pci@0000:00:04.6
version: 07
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: driver=ioatdma latency=0
resources: iomemory:20f0-20ef irq:214 memory:20ffff14000-20ffff17fff
*-generic:7
description: System peripheral
product: Sky Lake-E CBDMA Registers
vendor: Intel Corporation
physical id: 4.7
bus info: pci@0000:00:04.7
version: 07
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: driver=ioatdma latency=0
resources: iomemory:20f0-20ef irq:216 memory:20ffff10000-20ffff13fff
*-generic:8 UNCLAIMED
description: System peripheral
product: Sky Lake-E MM/Vt-d Configuration Registers
vendor: Intel Corporation
physical id: 5
bus info: pci@0000:00:05.0
version: 07
width: 32 bits
clock: 33MHz
capabilities: cap_list
configuration: latency=0
*-generic:9 UNCLAIMED
description: System peripheral
product: Sky Lake-E RAS
vendor: Intel Corporation
physical id: 5.2
bus info: pci@0000:00:05.2
version: 07
width: 32 bits
clock: 33MHz
capabilities: cap_list
configuration: latency=0
*-generic:10 UNCLAIMED
description: PIC
product: Sky Lake-E IOAPIC
vendor: Intel Corporation
physical id: 5.4
bus info: pci@0000:00:05.4
version: 07
width: 32 bits
clock: 33MHz
capabilities: io_x_-apic bus_master cap_list
configuration: latency=0
resources: memory:d4c87000-d4c87fff
*-generic:11 UNCLAIMED
description: System peripheral
product: Sky Lake-E Ubox Registers
vendor: Intel Corporation
physical id: 8
bus info: pci@0000:00:08.0
version: 07
width: 32 bits
clock: 33MHz
capabilities: cap_list
configuration: latency=0
*-generic:12 UNCLAIMED
description: Performance counters
product: Sky Lake-E Ubox Registers
vendor: Intel Corporation
physical id: 8.1
bus info: pci@0000:00:08.1
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:13 UNCLAIMED
description: System peripheral
product: Sky Lake-E Ubox Registers
vendor: Intel Corporation
physical id: 8.2
bus info: pci@0000:00:08.2
version: 07
width: 32 bits
clock: 33MHz
capabilities: cap_list
configuration: latency=0
*-generic:14 UNCLAIMED
description: Unassigned class
product: C620 Series Chipset Family MROM 0
vendor: Intel Corporation
physical id: 11
bus info: pci@0000:00:11.0
version: 09
width: 32 bits
clock: 33MHz
capabilities: cap_list
configuration: latency=0
*-usb
description: USB controller
product: C620 Series Chipset Family USB 3.0 xHCI Controller
vendor: Intel Corporation
physical id: 14
bus info: pci@0000:00:14.0
version: 09
width: 64 bits
clock: 33MHz
capabilities: xhci bus_master cap_list
configuration: driver=xhci_hcd latency=0
resources: iomemory:20f0-20ef irq:37 memory:20ffff00000-20ffff0ffff
*-generic:15 UNCLAIMED
description: Signal processing controller
product: C620 Series Chipset Family Thermal Subsystem
vendor: Intel Corporation
physical id: 14.2
bus info: pci@0000:00:14.2
version: 09
width: 64 bits
clock: 33MHz
capabilities: cap_list
configuration: latency=0
resources: iomemory:20f0-20ef memory:20ffff33000-20ffff33fff
*-communication:0 UNCLAIMED
description: Communication controller
product: C620 Series Chipset Family MEI Controller #1
vendor: Intel Corporation
physical id: 16
bus info: pci@0000:00:16.0
version: 09
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: latency=0
resources: iomemory:20f0-20ef memory:20ffff32000-20ffff32fff
*-communication:1 UNCLAIMED
description: Communication controller
product: C620 Series Chipset Family MEI Controller #2
vendor: Intel Corporation
physical id: 16.1
bus info: pci@0000:00:16.1
version: 09
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: latency=0
resources: iomemory:20f0-20ef memory:20ffff31000-20ffff31fff
*-communication:2 UNCLAIMED
description: Communication controller
product: C620 Series Chipset Family MEI Controller #3
vendor: Intel Corporation
physical id: 16.4
bus info: pci@0000:00:16.4
version: 09
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: latency=0
resources: iomemory:20f0-20ef memory:20ffff30000-20ffff30fff
*-sata
description: SATA controller
product: C620 Series Chipset Family SATA Controller [AHCI mode]
vendor: Intel Corporation
physical id: 17
bus info: pci@0000:00:17.0
version: 09
width: 32 bits
clock: 66MHz
capabilities: sata ahci_1.0 bus_master cap_list
configuration: driver=ahci latency=0
resources: irq:38 memory:d4c84000-d4c85fff memory:d4c86000-d4c860ff ioport:2030(size=8) ioport:2020(size=4) ioport:2000(size=32) memory:d4c00000-d4c7ffff
*-pci
description: PCI bridge
product: C620 Series Chipset Family PCI Express Root Port #1
vendor: Intel Corporation
physical id: 1c
bus info: pci@0000:00:1c.0
version: f9
width: 32 bits
clock: 33MHz
capabilities: pci normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:24 memory:d3000000-d4bfffff
*-pci
description: PCI bridge
product: x1 PCIe Gen2 Bridge[Pilot4]
vendor: Emulex Corporation
physical id: 0
bus info: pci@0000:01:00.0
version: 00
width: 64 bits
clock: 33MHz
capabilities: pci normal_decode bus_master cap_list
resources: memory:d4b00000-d4b00fff memory:d3000000-d4afffff
*-display
description: VGA compatible controller
product: MGA G200e [Pilot] ServerEngines (SEP1)
vendor: Matrox Electronics Systems Ltd.
physical id: 0
bus info: pci@0000:02:00.0
logical name: /dev/fb0
version: 42
width: 32 bits
clock: 33MHz
capabilities: vga_controller bus_master cap_list rom fb
configuration: depth=32 driver=mgag200 latency=0 resolution=1024,768
resources: irq:16 memory:d3000000-d3ffffff memory:d4a10000-d4a13fff memory:d4000000-d47fffff memory:d4a00000-d4a0ffff
*-isa
description: ISA bridge
product: C621 Series Chipset LPC/eSPI Controller
vendor: Intel Corporation
physical id: 1f
bus info: pci@0000:00:1f.0
version: 09
width: 32 bits
clock: 33MHz
capabilities: isa
configuration: latency=0
*-pnp00:00
product: PnP device PNP0b00
physical id: 0
capabilities: pnp
configuration: driver=rtc_cmos
*-pnp00:01
product: PnP device PNP0c02
physical id: 1
capabilities: pnp
configuration: driver=system
*-pnp00:02
product: PnP device PNP0c02
physical id: 2
capabilities: pnp
configuration: driver=system
*-pnp00:03
product: PnP device PNP0501
physical id: 3
capabilities: pnp
configuration: driver=serial
*-pnp00:04
product: PnP device PNP0501
physical id: 4
capabilities: pnp
configuration: driver=serial
*-pnp00:05
product: PnP device IPI0001
vendor: Intelligent Platform Management Interface (IPMI) forum (Intel, HP, NEC, Dell)
physical id: 5
capabilities: pnp
configuration: driver=system
*-pnp00:06
product: PnP device PNP0c02
physical id: 6
capabilities: pnp
configuration: driver=system
*-pnp00:07
product: PnP device PNP0c02
physical id: 7
capabilities: pnp
configuration: driver=system
*-pnp00:08
product: PnP device PNP0c02
physical id: 8
capabilities: pnp
configuration: driver=system
*-pnp00:09
product: PnP device PNP0c02
physical id: 9
capabilities: pnp
configuration: driver=system
*-memory UNCLAIMED
description: Memory controller
product: C620 Series Chipset Family Power Management Controller
vendor: Intel Corporation
physical id: 1f.2
bus info: pci@0000:00:1f.2
version: 09
width: 32 bits
clock: 33MHz (30.3ns)
configuration: latency=0
resources: memory:d4c80000-d4c83fff
*-serial:0
description: SMBus
product: C620 Series Chipset Family SMBus
vendor: Intel Corporation
physical id: 1f.4
bus info: pci@0000:00:1f.4
version: 09
width: 64 bits
clock: 33MHz
configuration: driver=i801_smbus latency=0
resources: iomemory:2000-1fff irq:16 memory:20000000000-200000000ff ioport:780(size=32)
*-serial:1 UNCLAIMED
description: Serial bus controller
product: C620 Series Chipset Family SPI Controller
vendor: Intel Corporation
physical id: 1f.5
bus info: pci@0000:00:1f.5
version: 09
width: 32 bits
clock: 33MHz
configuration: latency=0
resources: memory:fe010000-fe010fff
*-pci:1
description: PCI bridge
product: Sky Lake-E PCI Express Root Port A
vendor: Intel Corporation
physical id: 101
bus info: pci@0000:05:00.0
version: 07
width: 32 bits
clock: 33MHz
capabilities: pci normal_decode bus_master cap_list
configuration: driver=pcieport
resources: irq:26 memory:d8000000-d95fffff ioport:21000000000(size=41641050112)
*-display
description: 3D controller
product: TU102GL [Quadro RTX 6000/8000]
vendor: NVIDIA Corporation
physical id: 0
bus info: pci@0000:06:00.0
version: a1
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list
configuration: driver=nvidia latency=0
resources: iomemory:2100-20ff iomemory:2190-218f irq:234 memory:d8000000-d8ffffff memory:21000000000-217ffffffff memory:219b0000000-219b1ffffff memory:d9000000-d95fffff memory:21800000000-2197fffffff memory:21980000000-219afffffff
*-generic:0 UNCLAIMED
description: System peripheral
product: Sky Lake-E VT-d
vendor: Intel Corporation
physical id: 3
bus info: pci@0000:05:05.0
version: 07
width: 32 bits
clock: 33MHz
capabilities: cap_list
configuration: latency=0
*-generic:1 UNCLAIMED
description: System peripheral
product: Sky Lake-E RAS Configuration Registers
vendor: Intel Corporation
physical id: 6
bus info: pci@0000:05:05.2
version: 07
width: 32 bits
clock: 33MHz
capabilities: cap_list
configuration: latency=0
*-generic:2 UNCLAIMED
description: PIC
product: Sky Lake-E IOxAPIC Configuration Registers
vendor: Intel Corporation
physical id: 7
bus info: pci@0000:05:05.4
version: 07
width: 32 bits
clock: 33MHz
capabilities: io_x_-apic bus_master cap_list
configuration: latency=0
resources: memory:d9600000-d9600fff
*-generic:3 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 9
bus info: pci@0000:05:08.0
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:4 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: a
bus info: pci@0000:05:08.1
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:5 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: b
bus info: pci@0000:05:08.2
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:6 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: c
bus info: pci@0000:05:08.3
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:7 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: d
bus info: pci@0000:05:08.4
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:8 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: e
bus info: pci@0000:05:08.5
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:9 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: f
bus info: pci@0000:05:08.6
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:10 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 10
bus info: pci@0000:05:08.7
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:11 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 11
bus info: pci@0000:05:09.0
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:12 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 12
bus info: pci@0000:05:09.1
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:13 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 13
bus info: pci@0000:05:09.2
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:14 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 14
bus info: pci@0000:05:09.3
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:15 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 15
bus info: pci@0000:05:09.4
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:16 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 16
bus info: pci@0000:05:09.5
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:17 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 17
bus info: pci@0000:05:09.6
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:18 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 18
bus info: pci@0000:05:09.7
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:19 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 19
bus info: pci@0000:05:0a.0
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:20 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 1a
bus info: pci@0000:05:0a.1
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:21 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 1b
bus info: pci@0000:05:0a.2
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:22 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 1c
bus info: pci@0000:05:0a.3
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:23 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 1d
bus info: pci@0000:05:0a.4
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:24 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 1e
bus info: pci@0000:05:0a.5
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:25 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 1f
bus info: pci@0000:05:0a.6
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:26 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 20
bus info: pci@0000:05:0a.7
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:27 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 21
bus info: pci@0000:05:0b.0
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:28 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 22
bus info: pci@0000:05:0b.1
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:29 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 23
bus info: pci@0000:05:0b.2
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:30 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 24
bus info: pci@0000:05:0b.3
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:31 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 25
bus info: pci@0000:05:0e.0
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:32 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 26
bus info: pci@0000:05:0e.1
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:33 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 27
bus info: pci@0000:05:0e.2
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:34 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 28
bus info: pci@0000:05:0e.3
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:35 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 29
bus info: pci@0000:05:0e.4
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:36 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 2a
bus info: pci@0000:05:0e.5
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:37 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 2b
bus info: pci@0000:05:0e.6
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:38 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 2c
bus info: pci@0000:05:0e.7
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:39 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 2d
bus info: pci@0000:05:0f.0
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:40 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 2e
bus info: pci@0000:05:0f.1
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:41 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 2f
bus info: pci@0000:05:0f.2
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:42 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 30
bus info: pci@0000:05:0f.3
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:43 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 31
bus info: pci@0000:05:0f.4
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:44 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 32
bus info: pci@0000:05:0f.5
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:45 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers
vendor: Intel Corporation
physical id: 33
bus info: pci@0000:05:0f.6
version: 07
width: 32 bits
clock: 33MHz
configuration: latency=0
*-generic:46 UNCLAIMED
description: System peripheral
product: Sky Lake-E CHA Registers