# Invocation command line: # /home/mjm/RC2/bin/harness/runcpu --flagsurl /home/mjm/RC2/config/flags/gcc.xml --configfile emag-golden --reportable --iterations 3 --tune base,peak --power --copies 32 --runmode rate --tune base:peak --size refrate intrate # output_root was not used for this run ############################################################################ train_single_thread = 1 #------------------------------------------------------------------------------ # SPEC CPU(R) 2026 config for gcc/g++/gfortran on Linux Arm #------------------------------------------------------------------------------ # # Usage: (1) Copy this to a new name # cd $SPEC/config # cp Example-x.cfg myname.cfg # (2) Change items that are marked 'EDIT' (search for it) # # SPEC tested this config file with: # Compiler version(s): gcc 15.2 # Operating system(s): Linux (Fedora 42) # Hardware: ARMv8-A (Neoverse-N1) # # If your system differs, this config file might not work. # You might find a better config file at https://www.spec.org/cpu2026/results # # Compiler notes # # Please use the newest GCC that you can. The default version packaged with # your operating system may be very old; look for alternate packages with a # newer version. # Example 1: on Red Hat systems, you may be able to # dnf install gcc-toolset-15 # and then before running SPEC CPU, start a new shell with # scl enable gcc-toolset-15 bash # Example 2: on Ubuntu systems, you may be able to # apt install gcc-14 g++-14 gfortran-14 # and then adjust the variables CC, CXX, and FC below. # # Unexpected errors? Try using a newer version of the compiler # or try reducing the optimization level, # # Compiler issues: Contact your compiler vendor, not SPEC. # For SPEC help: https://www.spec.org/cpu2026/Docs/techsupport.html #------------------------------------------------------------------------------ #--------- Label -------------------------------------------------------------- # Arbitrary alphanumeric string to tag binaries and directories. # More info: https://www.spec.org/cpu2026/Docs/config.html#label # Two suggestions: # (1) EDIT the label as you try new ideas. # (2) Use a label meaningful to *you*. %ifndef %{label} label = emag-golden # EDIT %else label = %{label} %endif # Include power-related setup when power measurement has been requested. #include: power.inc # ----- Begin inclusion of 'power.inc' ############################################################################ # Set up power stuff if power measurement has been requested. power = 1 # Should be implicit, but just in case... # We only have one PTD host %define ptd_host cpu-reference-ptd # Power analyzer setup %define power_host %{ptd_host}:8000 %define power_tag "%{power_host}" =~ tr/A-Za-z0-9//cdr default: hw_power_cpureferenceptd8000_vendor = Yokogawa hw_power_cpureferenceptd8000_serial = T11733285 hw_power_cpureferenceptd8000_model = WT-310 hw_power_cpureferenceptd8000_label = cpu-reference-ptd:8000 hw_power_cpureferenceptd8000_setup = Directly connected hw_power_cpureferenceptd8000_connection= Serial over USB hw_power_cpureferenceptd8000_met_inst= NIST hw_power_cpureferenceptd8000_cal_org = Yokogawa USA hw_power_cpureferenceptd8000_cal_label= T126622 hw_power_cpureferenceptd8000_cal_date= 13-Aug-2025 # Temperature sensor setup %define temp_host %{ptd_host}:9000 %define temp_tag "%{temp_host}" =~ tr/A-Za-z0-9//cdr default: hw_temperature_cpureferenceptd9000_vendor = PCSensor hw_temperature_cpureferenceptd9000_model = USB9097+DS18B20 hw_temperature_cpureferenceptd9000_label = cpu-reference-ptd:9000 hw_temperature_cpureferenceptd9000_setup = In front of SUT front panel primary air inlet hw_temperature_cpureferenceptd9000_connection= USB # Actual non-documentation setup default: power_analyzer = %{power_host} temp_meter = %{temp_host} # Voltage and idle current are correct for the eMAG. # Full-load current can be close to the selected current range. # If it needs to be increased, the next step is 5A. Even measuring # ~2A with the 5A range set the uncertainty should be tolerable. # In the worst case we'll have to set a current range by benchmark. current_range = 2 voltage_range = 120 idle_current_range = 2 # Non-SUT-specific informational fields related to the power measurement. For SUT-specific fields see SUT.inc test_elevation = 60 hw_line_standard = 120 V / 60 Hz / 1 phase / 2 wire hw_power_provisioning = Line powered %inform . Power is being measured from %{power_host} %inform . Temperature is being measured from %{temp_host} # ---- End inclusion of '/home/mjm/RC2/config/power.inc' #--------- Preprocessor ------------------------------------------------------- %ifndef %{build_ncpus} # EDIT to adjust number of simultaneous compiles. % define build_ncpus 32 # Or, you can set it on the command line: %endif # 'runcpu --define build_ncpus=nn' #--------- Global Settings ---------------------------------------------------- # For info, see: # https://www.spec.org/cpu2026/Docs/config.html#fieldname # Example: https://www.spec.org/cpu2026/Docs/config.html#tune default: bench_post_setup = sync command_add_redirect = 1 flagsurl000 = http://www.spec.org/cpu2026/results/flags/gcc-rev-A2.xml ignore_errors = 1 iterations = 1 line_width = 1020 log_line_width = 1020 makeflags = --jobs=%{build_ncpus} mean_anyway = 1 output_format = txt,html,cfg,pdf,csv preenv = 1 reportable = 0 tune = base submit = numactl --localalloc --physcpubind=$SPECCOPYNUM $command #--------- How Many CPUs? ----------------------------------------------------- # Both SPECrate and SPECspeed can test multiple chips / cores / hw threads # - For SPECrate, you set the number of copies. # - For SPECspeed, you set the number of threads. # See: https://www.spec.org/cpu2026/Docs/system-requirements.html#MultipleCPUs # # q. How many should I set? # a. Unknown, you will have to try it and see! # # To get you started, some suggestions: # # copies - This config file defaults to testing only 1 copy. You might # try changing it to match the number of cores on your system, # or perhaps the number of virtual CPUs as reported by: # grep -c processor /proc/cpuinfo # Be sure you have enough memory. See: # https://www.spec.org/cpu2026/Docs/system-requirements.html#memory # # threads - This config file sets a starting point, which you can adjust. # default: copies = 32 # EDIT to change number of copies (see above) threads = 32 # EDIT to change number of threads (see above) #------- Compilers ------------------------------------------------------------ default: # EDIT: The parent directory for your compiler. # Do not include the trailing /bin/ # Do not include a trailing slash # Examples: # 1 On a Red Hat system, you said: dnf install gcc-toolset-15 # Use: % define gcc_dir "/opt/rh/gcc-toolset-15/root/usr" # # 2 You built GCC in: /home/john/gcc-15.2.0/bin/gcc # Use: % define gcc_dir "/home/john/gcc-15.2.0" # # 3 You want: /usr/bin/gcc # Use: % define gcc_dir "/usr" # WARNING: The system GCC may be too old to work with this benchmark suite. # See "Compiler notes", above. # %ifndef %{gcc_dir} % define gcc_dir "/usr" %endif # EDIT: If your compiler version is less than 10, comment out # the next line to avoid compile errors for Fortran benchmarks # %define GCCge10 # EDIT: comment out if using GCC 9 or earlier # EDIT if needed: the preENV line adds library directories to the runtime # path. You can adjust it, or add lines for other environment variables. # See: https://www.spec.org/cpu2026/Docs/config.html#preenv # and: https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html preENV_LD_LIBRARY_PATH = %{gcc_dir}/lib64/:%{gcc_dir}/lib/:/lib64:/home/mjm/jemalloc/lib #preENV_LD_LIBRARY_PATH = %{gcc_dir}/lib64/:%{gcc_dir}/lib/:/lib64:%{ENV_LD_LIBRARY_PATH} SPECLANG = %{gcc_dir}/bin/ # EDIT if needed: you may want to use a different compiler (e.g. gcc-15). CC = $(SPECLANG)gcc -std=c18 -mabi=lp64 CXX = $(SPECLANG)g++ -std=c++17 -mabi=lp64 FC = $(SPECLANG)gfortran -std=f2018 -mabi=lp64 # How to say "Show me your version, please" CC_VERSION_OPTION = --version CXX_VERSION_OPTION = --version FC_VERSION_OPTION = --version #--------- Portability -------------------------------------------------------- default: # data model applies to all benchmarks EXTRA_PORTABILITY = -DSPEC_LP64 800.pot3d_s: PORTABILITY = -DSPEC_SUPPRESS_LOCAL_AND_REDUCE 710.omnetpp_r: PORTABILITY = -fno-finite-math-only 734.vpr_r,834.vpr_s: PORTABILITY = -fno-finite-math-only 735.gem5_r,835.gem5_s: PORTABILITY = -fno-finite-math-only 736.ocio_r: PORTABILITY = -fno-finite-math-only 737.gmsh_r: PORTABILITY = -fno-fast-math #748.flightdm_r: # PORTABILITY = -fno-fast-math #753.ns3_r,853.ns3_s: # PORTABILITY = -fno-finite-math-only 767.nest_r,867.nest_s: PORTABILITY = -fno-finite-math-only # PORTABILITY_LIBS = -lstdc++fs #---------------------------------------------------------------------- # GCC workarounds that do not count as PORTABILITY #---------------------------------------------------------------------- # The workarounds in this section would not qualify under the SPEC CPU # PORTABILITY rule. # - In peak, they can be set as needed for individual benchmarks. # - In base, individual settings are not allowed; set for whole suite. # See: # https://www.spec.org/cpu2026/Docs/runrules.html#portability # https://www.spec.org/cpu2026/Docs/runrules.html#BaseFlags # %ifdef %{GCCge10} default: EXTRA_FFLAGS = -fallow-argument-mismatch %endif #-------- Tuning Flags common to Base and Peak -------------------------------- # # Speed (OpenMP and Autopar allowed) # intspeed,fpspeed: preENV_OMP_STACKSIZE = 120M doconcurrent: EXTRA_FOPTIMIZE = -ftree-parallelize-loops=32 # EDIT for how many threads you want to use openmp: EXTRA_OPTIMIZE = -fopenmp -DSPEC_OPENMP cxxthreads: EXTRA_OPTIMIZE = -pthread # https://gcc.gnu.org/onlinedocs/gcc-15.1.0/libstdc++/manual/manual/using_concurrency.html #-------- Base Tuning Flags ---------------------------------------------- # EDIT if needed -- If you run into errors, you may need to reduce the # optimization. # default=base: # flags for all base OPTIMIZE = -g -O3 -ffast-math -mcpu=native -flto=16 LIBS = -L/home/mjm/jemalloc/lib -ljemalloc #-------- Peak Tuning Flags ---------------------------------------------- default=peak: OPTIMIZE = -g -Ofast -mcpu=native -flto=16 LIBS = -L/home/mjm/jemalloc/lib -ljemalloc PASS1_FLAGS = -fprofile-generate PASS2_FLAGS = -fprofile-use #------------------------------------------------------------------------------ # Tester and System Descriptions - EDIT all sections below this point #------------------------------------------------------------------------------ # For info about any field, see # https://www.spec.org/cpu2026/Docs/config.html#fieldname # Example: https://www.spec.org/cpu2026/Docs/config.html#hw_memory #------------------------------------------------------------------------------- #include: SUT.inc # ----- Begin inclusion of 'SUT.inc' ############################################################################ default: # Keep sysinfo from overriding the correct values from the fields below with garbage. # This is done by adding "-f" to the default sysinfo invocation. sysinfo_program = specperl $[top]/bin/sysinfo -f hw_vendor = Lenovo Global Technology hw_model000 = ThinkSystem HR330A hw_model001 = (3.00 GHz Ampere eMAG 8180) tester = Ampere Computing, Inc. test_sponsor = Ampere Computing, Inc. license_num = 6412 hw_avail = Apr-2019 sw_avail = Aug-2025 prepared_by = Mahesh Madhav hw_cpu_name = Ampere eMAG 8180 hw_cpu_nominal_mhz = 3000 # Nominal chip frequency, in MHz hw_cpu_max_mhz = 3300 # Max chip frequency, in MHz hw_storage = 1 x 480 GB SATA SSD # Size, type, other perf-relevant info hw_nchips = 1 # number chips enabled hw_ncores = 32 # number cores enabled hw_ncpuorder = 1 chips # Ordering options hw_nthreadspercore = 1 # number threads enabled per core hw_other = None hw_cooling = Air # Air, CLC, DLC, or Other hw_memory = 128 GB (8 x 16 GB 2Rx4 PC4-2666V-R) hw_pcache = 32 KB I + 32 KB D on chip per core hw_scache000 = 4 MB I+D on chip per chip (256 KB shared / 2 hw_scache001 = cores) hw_tcache = 32 MB I+D on chip per chip hw_ocache = None fw_bios = Version 1.12 released Nov-2019 sw_state = Run level 5 (multi-user) # Software state. sw_os = Ubuntu 24.04.1 LTS kernel 6.8.0 (64KB pages) sw_file = ext4 # Perhaps some of this stuff should be in the top-level config with the compiler flags, etc. sw_base_ptrsize = 64-bit sw_peak_ptrsize = 64-bit sw_compiler = C/C++/Fortran: Version 15.2.0 of GCC sw_compiler_category = Community sw_other = jemalloc v5.3+, commit hash 1972241 power_management = OS CPU governor set to "performance" # Power-related fields (only appear on reports with power measurement) fw_management = Version 11.05.111 of Falcon BMC hw_memory_mode = Normal hw_psu = 1 x 550 W (non-redundant) hw_psu_info000 = Lenovo 03LD785 550 Watt High Efficiency Platinum hw_psu_info001 = AC Power Supply hw_backplane = N/A hw_storage_model000 = 1 x Lenovo 01PE965 (480GB SATA SSD) connected to hw_storage_model001 = on-board HBA hw_other_storage = N/A hw_nics = 1 x Lenovo 01PE857 @ 10 GbE (2 ports ethernet) hw_nics_enabled = 2 / 1 hw_nics_connected = 1 @ 1 Gbps notes_power_000 =OS CPU governor was set using the command: notes_power_005 =echo performance | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor # ---- End inclusion of '/home/mjm/RC2/config/SUT.inc' # The following settings were obtained by running the sysinfo_program # 'specperl $[top]/bin/sysinfo -f' (sysinfo:SHA:ad7df2f549e6be7d366bf4f8be78159d40250740d64af716f73c71bc40f386ca) default: notes_plat_sysinfo_000 = notes_plat_sysinfo_005 = Sysinfo program /home/mjm/RC2/bin/sysinfo notes_plat_sysinfo_010 = Rev: 779ab21020787073335a329f3a45e2cd notes_plat_sysinfo_015 = running on emag Thu Apr 9 13:14:49 2026 notes_plat_sysinfo_020 = notes_plat_sysinfo_025 = SUT (System Under Test) info as seen by some common utilities. notes_plat_sysinfo_030 = notes_plat_sysinfo_035 = ------------------------------------------------------------ notes_plat_sysinfo_040 = Table of contents notes_plat_sysinfo_045 = ------------------------------------------------------------ notes_plat_sysinfo_050 = 1. uname -srvm notes_plat_sysinfo_055 = 2. w notes_plat_sysinfo_060 = 3. Username notes_plat_sysinfo_065 = 4. ulimit -a notes_plat_sysinfo_070 = 5. sysinfo process ancestry notes_plat_sysinfo_075 = 6. /proc/cpuinfo notes_plat_sysinfo_080 = 7. lscpu notes_plat_sysinfo_085 = 8. numactl --hardware notes_plat_sysinfo_090 = 9. /proc/meminfo notes_plat_sysinfo_095 = 10. who -r notes_plat_sysinfo_100 = 11. Systemd service manager version: systemd 255 (255.4-1ubuntu8.14) notes_plat_sysinfo_105 = 12. Services, from systemctl list-unit-files notes_plat_sysinfo_110 = 13. Linux kernel boot-time arguments, from /proc/cmdline notes_plat_sysinfo_115 = 14. sysctl notes_plat_sysinfo_120 = 15. /sys/kernel/mm/transparent_hugepage notes_plat_sysinfo_125 = 16. /sys/kernel/mm/transparent_hugepage/khugepaged notes_plat_sysinfo_130 = 17. OS release notes_plat_sysinfo_135 = 18. Disk information notes_plat_sysinfo_140 = 19. /sys/devices/virtual/dmi/id notes_plat_sysinfo_145 = 20. dmidecode notes_plat_sysinfo_150 = 21. BIOS notes_plat_sysinfo_155 = ------------------------------------------------------------ notes_plat_sysinfo_160 = notes_plat_sysinfo_165 = ------------------------------------------------------------ notes_plat_sysinfo_170 = 1. uname -srvm notes_plat_sysinfo_175 = Linux 6.8.0 #1 SMP PREEMPT_DYNAMIC Fri Feb 28 00:25:30 UTC 2025 aarch64 notes_plat_sysinfo_180 = notes_plat_sysinfo_185 = ------------------------------------------------------------ notes_plat_sysinfo_190 = 2. w notes_plat_sysinfo_195 = 13:14:49 up 21 days, 21:45, 1 user, load average: 3.07, 2.03, 2.00 notes_plat_sysinfo_200 = USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT notes_plat_sysinfo_205 = notes_plat_sysinfo_210 = ------------------------------------------------------------ notes_plat_sysinfo_215 = 3. Username notes_plat_sysinfo_220 = From environment variable $USER: mjm notes_plat_sysinfo_225 = notes_plat_sysinfo_230 = ------------------------------------------------------------ notes_plat_sysinfo_235 = 4. ulimit -a notes_plat_sysinfo_240 = time(seconds) unlimited notes_plat_sysinfo_245 = file(blocks) unlimited notes_plat_sysinfo_250 = data(kbytes) unlimited notes_plat_sysinfo_255 = stack(kbytes) unlimited notes_plat_sysinfo_260 = coredump(blocks) 0 notes_plat_sysinfo_265 = memory(kbytes) unlimited notes_plat_sysinfo_270 = locked memory(kbytes) 16691648 notes_plat_sysinfo_275 = process 128681 notes_plat_sysinfo_280 = nofiles 1024 notes_plat_sysinfo_285 = vmemory(kbytes) unlimited notes_plat_sysinfo_290 = locks unlimited notes_plat_sysinfo_295 = rtprio 0 notes_plat_sysinfo_300 = notes_plat_sysinfo_305 = ------------------------------------------------------------ notes_plat_sysinfo_310 = 5. sysinfo process ancestry notes_plat_sysinfo_315 = /usr/lib/systemd/systemd --system --deserialize=73 notes_plat_sysinfo_320 = SCREEN notes_plat_sysinfo_325 = -bin/tcsh notes_plat_sysinfo_330 = runcpu --flagsurl=$SPEC/config/flags/gcc.xml -c emag-golden --reportable -n 3 --tune=base,peak --power -C 32 notes_plat_sysinfo_335 = intrate notes_plat_sysinfo_340 = runcpu --flagsurl $SPEC/config/flags/gcc.xml --configfile emag-golden --reportable --iterations 3 --tune notes_plat_sysinfo_345 = base,peak --power --copies 32 --runmode rate --tune base:peak --size refrate intrate --nopreenv notes_plat_sysinfo_350 = --note-preenv --logfile $SPEC/tmp/CPU2026.098/templogs/preenv.intrate.098.0.log --lognum 098.0 notes_plat_sysinfo_355 = --from_runcpu 2 notes_plat_sysinfo_360 = specperl $SPEC/bin/sysinfo -f notes_plat_sysinfo_365 = $SPEC = /home/mjm/RC2 notes_plat_sysinfo_370 = notes_plat_sysinfo_375 = ------------------------------------------------------------ notes_plat_sysinfo_380 = 6. /proc/cpuinfo notes_plat_sysinfo_385 = CPU implementer : 0x50 notes_plat_sysinfo_390 = CPU architecture: 8 notes_plat_sysinfo_395 = CPU variant : 0x3 notes_plat_sysinfo_400 = CPU part : 0x000 notes_plat_sysinfo_405 = CPU revision : 2 notes_plat_sysinfo_410 = Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid notes_plat_sysinfo_415 = notes_plat_sysinfo_420 = ------------------------------------------------------------ notes_plat_sysinfo_425 = 7. lscpu notes_plat_sysinfo_430 = notes_plat_sysinfo_435 = From lscpu from util-linux 2.39.3: notes_plat_sysinfo_440 = Architecture: aarch64 notes_plat_sysinfo_445 = CPU op-mode(s): 32-bit, 64-bit notes_plat_sysinfo_450 = Byte Order: Little Endian notes_plat_sysinfo_455 = CPU(s): 32 notes_plat_sysinfo_460 = On-line CPU(s) list: 0-31 notes_plat_sysinfo_465 = Vendor ID: APM notes_plat_sysinfo_470 = Model name: - notes_plat_sysinfo_475 = Model: 2 notes_plat_sysinfo_480 = Thread(s) per core: 1 notes_plat_sysinfo_485 = Core(s) per socket: 32 notes_plat_sysinfo_490 = Socket(s): 1 notes_plat_sysinfo_495 = Stepping: 0x3 notes_plat_sysinfo_500 = Frequency boost: disabled notes_plat_sysinfo_505 = CPU(s) scaling MHz: 100% notes_plat_sysinfo_510 = CPU max MHz: 2911.7639 notes_plat_sysinfo_515 = CPU min MHz: 363.9700 notes_plat_sysinfo_520 = BogoMIPS: 80.00 notes_plat_sysinfo_525 = Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid notes_plat_sysinfo_530 = L1d cache: 1 MiB (32 instances) notes_plat_sysinfo_535 = L1i cache: 1 MiB (32 instances) notes_plat_sysinfo_540 = L2 cache: 4 MiB (16 instances) notes_plat_sysinfo_545 = NUMA node(s): 1 notes_plat_sysinfo_550 = NUMA node0 CPU(s): 0-31 notes_plat_sysinfo_555 = Vulnerability Gather data sampling: Not affected notes_plat_sysinfo_560 = Vulnerability Itlb multihit: Not affected notes_plat_sysinfo_565 = Vulnerability L1tf: Not affected notes_plat_sysinfo_570 = Vulnerability Mds: Not affected notes_plat_sysinfo_575 = Vulnerability Meltdown: Mitigation; PTI notes_plat_sysinfo_580 = Vulnerability Mmio stale data: Not affected notes_plat_sysinfo_585 = Vulnerability Retbleed: Not affected notes_plat_sysinfo_590 = Vulnerability Spec rstack overflow: Not affected notes_plat_sysinfo_595 = Vulnerability Spec store bypass: Vulnerable notes_plat_sysinfo_600 = Vulnerability Spectre v1: Mitigation; __user pointer sanitization notes_plat_sysinfo_605 = Vulnerability Spectre v2: Vulnerable notes_plat_sysinfo_610 = Vulnerability Srbds: Not affected notes_plat_sysinfo_615 = Vulnerability Tsx async abort: Not affected notes_plat_sysinfo_620 = notes_plat_sysinfo_625 = From lscpu --cache: notes_plat_sysinfo_630 = NAME ONE-SIZE ALL-SIZE WAYS TYPE LEVEL SETS PHY-LINE COHERENCY-SIZE notes_plat_sysinfo_635 = L1d 32K 1M 8 Data 1 notes_plat_sysinfo_640 = L1i 32K 1M 8 Instruction 1 notes_plat_sysinfo_645 = L2 256K 4M 32 Unified 2 notes_plat_sysinfo_650 = notes_plat_sysinfo_655 = ------------------------------------------------------------ notes_plat_sysinfo_660 = 8. numactl --hardware notes_plat_sysinfo_665 = NOTE: a numactl 'node' might or might not correspond to a physical chip. notes_plat_sysinfo_670 = available: 1 nodes (0) notes_plat_sysinfo_675 = node 0 cpus: 0-31 notes_plat_sysinfo_680 = node 0 size: 130403 MB notes_plat_sysinfo_685 = node 0 free: 48756 MB notes_plat_sysinfo_690 = node distances: notes_plat_sysinfo_695 = node 0 notes_plat_sysinfo_700 = 0: 10 notes_plat_sysinfo_705 = notes_plat_sysinfo_710 = ------------------------------------------------------------ notes_plat_sysinfo_715 = 9. /proc/meminfo notes_plat_sysinfo_720 = MemTotal: 133533376 kB notes_plat_sysinfo_725 = notes_plat_sysinfo_730 = ------------------------------------------------------------ notes_plat_sysinfo_735 = 10. who -r notes_plat_sysinfo_740 = run-level 5 Mar 18 15:29 notes_plat_sysinfo_745 = notes_plat_sysinfo_750 = ------------------------------------------------------------ notes_plat_sysinfo_755 = 11. Systemd service manager version: systemd 255 (255.4-1ubuntu8.14) notes_plat_sysinfo_760 = Default Target Status notes_plat_sysinfo_765 = graphical running notes_plat_sysinfo_770 = notes_plat_sysinfo_775 = ------------------------------------------------------------ notes_plat_sysinfo_780 = 12. Services, from systemctl list-unit-files notes_plat_sysinfo_785 = STATE UNIT FILES notes_plat_sysinfo_790 = enabled ModemManager apparmor apport blk-availability cloud-config cloud-final cloud-init notes_plat_sysinfo_795 = cloud-init-local console-setup cron dmesg e2scrub_reap finalrd getty@ grub-common notes_plat_sysinfo_800 = grub-initrd-fallback keyboard-setup lvm2-monitor multipathd networkd-dispatcher open-iscsi notes_plat_sysinfo_805 = open-vm-tools pollinate power-profiles-daemon rsyslog secureboot-db setvtrgb snapd sysstat notes_plat_sysinfo_810 = systemd-networkd systemd-networkd-wait-online systemd-pstore systemd-resolved notes_plat_sysinfo_815 = systemd-timesyncd ua-reboot-cmds ubuntu-advantage udisks2 ufw unattended-upgrades vgauth notes_plat_sysinfo_820 = enabled-runtime netplan-ovs-cleanup systemd-fsck-root systemd-remount-fs notes_plat_sysinfo_825 = disabled console-getty debug-shell ipmievd iscsid nftables rsync ssh systemd-boot-check-no-failures notes_plat_sysinfo_830 = systemd-confext systemd-network-generator systemd-networkd-wait-online@ notes_plat_sysinfo_835 = systemd-pcrlock-file-system systemd-pcrlock-firmware-code systemd-pcrlock-firmware-config notes_plat_sysinfo_840 = systemd-pcrlock-machine-id systemd-pcrlock-make-policy notes_plat_sysinfo_845 = systemd-pcrlock-secureboot-authority systemd-pcrlock-secureboot-policy systemd-sysext notes_plat_sysinfo_850 = systemd-time-wait-sync notes_plat_sysinfo_855 = generated openipmi perlbal notes_plat_sysinfo_860 = indirect serial-getty@ systemd-sysupdate systemd-sysupdate-reboot uuidd notes_plat_sysinfo_865 = masked cryptdisks cryptdisks-early hwclock multipath-tools-boot screen-cleanup sudo x11-common notes_plat_sysinfo_870 = notes_plat_sysinfo_875 = ------------------------------------------------------------ notes_plat_sysinfo_880 = 13. Linux kernel boot-time arguments, from /proc/cmdline notes_plat_sysinfo_885 = BOOT_IMAGE=/boot/vmlinuz-6.8.0 notes_plat_sysinfo_890 = root=UUID=16268541-06d0-4374-97ca-2d512d4db26f notes_plat_sysinfo_895 = ro notes_plat_sysinfo_900 = cma=1024M notes_plat_sysinfo_905 = iommu.passthrough=1 notes_plat_sysinfo_910 = notes_plat_sysinfo_915 = ------------------------------------------------------------ notes_plat_sysinfo_920 = 14. sysctl notes_plat_sysinfo_925 = kernel.numa_balancing 0 notes_plat_sysinfo_930 = kernel.randomize_va_space 2 notes_plat_sysinfo_935 = vm.compaction_proactiveness 20 notes_plat_sysinfo_940 = vm.dirty_background_bytes 0 notes_plat_sysinfo_945 = vm.dirty_background_ratio 10 notes_plat_sysinfo_950 = vm.dirty_bytes 0 notes_plat_sysinfo_955 = vm.dirty_expire_centisecs 3000 notes_plat_sysinfo_960 = vm.dirty_ratio 20 notes_plat_sysinfo_965 = vm.dirty_writeback_centisecs 500 notes_plat_sysinfo_970 = vm.dirtytime_expire_seconds 43200 notes_plat_sysinfo_975 = vm.extfrag_threshold 500 notes_plat_sysinfo_980 = vm.min_unmapped_ratio 1 notes_plat_sysinfo_985 = vm.nr_hugepages 0 notes_plat_sysinfo_990 = vm.nr_hugepages_mempolicy 0 notes_plat_sysinfo_995 = vm.nr_overcommit_hugepages 0 notes_plat_sysinfo_1000= vm.swappiness 60 notes_plat_sysinfo_1005= vm.watermark_boost_factor 15000 notes_plat_sysinfo_1010= vm.watermark_scale_factor 10 notes_plat_sysinfo_1015= vm.zone_reclaim_mode 0 notes_plat_sysinfo_1020= notes_plat_sysinfo_1025= ------------------------------------------------------------ notes_plat_sysinfo_1030= 15. /sys/kernel/mm/transparent_hugepage notes_plat_sysinfo_1035= defrag always defer defer+madvise [madvise] never notes_plat_sysinfo_1040= enabled always [madvise] never notes_plat_sysinfo_1045= hpage_pmd_size 536870912 notes_plat_sysinfo_1050= shmem_enabled always within_size advise [never] deny force notes_plat_sysinfo_1055= notes_plat_sysinfo_1060= ------------------------------------------------------------ notes_plat_sysinfo_1065= 16. /sys/kernel/mm/transparent_hugepage/khugepaged notes_plat_sysinfo_1070= alloc_sleep_millisecs 60000 notes_plat_sysinfo_1075= defrag 1 notes_plat_sysinfo_1080= max_ptes_none 8191 notes_plat_sysinfo_1085= max_ptes_shared 4096 notes_plat_sysinfo_1090= max_ptes_swap 1024 notes_plat_sysinfo_1095= pages_to_scan 65536 notes_plat_sysinfo_1100= scan_sleep_millisecs 10000 notes_plat_sysinfo_1105= notes_plat_sysinfo_1110= ------------------------------------------------------------ notes_plat_sysinfo_1115= 17. OS release notes_plat_sysinfo_1120= From /etc/*-release /etc/*-version notes_plat_sysinfo_1125= os-release Ubuntu 24.04.1 LTS notes_plat_sysinfo_1130= notes_plat_sysinfo_1135= ------------------------------------------------------------ notes_plat_sysinfo_1140= 18. Disk information notes_plat_sysinfo_1145= SPEC is set to: /home/mjm/RC2 notes_plat_sysinfo_1150= Filesystem Type Size Used Avail Use% Mounted on notes_plat_sysinfo_1155= /dev/sda2 ext4 439G 304G 113G 74% / notes_plat_sysinfo_1160= notes_plat_sysinfo_1165= ------------------------------------------------------------ notes_plat_sysinfo_1170= 19. /sys/devices/virtual/dmi/id notes_plat_sysinfo_1175= Vendor: Lenovo notes_plat_sysinfo_1180= Product: HR330A 7X33CTO1WW notes_plat_sysinfo_1185= Product Family: Lenovo ThinkSystem HR330A/HR350A notes_plat_sysinfo_1190= notes_plat_sysinfo_1195= ------------------------------------------------------------ notes_plat_sysinfo_1200= 20. dmidecode notes_plat_sysinfo_1205= Additional information from dmidecode 3.5 follows. WARNING: Use caution when you interpret this section. notes_plat_sysinfo_1210= The 'dmidecode' program reads system data which is "intended to allow hardware to be accurately notes_plat_sysinfo_1215= determined", but the intent may not be met, as there are frequent changes to hardware, firmware, and the notes_plat_sysinfo_1220= "DMTF SMBIOS" standard. notes_plat_sysinfo_1225= Memory: notes_plat_sysinfo_1230= 8x Samsung M393A2K43CB2-CTD 16 GB 2 rank 2667 notes_plat_sysinfo_1235= notes_plat_sysinfo_1240= notes_plat_sysinfo_1245= ------------------------------------------------------------ notes_plat_sysinfo_1250= 21. BIOS notes_plat_sysinfo_1255= (This section combines info from /sys/devices and dmidecode.) notes_plat_sysinfo_1260= BIOS Vendor: LENOVO notes_plat_sysinfo_1265= BIOS Version: HVE104N-1.12 notes_plat_sysinfo_1270= BIOS Date: 11/29/2019 notes_plat_sysinfo_1275= BIOS Revision: 1.12 notes_plat_sysinfo_1280= Firmware Revision: 1.7 # # ----------------------------------------------- # System Description Fields Tentative Suggestions # ----------------------------------------------- # # Based on the material above, The SPEC CPU sysinfo utility suggests that # the tester consider the following when filling out the system description. # WARNING: the tester is responsible for the accuracy of the system # description; the material below is only a start, and may not be accurate. # # hw_cpu_name = - # hw_memory001 = 127.347 GB fixme: If using DDR5, the format is: # hw_memory002 = 'N GB (N x N GB nRxn PC5-nnnnX-X)' # hw_nchips = 1 # hw_ncores = 32 # hw_nthreadspercore = 1 # hw_storage = 439 GB add more disk info here # prepared_by = mjm (is never output, only tags rawfile) # sw_file = ext4 # sw_os001 = Ubuntu 24.04.1 LTS # sw_os002 = 6.8.0 # sw_state = Run level 5 (add definition here) # End of settings added by sysinfo_program 777.zstd_r: # The following setting was inserted automatically as a result of # post-run basepeak application. basepeak = 1 735.gem5_r: # The following setting was inserted automatically as a result of # post-run basepeak application. basepeak = 1 729.abc_r: # The following setting was inserted automatically as a result of # post-run basepeak application. basepeak = 1 # The following section was added automatically, and contains settings that # did not appear in the original configuration file, but were added to the # raw file after the run. default: notes_zhistorical_000 =This benchmark result is intended to provide perspective on notes_zhistorical_005 =past power and/or performance using the historical hardware notes_zhistorical_010 =and/or software described on this result page. notes_zhistorical_015 = notes_zhistorical_020 =The system as described on this result page was formerly notes_zhistorical_025 =generally available. At the time of this publication, it may notes_zhistorical_030 =not be shipping, and/or may not be supported, and/or may fail notes_zhistorical_035 =to meet other tests of General Availability described in the notes_zhistorical_040 =SPEC OSG Policy document, http://www.spec.org/osg/policy.html notes_zhistorical_045 = notes_zhistorical_050 =This measured result may not be representative of the result notes_zhistorical_055 =that would be measured were this benchmark run with hardware notes_zhistorical_060 =and software available as of the publication date. notes_zhistorical_065 = notes_jemalloc_000 =jemalloc is a general purpose malloc(3) implementation that emphasizes notes_jemalloc_005 =fragmentation avoidance and scalable concurrency support. notes_jemalloc_010 =sources available from https://github.com/jemalloc/jemalloc/tree/1972241 notes_jemalloc_015 =and built via "./configure --with-lg-quantum=3" which used system gcc-14 -O3 notes_jemalloc_020 =