Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/tools/perf/scripts/python/bin/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 464 B image not shown  

Quelle  mem-phys-addr-record   Sprache: unbekannt

 
#!/bin/bash

#
# Profiling physical memory by all retired load instructions/uops event
# MEM_INST_RETIRED.ALL_LOADS or MEM_UOPS_RETIRED.ALL_LOADS
#

load=`perf list | grep mem_inst_retired.all_loads`
if [ -z "$load" ]; then
 load=`perf list | grep mem_uops_retired.all_loads`
fi
if [ -z "$load" ]; then
 echo "There is no event to count all retired load instructions/uops."
 exit 1
fi

arg=$(echo $load | tr -d ' ')
arg="$arg:P"
perf record --phys-data -e $arg $@

Messung V0.5 in Prozent
C=91 H=96 G=93

[Dauer der Verarbeitung: 0.11 Sekunden, vorverarbeitet 2026-06-06]