Blame SOURCES/papi-rhbz2037417.patch

08a4e6
commit 6964aa356fa606f320c7b871123aceb5c1f21999
08a4e6
Author: Masahiko, Yamada <yamada.masahiko@fujitsu.com>
08a4e6
Date:   Tue Aug 24 14:17:29 2021 +0900
08a4e6
08a4e6
    Fix the PAPI_FUL_CCY setting for a64fx
08a4e6
    
08a4e6
    In a64fx, the maximum number of instruction commits is 4, so the following setting was incorrect.
08a4e6
    PAPI_FUL_CCY=CPU_CYCLES-0INST_COMMIT-1INST_COMMIT-2INST_COMMIT-3INST_COMMIT-4INST_COMMIT
08a4e6
    
08a4e6
    The correct settings are:.
08a4e6
    PAPI_FUL_CCY=CPU_CYCLES-0INST_COMMIT-1INST_COMMIT-2INST_COMMIT-3INST_COMMIT
08a4e6
08a4e6
diff --git a/src/papi_events.csv b/src/papi_events.csv
08a4e6
index 4ef647959..74deb712f 100644
08a4e6
--- a/src/papi_events.csv
08a4e6
+++ b/src/papi_events.csv
08a4e6
@@ -1934,7 +1934,7 @@ PRESET,PAPI_PRF_DM,DERIVED_SUB,L2D_CACHE_REFILL_PRF,L2D_CACHE_MIBMCH_PRF
08a4e6
 PRESET,PAPI_MEM_SCY,NOT_DERIVED,LD_COMP_WAIT_L2_MISS
08a4e6
 PRESET,PAPI_STL_ICY,DERIVED_ADD,STALL_FRONTEND,STALL_BACKEND
08a4e6
 PRESET,PAPI_STL_CCY,NOT_DERIVED,0INST_COMMIT
08a4e6
-PRESET,PAPI_FUL_CCY,DERIVED_SUB,CPU_CYCLES,0INST_COMMIT,1INST_COMMIT,2INST_COMMIT,3INST_COMMIT,4INST_COMMIT
08a4e6
+PRESET,PAPI_FUL_CCY,DERIVED_SUB,CPU_CYCLES,0INST_COMMIT,1INST_COMMIT,2INST_COMMIT,3INST_COMMIT
08a4e6
 PRESET,PAPI_HW_INT,DERIVED_ADD,EXC_IRQ,EXC_FIQ
08a4e6
 PRESET,PAPI_BR_MSP,NOT_DERIVED,BR_MIS_PRED
08a4e6
 PRESET,PAPI_BR_PRC,DERIVED_SUB,BR_PRED,BR_MIS_PRED
08a4e6
commit fbf3b9e3d17c4ec4bd7e33410c44fc5aed57e36f
08a4e6
Author: Masahiko, Yamada <yamada.masahiko@fujitsu.com>
08a4e6
Date:   Fri Mar 4 15:41:30 2022 +0900
08a4e6
08a4e6
    Add PAPI idle-related preset events for a64fx
08a4e6
    
08a4e6
    For a64fx, add four PAPI idle-related preset events
08a4e6
    (PAPI_BRU_IDL/PAPI_FXU_IDL/PAPI_FPU_IDL/PAPI_LSU_IDL).
08a4e6
    
08a4e6
     PAPI_BRU_IDL = BR_COMP_WAIT
08a4e6
     PAPI_FXU_IDL = EU_COMP_WAIT - FL_COMP_WAIT
08a4e6
     PAPI_FPU_IDL = FL_COMP_WAIT
08a4e6
     PAPI_LSU_IDL = LD_COMP_WAIT
08a4e6
    
08a4e6
    The specifications of BR_COMP_WAIT, EU_COMP_WAIT, FL_COMP_WAIT,
08a4e6
    and LD_COMP_WAIT can be found in the "14.4. Cycle Accounting"
08a4e6
    on A64FX_Microarchitecture_Manual_en_1.5.pdf at the following URL:.
08a4e6
    https://github.com/fujitsu/A64FX/blob/master/doc
08a4e6
    
08a4e6
    Signed-off-by: Masahiko, Yamada <yamada.masahiko@fujitsu.com>
08a4e6
08a4e6
diff --git a/src/papi_events.csv b/src/papi_events.csv
08a4e6
index 74deb712f..1cd498e91 100644
08a4e6
--- a/src/papi_events.csv
08a4e6
+++ b/src/papi_events.csv
08a4e6
@@ -1935,6 +1935,10 @@ PRESET,PAPI_MEM_SCY,NOT_DERIVED,LD_COMP_WAIT_L2_MISS
08a4e6
 PRESET,PAPI_STL_ICY,DERIVED_ADD,STALL_FRONTEND,STALL_BACKEND
08a4e6
 PRESET,PAPI_STL_CCY,NOT_DERIVED,0INST_COMMIT
08a4e6
 PRESET,PAPI_FUL_CCY,DERIVED_SUB,CPU_CYCLES,0INST_COMMIT,1INST_COMMIT,2INST_COMMIT,3INST_COMMIT
08a4e6
+PRESET,PAPI_BRU_IDL,NOT_DERIVED,BR_COMP_WAIT
08a4e6
+PRESET,PAPI_FXU_IDL,DERIVED_SUB,EU_COMP_WAIT,FL_COMP_WAIT
08a4e6
+PRESET,PAPI_FPU_IDL,NOT_DERIVED,FL_COMP_WAIT
08a4e6
+PRESET,PAPI_LSU_IDL,NOT_DERIVED,LD_COMP_WAIT
08a4e6
 PRESET,PAPI_HW_INT,DERIVED_ADD,EXC_IRQ,EXC_FIQ
08a4e6
 PRESET,PAPI_BR_MSP,NOT_DERIVED,BR_MIS_PRED
08a4e6
 PRESET,PAPI_BR_PRC,DERIVED_SUB,BR_PRED,BR_MIS_PRED