-
Notifications
You must be signed in to change notification settings - Fork 51
/
ChangeLogP720b1.txt
1389 lines (1292 loc) · 66.1 KB
/
ChangeLogP720b1.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2024-08-30 Anthony Danalis <[email protected]>
* src/components/rocp_sdk/Rules.rocp_sdk,
src/components/rocp_sdk/rocp_sdk.c,
src/components/rocp_sdk/sdk_class.cpp,
src/components/rocp_sdk/sdk_class.h,
src/components/rocp_sdk/sdk_class.hpp,
src/components/rocp_sdk/tests/Makefile,
src/components/rocp_sdk/tests/advanced.c,
src/components/rocp_sdk/tests/kernel.cpp,
src/components/rocp_sdk/tests/simple.c, src/configure,
src/configure.in: Beta support for AMD ROCprofiler-SDK events.
Mon Jul 22 16:59:06 2024 +0900 jdeokkim <[email protected]>
* src/libpfm4/docs/man3/pfm_get_os_event_encoding.3,
.../docs/man3/pfm_get_perf_event_encoding.3,
src/libpfm4/docs/man3/pfm_initialize.3,
src/libpfm4/lib/events/arm_neoverse_n1_events.h,
src/libpfm4/lib/events/arm_neoverse_n2_events.h,
src/libpfm4/lib/events/arm_neoverse_v1_events.h,
src/libpfm4/lib/events/intel_spr_events.h,
src/libpfm4/lib/pfmlib_arm.c: Update libpfm4 Current with commit
3abda5bc6c1af7f1b620dc594a806b3b5a4134cb Optimize pfm_detect() for
ARM processors Avoid calling pfmlib_getcpuinfo_attr() 3 times for
each ARM PMU to detect. For a given processor, the function will
always return the same information. Use the pfm_arm_cfg structure
as a cache on subsequent calls. Note: this overall logic does not
handle ARM hybrids right now. commit
b8b7d69e774c38618aa440f49d69814d109629f5 add L2D_CACHE and make
L2D_CACHE_ACCESS alias for ARM Neoverse N1,N2,V2 To match kernel
and documentation. Patch provides an alias to avoid breaking
existing scripts. commit 0d216ee4082aef2d8cabfa9816cdb6d6560d1d3f
update Intel SapphireRapids core PMU to 1.24 Updates the Intel
SapphireRapids core PMU event table to latest Intel released
version: Date : 07/18/2024 Version: 1.24" From
gitub.com/Intel/perfmon commit
874ed7cff57271c5d4e530650eadce76e3dcaa14 Fix typos in
docs/man3/pfm_get_perf_event_encoding.3 commit
ffbfc5970897de87471e7cba64737dc13e2369cf Fix typos in
docs/man3/pfm_get_os_event_encoding.3 Note: The PAPI team does not
have access to a machine with ARM and ARM Neoverse to test building
PAPI with updated libpfm4 changes. Built PAPI successfully on a
machine with an Intel Sapphire Rapids (Intel(R) Xeon(R) Gold 6430)
CPU and output from papi_native_avail shows updated names and
descriptions.
2024-08-02 Treece Burgess <[email protected]>
* src/components/rocm/roc_dispatch.c,
src/components/rocm/roc_dispatch.h,
src/components/rocm/roc_profiler.c,
src/components/rocm/roc_profiler.h, src/components/rocm/rocm.c:
Revert changes to ROCm component to only count the basename for
papi_component_avail. This will be the default choice for
components with qualifiers.
2024-08-01 Treece Burgess <[email protected]>
* src/components/cuda/README.md: Updating format of export
LD_LIBRARY_PATH= in Cuda component README.
2024-07-29 Heike Jagode <[email protected]>
* README.md: Updated license.
2024-07-25 William Cohen <[email protected]>
* src/components/cuda/tests/Makefile: cuda: When making the cuda
tests do not assume nvcc on $PATH is one being used A check in the
Makefile for the cuda tests assumed the nvcc found on $PATH and the
one referred to by $(NVCC) were the same. It is possible to have
multiple versions of cuda installed on the system and the one being
used for $(NVCC) may not be the same as the one found on the
default path. Should always be use $(NVCC) in the Makefile to
ensure getting the same version of nvcc.
* src/components/cuda/linux-cuda.c: cuda: Eliminate -Werror=format-
security error in cuda_init_private() Using a "%s" format in the
sprintf to avoid the following error when compiling the cuda
component with -Werror=format-security : components/cuda/linux-
cuda.c: In function ‘cuda_init_private’: components/cuda/linux-
cuda.c:158:9: error: format not a string literal and no format
arguments [-Werror=format-security] 158 |
sprintf(_cuda_vector.cmp_info.disabled_reason, disabled_reason); |
^~~~~~~ cc1: some warnings being treated as errors
2024-07-24 Daniel Barry <[email protected]>
* src/papi_events.csv: add presets for Zen5 These changes include
all available preset events for the Zen4 architecture, and they
were validated using the Counter Analysis Toolkit. These changes
have been tested on the AMD Zen5 architecture.
2024-07-16 Treece Burgess <[email protected]>
* src/components/cuda/papi_cupti_common.c,
src/components/cuda/papi_cupti_common.h: Adding papi_cupti_common.c
and papi_cupti_common.h
* src/components/cuda/Rules.cuda, src/components/cuda/cupti_common.c,
src/components/cuda/cupti_common.h,
src/components/cuda/cupti_dispatch.c,
src/components/cuda/cupti_events.c,
src/components/cuda/cupti_profiler.c: Renaming cupti_common.* to
papi_cupti_common.* to avoid file name collision with NVIDIA. Fixes
build issues in Cuda >= 12.4.
2024-07-23 Heike Jagode <[email protected]>
* src/components/cuda/tests/Makefile: Fixed issue with building CUDA
tests when linked with shared PAPI library If CUDA tests are
linked with the PAPI shared library (via the configure option
--with-shlib-tools), the tests don't build because nvcc doesn't
accept the -Wl,-rpath linker option. To fix this issue, instead of
linking with nvcc, we can link with the PAPI-chosen C compiler via
the CC macro (or CXX macro for tests with C++ code). Additionally,
this PR cleans up other issues with tests (e.g., cudaOpenMP.cu and
cudaOpenMP_noCuCtx.cu) by removing redundant explicit compilations,
as the Makefile already includes a compilation rule.
2024-07-09 Daniel Barry <[email protected]>
* src/components/rocm/roc_dispatch.c,
src/components/rocm/roc_dispatch.h,
src/components/rocm/roc_profiler.c,
src/components/rocm/roc_profiler.h, src/components/rocm/rocm.c:
rocm: fix event count to include qualifiers The event count
previously only counted basenames. This has been changed to
include all qualified event names. These changes have been tested
on the Frontier supercomputer (AMD MI250X GPU architecture) with
ROCm version 5.3.0.
Wed Jul 3 23:50:15 2024 -0700 Swarup Sahoo <[email protected]>
* src/libpfm4/README, src/libpfm4/docs/Makefile,
src/libpfm4/docs/man3/libpfm_amd64_fam1ah_zen5.3,
.../docs/man3/libpfm_amd64_fam1ah_zen5_l3.3,
src/libpfm4/include/perfmon/pfmlib.h, src/libpfm4/lib/Makefile,
src/libpfm4/lib/events/amd64_events_fam1ah_zen5.h,
.../lib/events/amd64_events_fam1ah_zen5_l3.h,
src/libpfm4/lib/pfmlib_amd64.c,
src/libpfm4/lib/pfmlib_amd64_fam19h_l3.c,
src/libpfm4/lib/pfmlib_amd64_fam1ah.c,
src/libpfm4/lib/pfmlib_amd64_fam1ah_l3.c,
src/libpfm4/lib/pfmlib_amd64_priv.h,
src/libpfm4/lib/pfmlib_common.c, src/libpfm4/lib/pfmlib_priv.h,
src/libpfm4/tests/validate_x86.c: Update libpfm4 Current with
commit 18f2a3e0541cc438094bbf65ebbed2b6742bf0d4 Add AMD Zen5 L3
PMU support This patch implements support for AMD Zen5 processor
L3 cache PMU. The implementation is based on "Performance Monitor
Counters for AMD Family A0h Model 00h- 0Fh Processors, rev 0.02",
available at -
https://www.amd.com/content/dam/amd/en/documents/epyc-technical-
docs/programmer-references/58550-0.01.pdf commit
e50b6a47c9f9f1386805bbce3d2a634782f8c30e Add AMD Zen5 core PMU
support This patch implements support for AMD Zen5 core PMU
support. The implementation is based on "Performance Monitor
Counters for AMD Family A0h Model 00h- 0Fh Processors, rev 0.02",
available at -
https://www.amd.com/content/dam/amd/en/documents/epyc-technical-
docs/programmer-references/58550-0.01.pdf Note: The PAPI team
does not have access to AMD Zen5 architecture to test additions as
of now.
2024-06-07 Vince Weaver <[email protected]>
* src/papi_internal.c: papi_internal: don't segfault if event missing
from derived event definition this shouldn't be possible with a
correctly configured papi_event.csv but it is still good to be
robust here so that we don't segfault and also print useful debug
messages
2024-06-03 Vince Weaver <[email protected]>
* src/components/perf_event/pe_libpfm4_events.c:
perf_event/libpfm4_events: add initial heterogenous CPU support
Alderlake and Raptorlake should now be able to properly enumerate
events for both Power and Efficiency cores on heterogeneous
systems. We're still testing if PAPI properly handles measurements
where applications end up running on both types of cores. The
detection of E-cores is currently a bit of a hack, we're going to
discuss with upstream libpfm4 to see if we can get a cleaner
interface for this.
* src/components/perf_event/pe_libpfm4_events.c:
perf_event/libpfm4_events: add some code comments to
_pe_libpfm4_init() this should not change the behavior of the
code, just adding some comments and whitespace to clear up what the
code is actually doing to prepare for improved heterogeneous CPU
support
2024-06-16 William Cohen <[email protected]>
* src/Rules.perfctr, src/Rules.perfctr-pfm,
src/components/perfctr/Rules.perfctr,
src/components/perfctr/perfctr-x86.c,
src/components/perfctr/perfctr-x86.h,
src/components/perfctr/perfctr.c,
src/components/perfctr_ppc/Rules.perfctr_ppc,
src/components/perfctr_ppc/linux-ppc64.h,
src/components/perfctr_ppc/perfctr-ppc64.c,
src/components/perfctr_ppc/perfctr-ppc64.h,
src/components/perfctr_ppc/power5+_events.h,
src/components/perfctr_ppc/power5+_events_map.c,
src/components/perfctr_ppc/power5_events.h,
src/components/perfctr_ppc/power5_events_map.c,
src/components/perfctr_ppc/power6_events.h,
src/components/perfctr_ppc/power6_events_map.c,
src/components/perfctr_ppc/power7_events.h,
src/components/perfctr_ppc/ppc64_events.c,
src/components/perfctr_ppc/ppc64_events.h,
src/components/perfctr_ppc/ppc970_events.h,
src/components/perfctr_ppc/ppc970_events_map.c, src/configure,
src/configure.in, src/libpfm-3.y/COPYRIGHT,
src/libpfm-3.y/ChangeLog, src/libpfm-3.y/Makefile,
src/libpfm-3.y/README, src/libpfm-3.y/TODO,
src/libpfm-3.y/config.mk, src/libpfm-3.y/docs/Makefile,
src/libpfm-3.y/docs/man3/libpfm.3,
src/libpfm-3.y/docs/man3/libpfm_amd64.3,
src/libpfm-3.y/docs/man3/libpfm_atom.3,
src/libpfm-3.y/docs/man3/libpfm_core.3,
src/libpfm-3.y/docs/man3/libpfm_itanium.3,
src/libpfm-3.y/docs/man3/libpfm_itanium2.3,
src/libpfm-3.y/docs/man3/libpfm_montecito.3,
src/libpfm-3.y/docs/man3/libpfm_nehalem.3,
src/libpfm-3.y/docs/man3/libpfm_p6.3,
src/libpfm-3.y/docs/man3/libpfm_powerpc.3,
src/libpfm-3.y/docs/man3/libpfm_westmere.3,
src/libpfm-3.y/docs/man3/pfm_dispatch_events.3,
src/libpfm-3.y/docs/man3/pfm_find_event.3,
src/libpfm-3.y/docs/man3/pfm_find_event_bycode.3,
.../docs/man3/pfm_find_event_bycode_next.3,
src/libpfm-3.y/docs/man3/pfm_find_event_mask.3,
src/libpfm-3.y/docs/man3/pfm_find_full_event.3,
src/libpfm-3.y/docs/man3/pfm_force_pmu.3,
src/libpfm-3.y/docs/man3/pfm_get_cycle_event.3,
src/libpfm-3.y/docs/man3/pfm_get_event_code.3,
.../docs/man3/pfm_get_event_code_counter.3,
src/libpfm-3.y/docs/man3/pfm_get_event_counters.3,
.../docs/man3/pfm_get_event_description.3,
src/libpfm-3.y/docs/man3/pfm_get_event_mask_code.3,
.../docs/man3/pfm_get_event_mask_description.3,
src/libpfm-3.y/docs/man3/pfm_get_event_mask_name.3,
src/libpfm-3.y/docs/man3/pfm_get_event_name.3,
src/libpfm-3.y/docs/man3/pfm_get_full_event_name.3,
.../docs/man3/pfm_get_hw_counter_width.3,
src/libpfm-3.y/docs/man3/pfm_get_impl_counters.3,
src/libpfm-3.y/docs/man3/pfm_get_impl_pmcs.3,
src/libpfm-3.y/docs/man3/pfm_get_impl_pmds.3,
src/libpfm-3.y/docs/man3/pfm_get_inst_retired.3,
.../docs/man3/pfm_get_max_event_name_len.3,
src/libpfm-3.y/docs/man3/pfm_get_num_counters.3,
src/libpfm-3.y/docs/man3/pfm_get_num_events.3,
src/libpfm-3.y/docs/man3/pfm_get_num_pmcs.3,
src/libpfm-3.y/docs/man3/pfm_get_num_pmds.3,
src/libpfm-3.y/docs/man3/pfm_get_pmu_name.3,
src/libpfm-3.y/docs/man3/pfm_get_pmu_name_bytype.3,
src/libpfm-3.y/docs/man3/pfm_get_pmu_type.3,
src/libpfm-3.y/docs/man3/pfm_get_version.3,
src/libpfm-3.y/docs/man3/pfm_initialize.3,
src/libpfm-3.y/docs/man3/pfm_list_supported_pmus.3,
src/libpfm-3.y/docs/man3/pfm_pmu_is_supported.3,
src/libpfm-3.y/docs/man3/pfm_regmask_and.3,
src/libpfm-3.y/docs/man3/pfm_regmask_clr.3,
src/libpfm-3.y/docs/man3/pfm_regmask_copy.3,
src/libpfm-3.y/docs/man3/pfm_regmask_eq.3,
src/libpfm-3.y/docs/man3/pfm_regmask_isset.3,
src/libpfm-3.y/docs/man3/pfm_regmask_or.3,
src/libpfm-3.y/docs/man3/pfm_regmask_set.3,
src/libpfm-3.y/docs/man3/pfm_regmask_weight.3,
src/libpfm-3.y/docs/man3/pfm_set_options.3,
src/libpfm-3.y/docs/man3/pfm_strerror.3,
src/libpfm-3.y/examples_ia64_v2.0/Makefile,
src/libpfm-3.y/examples_ia64_v2.0/ita2_btb.c,
src/libpfm-3.y/examples_ia64_v2.0/ita2_dear.c,
src/libpfm-3.y/examples_ia64_v2.0/ita2_irr.c,
src/libpfm-3.y/examples_ia64_v2.0/ita2_opcode.c,
src/libpfm-3.y/examples_ia64_v2.0/ita2_rr.c,
src/libpfm-3.y/examples_ia64_v2.0/ita_btb.c,
src/libpfm-3.y/examples_ia64_v2.0/ita_dear.c,
src/libpfm-3.y/examples_ia64_v2.0/ita_irr.c,
src/libpfm-3.y/examples_ia64_v2.0/ita_opcode.c,
src/libpfm-3.y/examples_ia64_v2.0/ita_rr.c,
src/libpfm-3.y/examples_ia64_v2.0/mont_dear.c,
src/libpfm-3.y/examples_ia64_v2.0/mont_etb.c,
src/libpfm-3.y/examples_ia64_v2.0/mont_irr.c,
src/libpfm-3.y/examples_ia64_v2.0/mont_opcode.c,
src/libpfm-3.y/examples_ia64_v2.0/mont_rr.c,
src/libpfm-3.y/examples_ia64_v2.0/multiplex.c,
src/libpfm-3.y/examples_ia64_v2.0/notify_self.c,
src/libpfm-3.y/examples_ia64_v2.0/notify_self2.c,
src/libpfm-3.y/examples_ia64_v2.0/notify_self3.c,
.../examples_ia64_v2.0/notify_self_fork.c,
src/libpfm-3.y/examples_ia64_v2.0/self.c,
src/libpfm-3.y/examples_ia64_v2.0/showreset.c,
src/libpfm-3.y/examples_ia64_v2.0/syst.c,
src/libpfm-3.y/examples_ia64_v2.0/task.c,
src/libpfm-3.y/examples_ia64_v2.0/task_attach.c,
.../examples_ia64_v2.0/task_attach_timeout.c,
src/libpfm-3.y/examples_ia64_v2.0/task_smpl.c,
src/libpfm-3.y/examples_ia64_v2.0/whichpmu.c,
src/libpfm-3.y/examples_v2.x/Makefile,
src/libpfm-3.y/examples_v2.x/check_events.c,
src/libpfm-3.y/examples_v2.x/detect_pmcs.c,
src/libpfm-3.y/examples_v2.x/detect_pmcs.h,
src/libpfm-3.y/examples_v2.x/ia64/Makefile,
src/libpfm-3.y/examples_v2.x/ia64/ita2_btb.c,
src/libpfm-3.y/examples_v2.x/ia64/ita2_dear.c,
src/libpfm-3.y/examples_v2.x/ia64/ita2_irr.c,
src/libpfm-3.y/examples_v2.x/ia64/ita2_opcode.c,
src/libpfm-3.y/examples_v2.x/ia64/ita2_rr.c,
src/libpfm-3.y/examples_v2.x/ia64/ita_btb.c,
src/libpfm-3.y/examples_v2.x/ia64/ita_dear.c,
src/libpfm-3.y/examples_v2.x/ia64/ita_irr.c,
src/libpfm-3.y/examples_v2.x/ia64/ita_opcode.c,
src/libpfm-3.y/examples_v2.x/ia64/ita_rr.c,
src/libpfm-3.y/examples_v2.x/ia64/mont_dear.c,
src/libpfm-3.y/examples_v2.x/ia64/mont_etb.c,
src/libpfm-3.y/examples_v2.x/ia64/mont_irr.c,
src/libpfm-3.y/examples_v2.x/ia64/mont_opcode.c,
src/libpfm-3.y/examples_v2.x/ia64/mont_rr.c,
src/libpfm-3.y/examples_v2.x/multiplex.c,
src/libpfm-3.y/examples_v2.x/multiplex2.c,
src/libpfm-3.y/examples_v2.x/notify_self.c,
src/libpfm-3.y/examples_v2.x/notify_self2.c,
src/libpfm-3.y/examples_v2.x/notify_self3.c,
src/libpfm-3.y/examples_v2.x/notify_self_fork.c,
src/libpfm-3.y/examples_v2.x/pfmsetup.c,
src/libpfm-3.y/examples_v2.x/rtop.c,
src/libpfm-3.y/examples_v2.x/self.c,
src/libpfm-3.y/examples_v2.x/self_pipe.c,
src/libpfm-3.y/examples_v2.x/self_smpl.c,
src/libpfm-3.y/examples_v2.x/self_smpl_multi.c,
src/libpfm-3.y/examples_v2.x/self_view.c,
src/libpfm-3.y/examples_v2.x/set_notify.c,
src/libpfm-3.y/examples_v2.x/showevtinfo.c,
src/libpfm-3.y/examples_v2.x/showreginfo.c,
src/libpfm-3.y/examples_v2.x/syst.c,
src/libpfm-3.y/examples_v2.x/syst_multi_np.c,
src/libpfm-3.y/examples_v2.x/syst_np.c,
src/libpfm-3.y/examples_v2.x/task.c,
src/libpfm-3.y/examples_v2.x/task_attach.c,
src/libpfm-3.y/examples_v2.x/task_attach_timeout.c,
.../examples_v2.x/task_attach_timeout_np.c,
src/libpfm-3.y/examples_v2.x/task_smpl.c,
src/libpfm-3.y/examples_v2.x/task_smpl_user.c,
src/libpfm-3.y/examples_v2.x/whichpmu.c,
src/libpfm-3.y/examples_v2.x/x86/Makefile,
src/libpfm-3.y/examples_v2.x/x86/smpl_amd64_ibs.c,
src/libpfm-3.y/examples_v2.x/x86/smpl_core_pebs.c,
src/libpfm-3.y/examples_v2.x/x86/smpl_nhm_lbr.c,
src/libpfm-3.y/examples_v2.x/x86/smpl_p4_pebs.c,
src/libpfm-3.y/examples_v2.x/x86/smpl_pebs.c,
src/libpfm-3.y/examples_v3.x/Makefile,
src/libpfm-3.y/examples_v3.x/check_events.c,
src/libpfm-3.y/examples_v3.x/detect_pmcs.c,
src/libpfm-3.y/examples_v3.x/detect_pmcs.h,
src/libpfm-3.y/examples_v3.x/ia64/Makefile,
src/libpfm-3.y/examples_v3.x/ia64/ita2_btb.c,
src/libpfm-3.y/examples_v3.x/ia64/ita2_dear.c,
src/libpfm-3.y/examples_v3.x/ia64/ita2_irr.c,
src/libpfm-3.y/examples_v3.x/ia64/ita2_opcode.c,
src/libpfm-3.y/examples_v3.x/ia64/ita2_rr.c,
src/libpfm-3.y/examples_v3.x/ia64/ita_btb.c,
src/libpfm-3.y/examples_v3.x/ia64/ita_dear.c,
src/libpfm-3.y/examples_v3.x/ia64/ita_irr.c,
src/libpfm-3.y/examples_v3.x/ia64/ita_opcode.c,
src/libpfm-3.y/examples_v3.x/ia64/ita_rr.c,
src/libpfm-3.y/examples_v3.x/ia64/mont_dear.c,
src/libpfm-3.y/examples_v3.x/ia64/mont_etb.c,
src/libpfm-3.y/examples_v3.x/ia64/mont_irr.c,
src/libpfm-3.y/examples_v3.x/ia64/mont_opcode.c,
src/libpfm-3.y/examples_v3.x/ia64/mont_rr.c,
src/libpfm-3.y/examples_v3.x/multiplex.c,
src/libpfm-3.y/examples_v3.x/multiplex2.c,
src/libpfm-3.y/examples_v3.x/notify_self.c,
src/libpfm-3.y/examples_v3.x/notify_self2.c,
src/libpfm-3.y/examples_v3.x/notify_self3.c,
src/libpfm-3.y/examples_v3.x/notify_self_fork.c,
src/libpfm-3.y/examples_v3.x/pfmsetup.c,
src/libpfm-3.y/examples_v3.x/rtop.c,
src/libpfm-3.y/examples_v3.x/self.c,
src/libpfm-3.y/examples_v3.x/self_pipe.c,
src/libpfm-3.y/examples_v3.x/self_smpl_multi.c,
src/libpfm-3.y/examples_v3.x/set_notify.c,
src/libpfm-3.y/examples_v3.x/showevtinfo.c,
src/libpfm-3.y/examples_v3.x/showreginfo.c,
src/libpfm-3.y/examples_v3.x/syst.c,
src/libpfm-3.y/examples_v3.x/task.c,
src/libpfm-3.y/examples_v3.x/task_attach.c,
src/libpfm-3.y/examples_v3.x/task_attach_timeout.c,
src/libpfm-3.y/examples_v3.x/task_smpl.c,
src/libpfm-3.y/examples_v3.x/task_smpl_user.c,
src/libpfm-3.y/examples_v3.x/whichpmu.c,
src/libpfm-3.y/examples_v3.x/x86/Makefile,
src/libpfm-3.y/examples_v3.x/x86/smpl_amd64_ibs.c,
src/libpfm-3.y/examples_v3.x/x86/smpl_core_pebs.c,
.../examples_v3.x/x86/smpl_core_pebs_sys.c,
src/libpfm-3.y/examples_v3.x/x86/smpl_p4_pebs.c,
src/libpfm-3.y/include/Makefile,
src/libpfm-3.y/include/perfmon/perfmon.h,
src/libpfm-3.y/include/perfmon/perfmon_compat.h,
src/libpfm-3.y/include/perfmon/perfmon_crayx2.h,
.../include/perfmon/perfmon_default_smpl.h,
src/libpfm-3.y/include/perfmon/perfmon_dfl_smpl.h,
src/libpfm-3.y/include/perfmon/perfmon_i386.h,
src/libpfm-3.y/include/perfmon/perfmon_ia64.h,
src/libpfm-3.y/include/perfmon/perfmon_mips64.h,
.../include/perfmon/perfmon_pebs_core_smpl.h,
.../include/perfmon/perfmon_pebs_p4_smpl.h,
src/libpfm-3.y/include/perfmon/perfmon_pebs_smpl.h,
src/libpfm-3.y/include/perfmon/perfmon_powerpc.h,
src/libpfm-3.y/include/perfmon/perfmon_sparc.h,
src/libpfm-3.y/include/perfmon/perfmon_v2.h,
src/libpfm-3.y/include/perfmon/perfmon_x86_64.h,
src/libpfm-3.y/include/perfmon/pfmlib.h,
src/libpfm-3.y/include/perfmon/pfmlib_amd64.h,
src/libpfm-3.y/include/perfmon/pfmlib_cell.h,
src/libpfm-3.y/include/perfmon/pfmlib_comp.h,
.../include/perfmon/pfmlib_comp_crayx2.h,
src/libpfm-3.y/include/perfmon/pfmlib_comp_i386.h,
src/libpfm-3.y/include/perfmon/pfmlib_comp_ia64.h,
.../include/perfmon/pfmlib_comp_mips64.h,
.../include/perfmon/pfmlib_comp_powerpc.h,
src/libpfm-3.y/include/perfmon/pfmlib_comp_sparc.h,
.../include/perfmon/pfmlib_comp_x86_64.h,
src/libpfm-3.y/include/perfmon/pfmlib_core.h,
src/libpfm-3.y/include/perfmon/pfmlib_coreduo.h,
src/libpfm-3.y/include/perfmon/pfmlib_crayx2.h,
src/libpfm-3.y/include/perfmon/pfmlib_gen_ia32.h,
src/libpfm-3.y/include/perfmon/pfmlib_gen_ia64.h,
src/libpfm-3.y/include/perfmon/pfmlib_gen_mips64.h,
src/libpfm-3.y/include/perfmon/pfmlib_i386_p6.h,
src/libpfm-3.y/include/perfmon/pfmlib_intel_atom.h,
src/libpfm-3.y/include/perfmon/pfmlib_intel_nhm.h,
src/libpfm-3.y/include/perfmon/pfmlib_itanium.h,
src/libpfm-3.y/include/perfmon/pfmlib_itanium2.h,
src/libpfm-3.y/include/perfmon/pfmlib_montecito.h,
src/libpfm-3.y/include/perfmon/pfmlib_os.h,
src/libpfm-3.y/include/perfmon/pfmlib_os_crayx2.h,
src/libpfm-3.y/include/perfmon/pfmlib_os_i386.h,
src/libpfm-3.y/include/perfmon/pfmlib_os_ia64.h,
src/libpfm-3.y/include/perfmon/pfmlib_os_mips64.h,
src/libpfm-3.y/include/perfmon/pfmlib_os_powerpc.h,
src/libpfm-3.y/include/perfmon/pfmlib_os_sparc.h,
src/libpfm-3.y/include/perfmon/pfmlib_os_x86_64.h,
src/libpfm-3.y/include/perfmon/pfmlib_pentium4.h,
src/libpfm-3.y/include/perfmon/pfmlib_powerpc.h,
src/libpfm-3.y/include/perfmon/pfmlib_sicortex.h,
src/libpfm-3.y/include/perfmon/pfmlib_sparc.h,
src/libpfm-3.y/lib/Makefile, src/libpfm-3.y/lib/amd64_events.h,
src/libpfm-3.y/lib/amd64_events_fam10h.h,
src/libpfm-3.y/lib/amd64_events_fam15h.h,
src/libpfm-3.y/lib/amd64_events_k7.h,
src/libpfm-3.y/lib/amd64_events_k8.h,
src/libpfm-3.y/lib/cell_events.h, src/libpfm-3.y/lib/core_events.h,
src/libpfm-3.y/lib/coreduo_events.h,
src/libpfm-3.y/lib/crayx2_events.h,
src/libpfm-3.y/lib/gen_ia32_events.h,
src/libpfm-3.y/lib/gen_mips64_events.h,
src/libpfm-3.y/lib/i386_p6_events.h,
src/libpfm-3.y/lib/intel_atom_events.h,
src/libpfm-3.y/lib/intel_corei7_events.h,
src/libpfm-3.y/lib/intel_corei7_unc_events.h,
src/libpfm-3.y/lib/intel_wsm_events.h,
src/libpfm-3.y/lib/intel_wsm_unc_events.h,
src/libpfm-3.y/lib/itanium2_events.h,
src/libpfm-3.y/lib/itanium_events.h,
src/libpfm-3.y/lib/montecito_events.h,
src/libpfm-3.y/lib/niagara1_events.h,
src/libpfm-3.y/lib/niagara2_events.h,
src/libpfm-3.y/lib/pentium4_events.h,
src/libpfm-3.y/lib/pfmlib_amd64.c,
src/libpfm-3.y/lib/pfmlib_amd64_priv.h,
src/libpfm-3.y/lib/pfmlib_cell.c,
src/libpfm-3.y/lib/pfmlib_cell_priv.h,
src/libpfm-3.y/lib/pfmlib_common.c,
src/libpfm-3.y/lib/pfmlib_core.c,
src/libpfm-3.y/lib/pfmlib_core_priv.h,
src/libpfm-3.y/lib/pfmlib_coreduo.c,
src/libpfm-3.y/lib/pfmlib_coreduo_priv.h,
src/libpfm-3.y/lib/pfmlib_crayx2.c,
src/libpfm-3.y/lib/pfmlib_crayx2_priv.h,
src/libpfm-3.y/lib/pfmlib_gen_ia32.c,
src/libpfm-3.y/lib/pfmlib_gen_ia32_priv.h,
src/libpfm-3.y/lib/pfmlib_gen_ia64.c,
src/libpfm-3.y/lib/pfmlib_gen_mips64.c,
src/libpfm-3.y/lib/pfmlib_gen_mips64_priv.h,
src/libpfm-3.y/lib/pfmlib_gen_powerpc.c,
src/libpfm-3.y/lib/pfmlib_i386_p6.c,
src/libpfm-3.y/lib/pfmlib_i386_p6_priv.h,
src/libpfm-3.y/lib/pfmlib_intel_atom.c,
src/libpfm-3.y/lib/pfmlib_intel_atom_priv.h,
src/libpfm-3.y/lib/pfmlib_intel_nhm.c,
src/libpfm-3.y/lib/pfmlib_intel_nhm_priv.h,
src/libpfm-3.y/lib/pfmlib_itanium.c,
src/libpfm-3.y/lib/pfmlib_itanium2.c,
src/libpfm-3.y/lib/pfmlib_itanium2_priv.h,
src/libpfm-3.y/lib/pfmlib_itanium_priv.h,
src/libpfm-3.y/lib/pfmlib_montecito.c,
src/libpfm-3.y/lib/pfmlib_montecito_priv.h,
src/libpfm-3.y/lib/pfmlib_os_linux.c,
src/libpfm-3.y/lib/pfmlib_os_linux_v2.c,
src/libpfm-3.y/lib/pfmlib_os_linux_v3.c,
src/libpfm-3.y/lib/pfmlib_os_macos.c,
src/libpfm-3.y/lib/pfmlib_pentium4.c,
src/libpfm-3.y/lib/pfmlib_pentium4_priv.h,
src/libpfm-3.y/lib/pfmlib_power4_priv.h,
src/libpfm-3.y/lib/pfmlib_power5+_priv.h,
src/libpfm-3.y/lib/pfmlib_power5_priv.h,
src/libpfm-3.y/lib/pfmlib_power6_priv.h,
src/libpfm-3.y/lib/pfmlib_power7_priv.h,
src/libpfm-3.y/lib/pfmlib_power_priv.h,
src/libpfm-3.y/lib/pfmlib_powerpc_priv.h,
src/libpfm-3.y/lib/pfmlib_ppc970_priv.h,
src/libpfm-3.y/lib/pfmlib_ppc970mp_priv.h,
src/libpfm-3.y/lib/pfmlib_priv.c, src/libpfm-3.y/lib/pfmlib_priv.h,
src/libpfm-3.y/lib/pfmlib_priv_comp.h,
src/libpfm-3.y/lib/pfmlib_priv_comp_ia64.h,
src/libpfm-3.y/lib/pfmlib_priv_ia64.h,
src/libpfm-3.y/lib/pfmlib_sicortex.c,
src/libpfm-3.y/lib/pfmlib_sicortex_priv.h,
src/libpfm-3.y/lib/pfmlib_sparc.c,
src/libpfm-3.y/lib/pfmlib_sparc_priv.h,
src/libpfm-3.y/lib/power4_events.h,
src/libpfm-3.y/lib/power5+_events.h,
src/libpfm-3.y/lib/power5_events.h,
src/libpfm-3.y/lib/power6_events.h,
src/libpfm-3.y/lib/power7_events.h,
src/libpfm-3.y/lib/powerpc_events.h,
src/libpfm-3.y/lib/powerpc_reg.h,
src/libpfm-3.y/lib/ppc970_events.h,
src/libpfm-3.y/lib/ppc970mp_events.h,
src/libpfm-3.y/lib/ultra12_events.h,
src/libpfm-3.y/lib/ultra3_events.h,
src/libpfm-3.y/lib/ultra3i_events.h,
src/libpfm-3.y/lib/ultra3plus_events.h,
src/libpfm-3.y/lib/ultra4plus_events.h,
src/libpfm-3.y/libpfms/Makefile,
src/libpfm-3.y/libpfms/include/libpfms.h,
src/libpfm-3.y/libpfms/lib/Makefile,
src/libpfm-3.y/libpfms/lib/libpfms.c,
src/libpfm-3.y/libpfms/syst_smp.c, src/libpfm-3.y/python/Makefile,
src/libpfm-3.y/python/README, src/libpfm-3.y/python/self.py,
src/libpfm-3.y/python/setup.py,
src/libpfm-3.y/python/src/__init__.py,
src/libpfm-3.y/python/src/perfmon_int.i,
src/libpfm-3.y/python/src/pmu.py,
src/libpfm-3.y/python/src/session.py, src/libpfm-3.y/python/sys.py,
src/libpfm-3.y/rules.mk, src/perfctr-2.6.x/CHANGES,
src/perfctr-2.6.x/COPYING, src/perfctr-2.6.x/INSTALL,
src/perfctr-2.6.x/Makefile, src/perfctr-2.6.x/OTHER,
src/perfctr-2.6.x/README, src/perfctr-2.6.x/TODO,
src/perfctr-2.6.x/etc/Makefile,
src/perfctr-2.6.x/etc/costs/Athlon-1.2,
src/perfctr-2.6.x/etc/costs/Athlon-1.46,
src/perfctr-2.6.x/etc/costs/Athlon-1.66,
src/perfctr-2.6.x/etc/costs/Athlon-1000,
src/perfctr-2.6.x/etc/costs/Athlon-500,
src/perfctr-2.6.x/etc/costs/Athlon-700,
src/perfctr-2.6.x/etc/costs/Athlon-850,
src/perfctr-2.6.x/etc/costs/Athlon64-2.0,
src/perfctr-2.6.x/etc/costs/Core-i7-920-2.66,
src/perfctr-2.6.x/etc/costs/Core2-2.4,
src/perfctr-2.6.x/etc/costs/Core2-E8400-3.0,
src/perfctr-2.6.x/etc/costs/Duron-750,
src/perfctr-2.6.x/etc/costs/K6-III-400,
src/perfctr-2.6.x/etc/costs/MPC7400-400,
src/perfctr-2.6.x/etc/costs/MPC7447A-1.25,
src/perfctr-2.6.x/etc/costs/MPC7455-1.0,
src/perfctr-2.6.x/etc/costs/Opteron-1.4,
src/perfctr-2.6.x/etc/costs/Opteron-2.4,
src/perfctr-2.6.x/etc/costs/Opteron-2352-2.1,
src/perfctr-2.6.x/etc/costs/Opteron-8354-2.2,
src/perfctr-2.6.x/etc/costs/Opteron-8384-2.7,
src/perfctr-2.6.x/etc/costs/PPC750-300,
src/perfctr-2.6.x/etc/costs/Pentium-133,
src/perfctr-2.6.x/etc/costs/Pentium4-1.5,
src/perfctr-2.6.x/etc/costs/Pentium4-1.6,
src/perfctr-2.6.x/etc/costs/Pentium4-1.7,
src/perfctr-2.6.x/etc/costs/Pentium4-2.0,
src/perfctr-2.6.x/etc/costs/Pentium4-2.26,
src/perfctr-2.6.x/etc/costs/Pentium4-3.0,
src/perfctr-2.6.x/etc/costs/Pentium4Xeon-2.2,
src/perfctr-2.6.x/etc/costs/Pentium4Xeon-2.4,
src/perfctr-2.6.x/etc/costs/Pentium4Xeon-2.8,
src/perfctr-2.6.x/etc/costs/Pentium4Xeon-3.0,
src/perfctr-2.6.x/etc/costs/PentiumII-266a,
src/perfctr-2.6.x/etc/costs/PentiumII-266b,
src/perfctr-2.6.x/etc/costs/PentiumII-300,
src/perfctr-2.6.x/etc/costs/PentiumII-350,
src/perfctr-2.6.x/etc/costs/PentiumIII-1.0,
src/perfctr-2.6.x/etc/costs/PentiumIII-1.4,
src/perfctr-2.6.x/etc/costs/PentiumIII-450,
src/perfctr-2.6.x/etc/costs/PentiumIII-800,
src/perfctr-2.6.x/etc/costs/PentiumIII-933,
src/perfctr-2.6.x/etc/costs/PentiumIIIXeon-700,
src/perfctr-2.6.x/etc/costs/PentiumM-2.0,
src/perfctr-2.6.x/etc/costs/PentiumMMX-166,
src/perfctr-2.6.x/etc/costs/PentiumMMX-233,
src/perfctr-2.6.x/etc/costs/PentiumPro-200,
src/perfctr-2.6.x/etc/install.sh, src/perfctr-2.6.x/etc/p4.c,
src/perfctr-2.6.x/etc/perfctr.rc,
src/perfctr-2.6.x/etc/perfctr.rules,
src/perfctr-2.6.x/examples/Makefile,
src/perfctr-2.6.x/examples/README,
src/perfctr-2.6.x/examples/global/Makefile,
src/perfctr-2.6.x/examples/global/arch.h,
src/perfctr-2.6.x/examples/global/arm.c,
src/perfctr-2.6.x/examples/global/global.c,
src/perfctr-2.6.x/examples/global/ppc.c,
src/perfctr-2.6.x/examples/global/x86.c,
src/perfctr-2.6.x/examples/perfex/Makefile,
src/perfctr-2.6.x/examples/perfex/arch.h,
src/perfctr-2.6.x/examples/perfex/arm.c,
src/perfctr-2.6.x/examples/perfex/arm.h,
src/perfctr-2.6.x/examples/perfex/perfex.c,
src/perfctr-2.6.x/examples/perfex/ppc.c,
src/perfctr-2.6.x/examples/perfex/ppc.h,
src/perfctr-2.6.x/examples/perfex/x86.c,
src/perfctr-2.6.x/examples/perfex/x86.h,
src/perfctr-2.6.x/examples/self/Makefile,
src/perfctr-2.6.x/examples/self/arch.h,
src/perfctr-2.6.x/examples/self/arm.c,
src/perfctr-2.6.x/examples/self/ppc.c,
src/perfctr-2.6.x/examples/self/self.c,
src/perfctr-2.6.x/examples/self/x86.c,
src/perfctr-2.6.x/examples/signal/Makefile,
src/perfctr-2.6.x/examples/signal/arch.h,
src/perfctr-2.6.x/examples/signal/ppc.c,
src/perfctr-2.6.x/examples/signal/signal.c,
src/perfctr-2.6.x/examples/signal/x86.c,
src/perfctr-2.6.x/linux/drivers/perfctr/Kconfig,
src/perfctr-2.6.x/linux/drivers/perfctr/Makefile,
.../linux/drivers/perfctr/RELEASE-NOTES,
src/perfctr-2.6.x/linux/drivers/perfctr/arm.c,
.../linux/drivers/perfctr/arm_setup.c,
src/perfctr-2.6.x/linux/drivers/perfctr/compat.h,
src/perfctr-2.6.x/linux/drivers/perfctr/cpumask.h,
src/perfctr-2.6.x/linux/drivers/perfctr/global.c,
src/perfctr-2.6.x/linux/drivers/perfctr/global.h,
src/perfctr-2.6.x/linux/drivers/perfctr/init.c,
src/perfctr-2.6.x/linux/drivers/perfctr/marshal.c,
src/perfctr-2.6.x/linux/drivers/perfctr/marshal.h,
src/perfctr-2.6.x/linux/drivers/perfctr/ppc.c,
.../linux/drivers/perfctr/ppc_compat.h,
.../linux/drivers/perfctr/ppc_setup.c,
.../linux/drivers/perfctr/ppc_tests.c,
.../linux/drivers/perfctr/ppc_tests.h,
src/perfctr-2.6.x/linux/drivers/perfctr/version.h,
src/perfctr-2.6.x/linux/drivers/perfctr/virtual.c,
src/perfctr-2.6.x/linux/drivers/perfctr/virtual.h,
.../linux/drivers/perfctr/virtual_stub.c,
src/perfctr-2.6.x/linux/drivers/perfctr/x86.c,
.../linux/drivers/perfctr/x86_compat.h,
.../linux/drivers/perfctr/x86_setup.c,
.../linux/drivers/perfctr/x86_tests.c,
.../linux/drivers/perfctr/x86_tests.h,
src/perfctr-2.6.x/linux/include/asm-arm/perfctr.h,
src/perfctr-2.6.x/linux/include/asm-i386/perfctr.h,
.../linux/include/asm-powerpc/perfctr.h,
src/perfctr-2.6.x/linux/include/asm-ppc/perfctr.h,
src/perfctr-2.6.x/linux/include/asm-x86/perfctr.h,
.../linux/include/asm-x86_64/perfctr.h,
src/perfctr-2.6.x/linux/include/linux/perfctr.h,
src/perfctr-2.6.x/patches/aliases, src/perfctr-2.6.x/patches/patch-
kernel-2.6.10, src/perfctr-2.6.x/patches/patch-kernel-2.6.11,
src/perfctr-2.6.x/patches/patch-kernel-2.6.12,
src/perfctr-2.6.x/patches/patch-kernel-2.6.13,
src/perfctr-2.6.x/patches/patch-kernel-2.6.14,
src/perfctr-2.6.x/patches/patch-kernel-2.6.15,
src/perfctr-2.6.x/patches/patch-kernel-2.6.16, .../patches/patch-
kernel-2.6.16.46-0.12-suse, src/perfctr-2.6.x/patches/patch-
kernel-2.6.17, src/perfctr-2.6.x/patches/patch-kernel-2.6.18,
.../patches/patch-kernel-2.6.18-128.el5-redhat, .../patches/patch-
kernel-2.6.18-164.el5-redhat, .../patches/patch-
kernel-2.6.18-194.el5-redhat, .../patches/patch-
kernel-2.6.18-53.el5-redhat, .../patches/patch-
kernel-2.6.18-8.1.1.el5-redhat, .../patches/patch-
kernel-2.6.18-92.el5-redhat, src/perfctr-2.6.x/patches/patch-
kernel-2.6.19, src/perfctr-2.6.x/patches/patch-kernel-2.6.20,
src/perfctr-2.6.x/patches/patch-kernel-2.6.21,
src/perfctr-2.6.x/patches/patch-kernel-2.6.22,
src/perfctr-2.6.x/patches/patch-kernel-2.6.23,
src/perfctr-2.6.x/patches/patch-kernel-2.6.24,
src/perfctr-2.6.x/patches/patch-kernel-2.6.25,
src/perfctr-2.6.x/patches/patch-kernel-2.6.26,
src/perfctr-2.6.x/patches/patch-kernel-2.6.27,
src/perfctr-2.6.x/patches/patch-kernel-2.6.28,
src/perfctr-2.6.x/patches/patch-kernel-2.6.29,
src/perfctr-2.6.x/patches/patch-kernel-2.6.30,
src/perfctr-2.6.x/patches/patch-kernel-2.6.31,
src/perfctr-2.6.x/patches/patch-kernel-2.6.32,
src/perfctr-2.6.x/patches/patch-kernel-2.6.5, .../patches/patch-
kernel-2.6.5-7.276-suse, src/perfctr-2.6.x/patches/patch-
kernel-2.6.6, src/perfctr-2.6.x/patches/patch-kernel-2.6.7,
src/perfctr-2.6.x/patches/patch-kernel-2.6.8.1,
src/perfctr-2.6.x/patches/patch-kernel-2.6.9, .../patches/patch-
kernel-2.6.9-55.EL-redhat, .../patches/patch-kernel-2.6.9-67.EL-
redhat, .../patches/patch-kernel-2.6.9-78.EL-redhat,
.../patches/patch-kernel-2.6.9-89.EL-redhat,
src/perfctr-2.6.x/perfctr.spec, src/perfctr-2.6.x/update-kernel,
src/perfctr-2.6.x/usr.lib/Makefile,
src/perfctr-2.6.x/usr.lib/arch.h, src/perfctr-2.6.x/usr.lib/arm.c,
src/perfctr-2.6.x/usr.lib/arm.h,
src/perfctr-2.6.x/usr.lib/event_set.h,
src/perfctr-2.6.x/usr.lib/event_set_amd.c,
src/perfctr-2.6.x/usr.lib/event_set_arm.c,
src/perfctr-2.6.x/usr.lib/event_set_centaur.c,
src/perfctr-2.6.x/usr.lib/event_set_p4.c,
src/perfctr-2.6.x/usr.lib/event_set_p5.c,
src/perfctr-2.6.x/usr.lib/event_set_p6.c,
src/perfctr-2.6.x/usr.lib/event_set_ppc.c,
src/perfctr-2.6.x/usr.lib/event_set_x86.c,
src/perfctr-2.6.x/usr.lib/gen-event-codes.c,
src/perfctr-2.6.x/usr.lib/global.c,
src/perfctr-2.6.x/usr.lib/libperfctr.h,
src/perfctr-2.6.x/usr.lib/misc.c, src/perfctr-2.6.x/usr.lib/ppc.c,
src/perfctr-2.6.x/usr.lib/ppc.h,
src/perfctr-2.6.x/usr.lib/virtual.c,
src/perfctr-2.6.x/usr.lib/x86.c, src/perfctr-2.6.x/usr.lib/x86.h,
src/perfctr-2.7.x/CHANGES, src/perfctr-2.7.x/COPYING,
src/perfctr-2.7.x/INSTALL, src/perfctr-2.7.x/Makefile,
src/perfctr-2.7.x/OTHER, src/perfctr-2.7.x/README,
src/perfctr-2.7.x/TODO, src/perfctr-2.7.x/etc/costs/Athlon-1.1,
src/perfctr-2.7.x/etc/costs/Athlon-1.133,
src/perfctr-2.7.x/etc/costs/Athlon-1.2,
src/perfctr-2.7.x/etc/costs/Athlon-1.3,
src/perfctr-2.7.x/etc/costs/Athlon-1.33,
src/perfctr-2.7.x/etc/costs/Athlon-1.46,
src/perfctr-2.7.x/etc/costs/Athlon-1.53,
src/perfctr-2.7.x/etc/costs/Athlon-1.64,
src/perfctr-2.7.x/etc/costs/Athlon-1.66,
src/perfctr-2.7.x/etc/costs/Athlon-1.75,
src/perfctr-2.7.x/etc/costs/Athlon-1.8,
src/perfctr-2.7.x/etc/costs/Athlon-1000,
src/perfctr-2.7.x/etc/costs/Athlon-2.0,
src/perfctr-2.7.x/etc/costs/Athlon-500,
src/perfctr-2.7.x/etc/costs/Athlon-700,
src/perfctr-2.7.x/etc/costs/Athlon-800,
src/perfctr-2.7.x/etc/costs/Athlon-850,
src/perfctr-2.7.x/etc/costs/Athlon64-2.0,
src/perfctr-2.7.x/etc/costs/Athlon64-2.2,
src/perfctr-2.7.x/etc/costs/Athlon64FX-2.2,
src/perfctr-2.7.x/etc/costs/AthlonXP-1800,
src/perfctr-2.7.x/etc/costs/AthlonXPM-2500,
src/perfctr-2.7.x/etc/costs/C3-1.2,
src/perfctr-2.7.x/etc/costs/Celeron-466,
src/perfctr-2.7.x/etc/costs/Celeron-500,
src/perfctr-2.7.x/etc/costs/CyrixMII-233,
src/perfctr-2.7.x/etc/costs/Duron-1.0,
src/perfctr-2.7.x/etc/costs/Duron-600,
src/perfctr-2.7.x/etc/costs/Duron-700,
src/perfctr-2.7.x/etc/costs/Duron-750,
src/perfctr-2.7.x/etc/costs/K6-III-400,
src/perfctr-2.7.x/etc/costs/MPC7400-400,
src/perfctr-2.7.x/etc/costs/MPC7447A-1.35,
src/perfctr-2.7.x/etc/costs/Opteron-1.4,
src/perfctr-2.7.x/etc/costs/Opteron-1.6,
src/perfctr-2.7.x/etc/costs/Opteron-2.0,
src/perfctr-2.7.x/etc/costs/PPC750-300,
src/perfctr-2.7.x/etc/costs/Pentium-133,
src/perfctr-2.7.x/etc/costs/Pentium4-1.5,
src/perfctr-2.7.x/etc/costs/Pentium4-1.6,
src/perfctr-2.7.x/etc/costs/Pentium4-1.7,
src/perfctr-2.7.x/etc/costs/Pentium4-1.8,
src/perfctr-2.7.x/etc/costs/Pentium4-2.2,
src/perfctr-2.7.x/etc/costs/Pentium4-2.26,
src/perfctr-2.7.x/etc/costs/Pentium4-2.66,
src/perfctr-2.7.x/etc/costs/Pentium4-2.8,
src/perfctr-2.7.x/etc/costs/Pentium4-3.0,
src/perfctr-2.7.x/etc/costs/Pentium4-3.4,
src/perfctr-2.7.x/etc/costs/Pentium4M-1.8,
src/perfctr-2.7.x/etc/costs/Pentium4Xeon-2.2,
src/perfctr-2.7.x/etc/costs/Pentium4Xeon-2.4,
src/perfctr-2.7.x/etc/costs/Pentium4Xeon-2.8,
src/perfctr-2.7.x/etc/costs/Pentium4Xeon-3.4,
src/perfctr-2.7.x/etc/costs/PentiumII-266a,
src/perfctr-2.7.x/etc/costs/PentiumII-266b,
src/perfctr-2.7.x/etc/costs/PentiumII-300,
src/perfctr-2.7.x/etc/costs/PentiumII-350,
src/perfctr-2.7.x/etc/costs/PentiumIII-1.0,
src/perfctr-2.7.x/etc/costs/PentiumIII-1.4,
src/perfctr-2.7.x/etc/costs/PentiumIII-450,
src/perfctr-2.7.x/etc/costs/PentiumIII-500,
src/perfctr-2.7.x/etc/costs/PentiumIII-700,
src/perfctr-2.7.x/etc/costs/PentiumIII-733,
src/perfctr-2.7.x/etc/costs/PentiumIII-800,
src/perfctr-2.7.x/etc/costs/PentiumIII-866,
src/perfctr-2.7.x/etc/costs/PentiumIII-900,
src/perfctr-2.7.x/etc/costs/PentiumIII-933,
src/perfctr-2.7.x/etc/costs/PentiumM-1.3,
src/perfctr-2.7.x/etc/costs/PentiumM-1.4,
src/perfctr-2.7.x/etc/costs/PentiumM-1.5,
src/perfctr-2.7.x/etc/costs/PentiumM-1.6,
src/perfctr-2.7.x/etc/costs/PentiumM-1.7,
src/perfctr-2.7.x/etc/costs/PentiumMMX-150,
src/perfctr-2.7.x/etc/costs/PentiumMMX-166,
src/perfctr-2.7.x/etc/costs/PentiumMMX-233,
src/perfctr-2.7.x/etc/costs/PentiumPro-200,
src/perfctr-2.7.x/etc/costs/Sempron-3100+,
src/perfctr-2.7.x/etc/install.sh, src/perfctr-2.7.x/etc/p4.c,
src/perfctr-2.7.x/examples/Makefile,
src/perfctr-2.7.x/examples/README,
src/perfctr-2.7.x/examples/global/Makefile,
src/perfctr-2.7.x/examples/global/arch.h,
src/perfctr-2.7.x/examples/global/global.c,
src/perfctr-2.7.x/examples/global/ppc.c,
src/perfctr-2.7.x/examples/global/x86.c,
src/perfctr-2.7.x/examples/perfex/Makefile,
src/perfctr-2.7.x/examples/perfex/arch.h,
src/perfctr-2.7.x/examples/perfex/perfex.c,
src/perfctr-2.7.x/examples/perfex/ppc.c,
src/perfctr-2.7.x/examples/perfex/ppc.h,
src/perfctr-2.7.x/examples/perfex/ppc64.c,
src/perfctr-2.7.x/examples/perfex/ppc64.h,
src/perfctr-2.7.x/examples/perfex/x86.c,
src/perfctr-2.7.x/examples/perfex/x86.h,
src/perfctr-2.7.x/examples/self/Makefile,
src/perfctr-2.7.x/examples/self/arch.h,
src/perfctr-2.7.x/examples/self/ppc.c,
src/perfctr-2.7.x/examples/self/ppc64.c,
src/perfctr-2.7.x/examples/self/self.c,
src/perfctr-2.7.x/examples/self/x86.c,
src/perfctr-2.7.x/examples/signal/Makefile,
src/perfctr-2.7.x/examples/signal/arch.h,
src/perfctr-2.7.x/examples/signal/ppc.c,
src/perfctr-2.7.x/examples/signal/ppc64.c,
src/perfctr-2.7.x/examples/signal/signal.c,
src/perfctr-2.7.x/examples/signal/x86.c,
.../linux/Documentation/perfctr/low-level-api.txt,
.../Documentation/perfctr/low-level-ppc32.txt,
.../linux/Documentation/perfctr/low-level-x86.txt,
.../linux/Documentation/perfctr/overview.txt,
.../linux/Documentation/perfctr/virtual.txt,
src/perfctr-2.7.x/linux/drivers/perfctr/Kconfig,
src/perfctr-2.7.x/linux/drivers/perfctr/Makefile,
.../linux/drivers/perfctr/RELEASE-NOTES,
src/perfctr-2.7.x/linux/drivers/perfctr/cpumask.h,
src/perfctr-2.7.x/linux/drivers/perfctr/init.c,
src/perfctr-2.7.x/linux/drivers/perfctr/ppc.c,
src/perfctr-2.7.x/linux/drivers/perfctr/ppc64.c,
.../linux/drivers/perfctr/ppc64_tests.c,
.../linux/drivers/perfctr/ppc64_tests.h,
.../linux/drivers/perfctr/ppc_tests.c,
.../linux/drivers/perfctr/ppc_tests.h,
src/perfctr-2.7.x/linux/drivers/perfctr/version.h,
src/perfctr-2.7.x/linux/drivers/perfctr/virtual.c,
src/perfctr-2.7.x/linux/drivers/perfctr/virtual.h,
src/perfctr-2.7.x/linux/drivers/perfctr/x86.c,
.../linux/drivers/perfctr/x86_tests.c,
.../linux/drivers/perfctr/x86_tests.h,
src/perfctr-2.7.x/linux/include/asm-i386/perfctr.h,
src/perfctr-2.7.x/linux/include/asm-ppc/perfctr.h,
.../linux/include/asm-ppc64/perfctr.h,
.../linux/include/asm-x86_64/perfctr.h,
src/perfctr-2.7.x/linux/include/linux/perfctr.h,
src/perfctr-2.7.x/patches/patch-kernel-2.6.11,
src/perfctr-2.7.x/patches/patch-kernel-2.6.12-rc1,
.../patches/patch-kernel-2.6.12-rc1-mm1, .../patches/patch-
kernel-2.6.12-rc1-mm3, .../patches/patch-kernel-2.6.12-rc1-mm4,
src/perfctr-2.7.x/patches/patch-kernel-2.6.12-rc2,
src/perfctr-2.7.x/patches/patch-kernel-2.6.12-rc5,
src/perfctr-2.7.x/patches/patch-kernel-2.6.14,
src/perfctr-2.7.x/patches/patch-kernel-2.6.14-mm1,
.../patches/patch-kernel-2.6.14-rc5-mm1,
src/perfctr-2.7.x/patches/patch-kernel-2.6.16, .../patches/patch-
kernel-2.6.16.21-SLES10, src/perfctr-2.7.x/patches/patch-
kernel-2.6.17, src/perfctr-2.7.x/patches/patch-kernel-2.6.18,
src/perfctr-2.7.x/patches/patch-kernel-2.6.18-rc4,
src/perfctr-2.7.x/patches/patch-kernel-2.6.19,
src/perfctr-2.7.x/patches/patch-kernel-2.6.20,
src/perfctr-2.7.x/patches/patch-kernel-2.6.21,
src/perfctr-2.7.x/patches/patch-kernel-2.6.22,
src/perfctr-2.7.x/perfctr.spec, src/perfctr-2.7.x/update-kernel,
src/perfctr-2.7.x/usr.lib/Makefile,
src/perfctr-2.7.x/usr.lib/arch.h,
src/perfctr-2.7.x/usr.lib/event_set.h,
src/perfctr-2.7.x/usr.lib/event_set_amd.c,
src/perfctr-2.7.x/usr.lib/event_set_centaur.c,
src/perfctr-2.7.x/usr.lib/event_set_p4.c,
src/perfctr-2.7.x/usr.lib/event_set_p5.c,
src/perfctr-2.7.x/usr.lib/event_set_p6.c,
src/perfctr-2.7.x/usr.lib/event_set_ppc.c,
src/perfctr-2.7.x/usr.lib/event_set_ppc64.c,
src/perfctr-2.7.x/usr.lib/event_set_x86.c,
src/perfctr-2.7.x/usr.lib/gen-event-codes.c,
src/perfctr-2.7.x/usr.lib/global.c,
src/perfctr-2.7.x/usr.lib/libperfctr.h,
src/perfctr-2.7.x/usr.lib/misc.c, src/perfctr-2.7.x/usr.lib/ppc.c,
src/perfctr-2.7.x/usr.lib/ppc.h, src/perfctr-2.7.x/usr.lib/ppc64.c,
src/perfctr-2.7.x/usr.lib/ppc64.h,
src/perfctr-2.7.x/usr.lib/virtual.c,
src/perfctr-2.7.x/usr.lib/x86.c, src/perfctr-2.7.x/usr.lib/x86.h,
src/perfctr-2.7.x/usr.lib/x86_cpuid.S,
src/perfctr-2.7.x/usr.lib/x86_cpuinfo.c,
src/perfctr-2.7.x/usr.lib/x86_cpuinfo.h: perfctr: Remove the
obsolete bundled perfctr and libpfm-3.y code perfctr was an
earlier project that provided access to a processor's performance
monitoring hardware on Linux. Over time Linux has developed its
own infrastructure to access the performance monitoring hardware
via the perf_event_open syscall. The perfctr kernel patches and
user-space code has not been updated to work with current kernels.
PAPI has included bundled perfctr and libpfm-3.y code to make use
of the perfctr interface, but it is no longer useful. In the
interest of making the PAPI code more compact the obsolete bundled
perfctr and libpfm-3.y code have been removed.
2024-06-27 Treece Burgess <[email protected]>
* src/papi.c: Updating documentation for PAPI_read and PAPI_accum
based off feedback.
* src/papi.c: Update doxygen documentation to make note of the
differences between PAPI_read and PAPI_accum. Specifically the
second parameter in PAPI_accum must be initialized.
2024-02-29 Daniel Barry <[email protected]>
* src/components/sysdetect/arm_cpu_utils.c: sysdetect: add support
for ARM Neoverse V2 Add cache information for ARM Neoverse V2, per
the Reference Manual:
https://developer.arm.com/documentation/102375/0002?lang=en These
changes have been tested on the ARM Neoverse V2 architecture.
Wed Jun 19 23:32:25 2024 -0700 Stephane Eranian <[email protected]>
* src/libpfm4/README, src/libpfm4/docs/Makefile,
src/libpfm4/docs/man3/libpfm_intel_gnr.3,
src/libpfm4/include/perfmon/pfmlib.h, src/libpfm4/lib/Makefile,
src/libpfm4/lib/events/intel_gnr_events.h,
src/libpfm4/lib/events/intel_spr_events.h,
src/libpfm4/lib/pfmlib_common.c,
src/libpfm4/lib/pfmlib_intel_gnr.c, src/libpfm4/lib/pfmlib_priv.h,
src/libpfm4/lib/pfmlib_s390x_cpumf.c,
src/libpfm4/tests/validate_x86.c: Update libpfm4 Current with
commit 92c52017d7395c4040ec22949ee8c7f17bc5b4f7 add missing
pfmlib_intel_gnr.c file To complete the Intel GraniteRapids
support. Was missing from commit 23d0b7c47c2e ("add Intel
GraniteRapids core PMU support") Sorry about that. commit
44a55dd97c929087b4ca93540f6bbb2d2efffd15 s390: Fix calloc compiler
error for gcc14 The definition of calloc is as follows: void
*calloc(size_t nmemb, size_t size); number of members is in the
first parameter and the size is in the second parameter. Fix error
message on the gcc 14 20240102: error: 'calloc' sizes specified
with 'sizeof' in the earlier argument and not in the later argument
... by adhering to the calloc() calling convention. Output before:
# make Entering directory '/root/perfmon2-libpfm4/lib' cc -g -Wall
-Werror -Wextra -Wno-unused-parameter -I. \
-I/root/perfmon2-libpfm4/lib/../include -DCONFIG_PFMLIB_DEBUG \
-DCONFIG_PFMLIB_OS_LINUX -DCONFIG_PFMLIB_NOTRACEPOINT \
-DHAS_OPENAT -D_REENTRANT -I. -fvisibility=hidden \
-DCONFIG_PFMLIB_ARCH_S390X -I. -c pfmlib_s390x_cpumf.c
pfmlib_s390x_cpumf.c: In function ‘pfm_cpumcf_init’:
pfmlib_s390x_cpumf.c:221:26: error: ‘calloc’ sizes specified with \
‘sizeof’ in the earlier argument and not in the later argument \
[-Werror=calloc-transposed-args] 221 | cpumcf_pe =
calloc(sizeof(*cpumcf_pe), cfvn_set_count): |
^ pfmlib_s390x_cpumf.c:221:26: note: earlier argument should
specify number of elements, later size of each element Acked-by:
Sumanth Korikkar <[email protected]> commit
23d0b7c47c2ec06334b3eb378bfc3568b08e0042 add Intel GraniteRapids
core PMU support Based on JSON event files published on
github.com/Intel/perfmon version 1.02, dated 05/10/2024 commit
489a940be48980956b27dda89de1eb91b01f185d fix Intel SPR
inst_retired umask flags Were missing PEBS and fixed event code
umask (ANY) was not encoded properly. inst_retired.any -> fixed
counter 0 encoding 0x100 inst_retired.any_p -> generic counter
encoding 0x00c0 commit ace21560113100f4ab5032e99753459ed9da7049
fix validate_x86.c Intel SPR/EMR inst_retired tests They were not
using the proper event codes for the different versions of
inst_retired. Note: Built PAPI with Intel Xeon Gold 6430 (SPR)
with GCC 14. No errors occured during build. Unable to test Granite
Rapids support due to the PAPI team not having access to a machine
with Granite Rapids. Unable to test instr_retired fixes due to no
access to Emerald Rapids and events not available on Sapphire
Rapids machine we have access to.
2024-06-25 Daniel Barry <[email protected]>
* README.md: readme: updated FAQ page Edit to the README to point to
the new live FAQ webpage.
2024-06-21 Daniel Barry <[email protected]>
* PAPI_FAQ.html: FAQ: update outdated links Replace outdated links
with newer equivalents.
* INSTALL.txt: install: remove outdated instructions Remove outdated
and incorrect instructions from the INSTALL.txt file.
2024-06-20 Daniel Barry <[email protected]>
* PAPI_FAQ.html: FAQ: Update to address MacOS question A common
question raised in issues and on the mailing list is whether or not
PAPI supports MacOS.
Fri Jun 14 22:14:05 2024 -0700 Stephane Eranian <[email protected]>
* src/libpfm4/lib/events/intel_adl_grt_events.h: Update libpfm4
Current with commit 4bdeb7e067363013257460bdb6c3dbae778b5634 Fix
encoding of inst_retired.* on Alderlake E-core Was returning event
code 0x0 for both .any and .any_p umasks. any_p refers to the
generic counter encoding which uses event code 0xc0. Note: Unable