# Invocation command line: # /home/amptest/workspace/sir2017_pkg_verify/ampere_spec2017/spec2017/bin/harness/runcpu --configfile ampere_aarch64 --define numasize=48 --define gcc_dir=/home/amptest/ampere_spec2017/spec2017/gcc/install --define llvm_dir=/home/amptest/ampere_spec2017/spec2017/llvm/install --define jemalloc_dir=/home/amptest/ampere_spec2017/spec2017/jemalloc/install --define glibc_dir=/ --iterations 3 --nobuild --action run --copies 192 --reportable --tune base --nopower --runmode rate --tune base --size refrate intrate # output_root was not used for this run ############################################################################ #--------- Label -------------------------------------------------------------- # Arbitrary string to tag binaries (no spaces allowed) # Two Suggestions: # (1) EDIT this label as you try new ideas. # # (2) Use a label meaningful to *you*. %ifndef %{label} % define label "gcc13" %endif #--------- Preprocessor ------------------------------------------------------- %ifndef %{build_ncpus} # EDIT to adjust number of simultaneous compiles. % define build_ncpus 16 # Or, you can set it on the command line: %endif # 'runcpu --define build_ncpus=nn' # Don't change this part. %if %{label} =~ m/ / % error Your label "%{label}" contains spaces. Please try underscores instead. %endif %if %{label} !~ m/^[a-zA-Z0-9._-]+$/ % error Illegal character in label "%{label}". Please use only alphanumerics, underscore, hyphen, and period. %endif #--------- Global Settings ---------------------------------------------------- # For info, see: # https://www.spec.org/cpu2017/Docs/config.html#fieldname # Example: https://www.spec.org/cpu2017/Docs/config.html#tune command_add_redirect = 1 flagsurl000 = http://www.spec.org/cpu2017/flags/Lenovo-Platform-SPECcpu2017-Flags-V1.2-Genoa-R.xml flagsurl001 = http://www.spec.org/cpu2017/flags/gcc.2024-08-14.xml #flagsurl3 = $[top]/config/MyCompany-platform.xml # Platform flags file ignore_errors = 1 iterations = 1 label = %{label}-64 line_width = 1020 log_line_width = 1020 makeflags = --jobs=%{build_ncpus} mean_anyway = 1 output_format = all preenv = 1 reportable = 0 tune = base # Affinitization default: submit = numactl --localalloc --physcpubind=$SPECCOPYNUM $command #------- 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: # 'yum install devtoolset-9' # Use: % define gcc_dir "/opt/rh/devtoolset-9/root/usr" # # 2 You built GCC in: /disk1/mybuild/gcc-10.1.0/bin/gcc # Use: % define gcc_dir "/disk1/mybuild/gcc-10.1.0" # # 3 You want: /usr/bin/gcc # Use: % define gcc_dir "/usr" # WARNING: See section "Older GCC" above. # %ifndef %{gcc_dir} % define gcc_dir "/home/amptest/gcc/install" # EDIT (see above) %endif %ifndef %{jemalloc_dir} % define jemalloc_dir "/home/amptest/jemalloc/install" %endif # Refer to https://jemalloc.net/jemalloc.3.html#tuning preENV_MALLOC_CONF = thp:always,metadata_thp:always,dirty_decay_ms:-1,muzzy_decay_ms:-1,retain:true,percpu_arena:percpu # 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/cpu2017/Docs/config.html#preenv # and: https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html % define jemalloc_runtime_dir $[top]/jemalloc/install/lib % define gcc_runtime_dir $[top]/gcc/install/lib64 preENV_LD_LIBRARY_PATH = %{jemalloc_runtime_dir}:%{gcc_runtime_dir}:%{jemalloc_dir}/lib:%{gcc_dir}/lib64:%{ENV_LD_LIBRARY_PATH} SPECLANG = %{gcc_dir}/bin/ CC = $(SPECLANG)gcc -std=c99 CXX = $(SPECLANG)g++ -std=c++03 FC = $(SPECLANG)gfortran # How to say "Show me your version, please" CC_VERSION_OPTION = --version CXX_VERSION_OPTION = --version FC_VERSION_OPTION = --version EXTRA_LDFLAGS = -static -fwhole-program -L%{gcc_dir}/lib64 -L%{gcc_dir}/lib -L%{jemalloc_dir}/lib # Use "-u" to pretend the "malloc" symbol is undefined, to force linking of jemalloc library. EXTRA_CLIBS = -u malloc -ljemalloc -Wl,-Map,mapfile EXTRA_CXXLIBS = -u malloc -ljemalloc_ext -Wl,-Map,mapfile # Static build with jemalloc for fortran program on x86 may crash EXTRA_FLIBS = -Wl,-Map,mapfile default: sw_base_ptrsize = 64-bit sw_peak_ptrsize = Not Applicable #--------- Portability -------------------------------------------------------- default: EXTRA_PORTABILITY = -DSPEC_LP64 # Benchmark-specific portability (ordered by last 2 digits of bmark number) 500.perlbench_r,600.perlbench_s: #lang='C' PORTABILITY = -DSPEC_LINUX_X64 521.wrf_r,621.wrf_s: #lang='F,C' CPORTABILITY = -DSPEC_CASE_FLAG FPORTABILITY = -fconvert=big-endian 523.xalancbmk_r,623.xalancbmk_s: #lang='CXX' PORTABILITY = -DSPEC_LINUX 526.blender_r: #lang='CXX,C' PORTABILITY = -funsigned-char -DSPEC_LINUX 527.cam4_r,627.cam4_s: #lang='F,C' PORTABILITY = -DSPEC_CASE_FLAG 628.pop2_s: #lang='F,C' CPORTABILITY = -DSPEC_CASE_FLAG FPORTABILITY = -fconvert=big-endian #---------------------------------------------------------------------- # 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/cpu2017/Docs/runrules.html#portability # https://www.spec.org/cpu2017/Docs/runrules.html#BaseFlags # # Integer workarounds - peak # 500.perlbench_r,600.perlbench_s=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/500.perlbench_r.html EXTRA_CFLAGS = -fno-strict-aliasing -fno-unsafe-math-optimizations -fno-finite-math-only 502.gcc_r,602.gcc_s=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/502.gcc_r.html EXTRA_CFLAGS = -fno-strict-aliasing -fgnu89-inline 505.mcf_r,605.mcf_s=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/505.mcf_r.html EXTRA_CFLAGS = -fno-strict-aliasing 525.x264_r,625.x264_s=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/525.x264_r.html EXTRA_CFLAGS = -fcommon # # Integer workarounds - base - combine the above - https://www.spec.org/cpu2017/Docs/runrules.html#BaseFlags # intrate,intspeed=base: # WARNING: the above flags from EXTRA_CFLAGS = -fgnu89-inline -fcommon # perlbench, gcc, and mcf would also # be needed if -Ofast is used for # # Floating Point workarounds - base # 511.povray_r=base: EXTRA_CXXFLAGS = -fno-fast-math # # # Floating Point workarounds - peak # 511.povray_r=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/511.povray_r.html EXTRA_CFLAGS = -fno-strict-aliasing 521.wrf_r,621.wrf_s=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/521.wrf_r.html EXTRA_FFLAGS = -fallow-argument-mismatch 527.cam4_r,627.cam4_s=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/527.cam4_r.html EXTRA_CFLAGS = -fno-strict-aliasing -Wno-implicit-int EXTRA_FFLAGS = -fallow-argument-mismatch # See also topic "628.pop2_s basepeak" below 628.pop2_s=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/628.pop2_s.html EXTRA_FFLAGS = -fallow-argument-mismatch # # FP workarounds - base - combine the above - https://www.spec.org/cpu2017/Docs/runrules.html#BaseFlags # fprate,fpspeed=base: EXTRA_CFLAGS = -fno-strict-aliasing EXTRA_FFLAGS = -fallow-argument-mismatch #-------- Tuning Flags common to Base and Peak -------------------------------- # # Speed (OpenMP and Autopar allowed) # intspeed,fpspeed: EXTRA_OPTIMIZE = -fopenmp -DSPEC_OPENMP fpspeed: # # 627.cam4 needs a big stack; the preENV will apply it to all # benchmarks in the set, as required by the rules. # preENV_OMP_STACKSIZE = 120M #-------- Base Tuning Flags ---------------------------------------------- # default=base: OPTIMIZE = -g -O3 -march=znver4 -flto=32 -funroll-loops -freorder-blocks-algorithm=simple COPTIMIZE = --param early-inlining-insns=96 --param max-inline-insns-auto=64 --param inline-unit-growth=96 -fno-strict-aliasing CXXOPTIMIZE = --param early-inlining-insns=256 --param max-inline-insns-auto=128 --param inline-unit-growth=256 -ffinite-loops FOPTIMIZE = --param ipa-cp-eval-threshold=1 --param ipa-cp-unit-growth=80 --param ipa-cp-max-recursive-depth=8 -fno-inline-functions-called-once -fstack-arrays LDCFLAGS = -z muldefs fprate=base: COPTIMIZE = -g -Ofast -march=znver4 -flto --param inline-min-speedup=3 # for imagick CXXOPTIMIZE = -g -Ofast -march=znver4 -flto -std=c++03 FOPTIMIZE = -g -Ofast -march=znver4 -flto -fno-stack-arrays EXTRA_COPTIMIZE = -fno-strict-aliasing EXTRA_FOPTIMIZE = -fno-strict-aliasing EXTRA_FFLAGS = -fallow-argument-mismatch #-------- Peak Tuning Flags ---------------------------------------------- default=peak: basepeak = yes # if you develop some peak tuning, remove this line. # # ----------------------- # About the -fno switches # ----------------------- # # For 'base', this config file (conservatively) disables some optimizations. # You might want to try turning some of them back on, by creating a 'peak' # section here, with individualized benchmark options: # # 500.perlbench_r=peak: # OPTIMIZE = this # 502.gcc_r=peak: # OPTIMIZE = that # 503.bwaves_r=peak: # OPTIMIZE = other .....(and so forth) # # If you try it: # - You must remove the 'basepeak' option, above. # - You will need time and patience, to diagnose and avoid any errors. # - perlbench is unlikely to work with strict aliasing # - Some floating point benchmarks may get wrong answers, depending on: # the particular chip # the version of GCC # other optimizations enabled # -m32 vs. -m64 # - See: http://www.spec.org/cpu2017/Docs/config.html # - and: http://www.spec.org/cpu2017/Docs/runrules.html #------------------------------------------------------------------------------ # Tester and System Descriptions - EDIT all sections below this point #------------------------------------------------------------------------------ # For info about any field, see # https://www.spec.org/cpu2017/Docs/config.html#fieldname # Example: https://www.spec.org/cpu2017/Docs/config.html#hw_memory #------------------------------------------------------------------------------- #--------- EDIT to match your version ----------------------------------------- default: sw_compiler000 = C/C++/Fortran: Version 13.2.0 of GCC, the sw_compiler001 = GNU Compiler Collection ################################################################################ # SPEC CPU 2017 report header ################################################################################ license_num =6412 tester =Ampere Computing test_sponsor =Ampere Computing hw_vendor =Lenovo Global Technology hw_model000 =ThinkSystem SR635 V3 hw_model001 =(2.40 GHz,AMD EPYC 9654P) ################################################################################ ################################################################################ # Hardware, firmware and software information ################################################################################ intrate,intspeed,fprate,fpspeed: # Important: keep this line hw_avail =Apr-2023 sw_avail =Jun-2024 hw_cpu_name =AMD EPYC 9654P hw_cpu_nominal_mhz =2400 hw_cpu_max_mhz =3700 hw_ncores =96 hw_nthreadspercore =2 hw_ncpuorder =1 chip hw_other =CPU Cooling: Air fw_bios =Lenovo BIOS Version KAE118M 4.11 released Feb-2024 sw_base_ptrsize =64-bit hw_pcache =32 KB I + 32 KB D on chip per core hw_scache =1 MB I+D on chip per core hw_tcache000 =384 MB I+D on chip per chip, hw_tcache001 =32 MB shared / 8 cores hw_ocache =None sw_other = Jemalloc memory allocator library v5.3.0 ################################################################################ # Notes ################################################################################ # Enter notes_000 through notes_100 here. notes_000 =Binaries were compiled on a system with 1x AMD EPYC 9654 CPU + 384GiB Memory notes_005 =using SUSE Linux Enterprise Server 15 SP6 notes_010 = notes_015 =NA: The test sponsor attests, as of date of publication, that CVE-2017-5754 (Meltdown) notes_020 =is mitigated in the system as tested and documented. notes_025 =Yes: The test sponsor attests, as of date of publication, that CVE-2017-5753 (Spectre variant 1) notes_030 =is mitigated in the system as tested and documented. notes_035 =Yes: The test sponsor attests, as of date of publication, that CVE-2017-5715 (Spectre variant 2) notes_040 =is mitigated in the system as tested and documented. notes_045 = power_management000 =BIOS sets to prefer performance at the cost power_management001 =of additional power usage notes_plat_form_000 =BIOS configuration: notes_plat_form_005 =Operating Mode set to Maximum Performance and then set it to Custom Mode notes_plat_form_010 =NUMA Nodes per Socket set to NPS4 notes_submit_000 ='numactl' was used to bind copies to the cores. notes_submit_005 =See the configuration file for details. notes_submit_010 = notes_os_000 ='ulimit -s unlimited' was used to set environment stack size limit notes_os_005 ='ulimit -l 2097152' was used to set environment locked pages in memory limit notes_os_010 = notes_os_015 =runcpu command invoked through numactl i.e.: notes_os_020 =numactl --interleave=all runcpu notes_os_025 = notes_os_030 =To limit dirty cache to 8% of memory, 'sysctl -w vm.dirty_ratio=8' run as root. notes_os_035 =To limit swap usage to minimum necessary, 'sysctl -w vm.swappiness=1' run as root. notes_os_040 =To free node-local memory and avoid remote memory usage, notes_os_045 ='sysctl -w vm.zone_reclaim_mode=1' run as root. notes_os_050 =To clear filesystem caches, 'sync; sysctl -w vm.drop_caches=3' run as root. notes_os_055 =To disable address space layout randomization (ASLR) to reduce run-to-run notes_os_060 =variability, 'sysctl -w kernel.randomize_va_space=0' run as root. notes_os_065 = notes_comp_000 =The GCC Compiler 13.2.0 is available at notes_comp_005 =https://gcc.gnu.org/ notes_comp_010 = notes_jemalloc_000 =Jemalloc v5.3.0 is available via notes_jemalloc_005 =https://github.com/jemalloc/jemalloc/releases/download/5.3.0/jemalloc-5.3.0.tar.bz2 notes_jemalloc_010 =It was built on SUSE Linux Enterprise Server 15 SP6 using Version 13.2.0 of GCC notes_jemalloc_015 =The configure options are notes_jemalloc_020 ="--with-lg-page=16" for building libjemalloc.so, and notes_jemalloc_025 ="--with-lg-quantum=3 --with-lg-page=18" for building libjemalloc_ext.so notes_jemalloc_030 = Tuned MALLOC_CONF in terms of https://jemalloc.net/jemalloc.3.html#tuning ################################################################################ # The following fields must be set here for only Int benchmarks. ################################################################################ intrate: notes_os_thp_000 =To enable Transparent Hugepages (THP) only on request for base runs, notes_os_thp_005 ='echo madvise > /sys/kernel/mm/transparent_hugepage/enabled' run as root. notes_os_thp_010 = ################################################################################ # The following fields must be set here or they will be overwritten by sysinfo. ################################################################################ intrate,fprate: hw_disk =1 x 480 GB SATA SSD hw_memory000 =384 GB (12 x 32 GB 2Rx8 PC5-5600B-R hw_memory001 = , running at 4800) hw_nchips =1 prepared_by =Ampere Computing sw_file =xfs sw_os000 =SUSE Linux Enterprise Server 15 SP6 sw_os001 =Kernel 6.4.0-150600.21-default sw_state =Run level 5 (multi-user and boots up in X window) # The following settings were obtained by running the sysinfo_program # 'specperl $[top]/bin/sysinfo' (sysinfo:SHA:2eb381fc1a58eb8122e4a1b875c1e38b3489dac84088192aa0ec6d157b084d06) default: notes_plat_sysinfo_000 = notes_plat_sysinfo_005 = Sysinfo program /home/amptest/workspace/sir2017_pkg_verify/ampere_spec2017/spec2017/bin/sysinfo notes_plat_sysinfo_010 = Rev: r6732 of 2022-11-07 fe91c89b7ed5c36ae2c92cc097bec197 notes_plat_sysinfo_015 = running on scc1-sut02sys-r165 Thu Aug 8 22:08:19 2024 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 -a 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 254 (254.10+suse.84.ge8d77af424) 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. cpupower frequency-info notes_plat_sysinfo_120 = 15. tuned-adm active notes_plat_sysinfo_125 = 16. sysctl notes_plat_sysinfo_130 = 17. /sys/kernel/mm/transparent_hugepage notes_plat_sysinfo_135 = 18. /sys/kernel/mm/transparent_hugepage/khugepaged notes_plat_sysinfo_140 = 19. OS release notes_plat_sysinfo_145 = 20. Disk information notes_plat_sysinfo_150 = 21. /sys/devices/virtual/dmi/id notes_plat_sysinfo_155 = 22. dmidecode notes_plat_sysinfo_160 = 23. BIOS notes_plat_sysinfo_165 = ------------------------------------------------------------ notes_plat_sysinfo_170 = notes_plat_sysinfo_175 = ------------------------------------------------------------ notes_plat_sysinfo_180 = 1. uname -a notes_plat_sysinfo_185 = Linux scc1-sut02sys-r165 6.4.0-150600.21-default #1 SMP PREEMPT_DYNAMIC Thu May 16 11:09:22 UTC 2024 notes_plat_sysinfo_190 = (36c1e09) x86_64 x86_64 x86_64 GNU/Linux notes_plat_sysinfo_195 = notes_plat_sysinfo_200 = ------------------------------------------------------------ notes_plat_sysinfo_205 = 2. w notes_plat_sysinfo_210 = 22:08:19 up 8:04, 2 users, load average: 120.20, 131.73, 164.68 notes_plat_sysinfo_215 = USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT notes_plat_sysinfo_220 = amptest : 14:04 ?xdm? 5:08m 0.03s gdm-session-worker [pam/gdm-password] notes_plat_sysinfo_225 = amptest seat0 login- 14:04 0.00s 0.00s 0.00s /usr/lib/gdm/gdm-x-session notes_plat_sysinfo_230 = --register-session --run-script gnome notes_plat_sysinfo_235 = amptest :1 14:04 ?xdm? 5:08m 0.00s /usr/lib/gdm/gdm-x-session notes_plat_sysinfo_240 = --register-session --run-script gnome notes_plat_sysinfo_245 = notes_plat_sysinfo_250 = ------------------------------------------------------------ notes_plat_sysinfo_255 = 3. Username notes_plat_sysinfo_260 = From environment variable $USER: root notes_plat_sysinfo_265 = From the command 'logname': amptest notes_plat_sysinfo_270 = notes_plat_sysinfo_275 = ------------------------------------------------------------ notes_plat_sysinfo_280 = 4. ulimit -a notes_plat_sysinfo_285 = core file size (blocks, -c) 0 notes_plat_sysinfo_290 = data seg size (kbytes, -d) unlimited notes_plat_sysinfo_295 = scheduling priority (-e) 0 notes_plat_sysinfo_300 = file size (blocks, -f) unlimited notes_plat_sysinfo_305 = pending signals (-i) 1544523 notes_plat_sysinfo_310 = max locked memory (kbytes, -l) 8192 notes_plat_sysinfo_315 = max memory size (kbytes, -m) unlimited notes_plat_sysinfo_320 = open files (-n) 1048576 notes_plat_sysinfo_325 = pipe size (512 bytes, -p) 8 notes_plat_sysinfo_330 = POSIX message queues (bytes, -q) 819200 notes_plat_sysinfo_335 = real-time priority (-r) 0 notes_plat_sysinfo_340 = stack size (kbytes, -s) unlimited notes_plat_sysinfo_345 = cpu time (seconds, -t) unlimited notes_plat_sysinfo_350 = max user processes (-u) 1048576 notes_plat_sysinfo_355 = virtual memory (kbytes, -v) unlimited notes_plat_sysinfo_360 = file locks (-x) 1048576 notes_plat_sysinfo_365 = notes_plat_sysinfo_370 = ------------------------------------------------------------ notes_plat_sysinfo_375 = 5. sysinfo process ancestry notes_plat_sysinfo_380 = /usr/lib/systemd/systemd --switched-root --system --deserialize=42 ITMZ INTP notes_plat_sysinfo_385 = sshd: amptest [priv] notes_plat_sysinfo_390 = sshd: amptest@notty notes_plat_sysinfo_395 = java -jar remoting.jar -workDir /home/amptest -jar-cache /home/amptest/remoting/jarCache notes_plat_sysinfo_400 = /bin/bash /tmp/jenkins11094392986948535180.sh notes_plat_sysinfo_405 = sudo -S -E UPDATE_UTIL=false /home/amptest/util/jenkins/speccpu_pkg_verify.sh notes_plat_sysinfo_410 = http://eng21sys-r143.scc-lab.amperecomputing.com/fromsc/GreenSIR2017/without_report/spec2017_intrate_gcc13 notes_plat_sysinfo_415 = _genoa_thinksystem_sr635_v3_with_noinline_384.tgz notes_plat_sysinfo_420 = /bin/bash /home/amptest/util/jenkins/speccpu_pkg_verify.sh notes_plat_sysinfo_425 = http://eng21sys-r143.scc-lab.amperecomputing.com/fromsc/GreenSIR2017/without_report/spec2017_intrate_gcc13 notes_plat_sysinfo_430 = _genoa_thinksystem_sr635_v3_with_noinline_384.tgz notes_plat_sysinfo_435 = /bin/bash /home/amptest/workspace/sir2017_pkg_verify/ampere_spec2017/run_spec2017.sh --iterations 3 notes_plat_sysinfo_440 = --nobuild --action run --copies 192 --reportable --tune=base intrate notes_plat_sysinfo_445 = runcpu --config=ampere_aarch64 --define numasize=48 --define notes_plat_sysinfo_450 = gcc_dir=/home/amptest/ampere_spec2017/spec2017/gcc/install --define notes_plat_sysinfo_455 = llvm_dir=/home/amptest/ampere_spec2017/spec2017/llvm/install --define notes_plat_sysinfo_460 = jemalloc_dir=/home/amptest/ampere_spec2017/spec2017/jemalloc/install --define glibc_dir=/ --iterations 3 notes_plat_sysinfo_465 = --nobuild --action run --copies 192 --reportable --tune=base intrate notes_plat_sysinfo_470 = runcpu --configfile ampere_aarch64 --define numasize=48 --define notes_plat_sysinfo_475 = gcc_dir=/home/amptest/ampere_spec2017/spec2017/gcc/install --define notes_plat_sysinfo_480 = llvm_dir=/home/amptest/ampere_spec2017/spec2017/llvm/install --define notes_plat_sysinfo_485 = jemalloc_dir=/home/amptest/ampere_spec2017/spec2017/jemalloc/install --define glibc_dir=/ --iterations 3 notes_plat_sysinfo_490 = --nobuild --action run --copies 192 --reportable --tune base --nopower --runmode rate --tune base --size notes_plat_sysinfo_495 = refrate intrate --nopreenv --note-preenv --logfile $SPEC/tmp/CPU2017.003/templogs/preenv.intrate.003.0.log notes_plat_sysinfo_500 = --lognum 003.0 --from_runcpu 2 notes_plat_sysinfo_505 = specperl $SPEC/bin/sysinfo notes_plat_sysinfo_510 = $SPEC = /home/amptest/workspace/sir2017_pkg_verify/ampere_spec2017/spec2017 notes_plat_sysinfo_515 = notes_plat_sysinfo_520 = ------------------------------------------------------------ notes_plat_sysinfo_525 = 6. /proc/cpuinfo notes_plat_sysinfo_530 = model name : AMD EPYC 9654P 96-Core Processor notes_plat_sysinfo_535 = vendor_id : AuthenticAMD notes_plat_sysinfo_540 = cpu family : 25 notes_plat_sysinfo_545 = model : 17 notes_plat_sysinfo_550 = stepping : 1 notes_plat_sysinfo_555 = microcode : 0xa101144 notes_plat_sysinfo_560 = bugs : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass srso notes_plat_sysinfo_565 = TLB size : 3584 4K pages notes_plat_sysinfo_570 = cpu cores : 96 notes_plat_sysinfo_575 = siblings : 192 notes_plat_sysinfo_580 = 1 physical ids (chips) notes_plat_sysinfo_585 = 192 processors (hardware threads) notes_plat_sysinfo_590 = physical id 0: core ids 0-95 notes_plat_sysinfo_595 = physical id 0: apicids 0-191 notes_plat_sysinfo_600 = Caution: /proc/cpuinfo data regarding chips, cores, and threads is not necessarily reliable, especially for notes_plat_sysinfo_605 = virtualized systems. Use the above data carefully. notes_plat_sysinfo_610 = notes_plat_sysinfo_615 = ------------------------------------------------------------ notes_plat_sysinfo_620 = 7. lscpu notes_plat_sysinfo_625 = notes_plat_sysinfo_630 = From lscpu from util-linux 2.39.3: notes_plat_sysinfo_635 = Architecture: x86_64 notes_plat_sysinfo_640 = CPU op-mode(s): 32-bit, 64-bit notes_plat_sysinfo_645 = Address sizes: 52 bits physical, 57 bits virtual notes_plat_sysinfo_650 = Byte Order: Little Endian notes_plat_sysinfo_655 = CPU(s): 192 notes_plat_sysinfo_660 = On-line CPU(s) list: 0-191 notes_plat_sysinfo_665 = Vendor ID: AuthenticAMD notes_plat_sysinfo_670 = BIOS Vendor ID: Advanced Micro Devices, Inc. notes_plat_sysinfo_675 = Model name: AMD EPYC 9654P 96-Core Processor notes_plat_sysinfo_680 = BIOS Model name: AMD EPYC 9654P 96-Core Processor Unknown CPU @ 2.4GHz notes_plat_sysinfo_685 = BIOS CPU family: 107 notes_plat_sysinfo_690 = CPU family: 25 notes_plat_sysinfo_695 = Model: 17 notes_plat_sysinfo_700 = Thread(s) per core: 2 notes_plat_sysinfo_705 = Core(s) per socket: 96 notes_plat_sysinfo_710 = Socket(s): 1 notes_plat_sysinfo_715 = Stepping: 1 notes_plat_sysinfo_720 = Frequency boost: enabled notes_plat_sysinfo_725 = CPU(s) scaling MHz: 52% notes_plat_sysinfo_730 = CPU max MHz: 3707.8120 notes_plat_sysinfo_735 = CPU min MHz: 1500.0000 notes_plat_sysinfo_740 = BogoMIPS: 4792.60 notes_plat_sysinfo_745 = Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat notes_plat_sysinfo_750 = pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb notes_plat_sysinfo_755 = rdtscp lm constant_tsc rep_good amd_lbr_v2 nopl nonstop_tsc cpuid notes_plat_sysinfo_760 = extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 pcid notes_plat_sysinfo_765 = sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm notes_plat_sysinfo_770 = cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch notes_plat_sysinfo_775 = osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext notes_plat_sysinfo_780 = perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba perfmon_v2 notes_plat_sysinfo_785 = ibrs ibpb stibp ibrs_enhanced vmmcall fsgsbase bmi1 avx2 smep bmi2 notes_plat_sysinfo_790 = erms invpcid cqm rdt_a avx512f avx512dq rdseed adx smap avx512ifma notes_plat_sysinfo_795 = clflushopt clwb avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec notes_plat_sysinfo_800 = xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local notes_plat_sysinfo_805 = user_shstk avx512_bf16 clzero irperf xsaveerptr rdpru wbnoinvd notes_plat_sysinfo_810 = amd_ppin cppc arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean notes_plat_sysinfo_815 = flushbyasid decodeassists pausefilter pfthreshold avic notes_plat_sysinfo_820 = v_vmsave_vmload vgif x2avic v_spec_ctrl vnmi avx512vbmi umip pku notes_plat_sysinfo_825 = ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg notes_plat_sysinfo_830 = avx512_vpopcntdq la57 rdpid overflow_recov succor smca fsrm flush_l1d notes_plat_sysinfo_835 = debug_swap notes_plat_sysinfo_840 = Virtualization: AMD-V notes_plat_sysinfo_845 = L1d cache: 3 MiB (96 instances) notes_plat_sysinfo_850 = L1i cache: 3 MiB (96 instances) notes_plat_sysinfo_855 = L2 cache: 96 MiB (96 instances) notes_plat_sysinfo_860 = L3 cache: 384 MiB (12 instances) notes_plat_sysinfo_865 = NUMA node(s): 4 notes_plat_sysinfo_870 = NUMA node0 CPU(s): 0-23,96-119 notes_plat_sysinfo_875 = NUMA node1 CPU(s): 24-47,120-143 notes_plat_sysinfo_880 = NUMA node2 CPU(s): 48-71,144-167 notes_plat_sysinfo_885 = NUMA node3 CPU(s): 72-95,168-191 notes_plat_sysinfo_890 = Vulnerability Gather data sampling: Not affected notes_plat_sysinfo_895 = Vulnerability Itlb multihit: Not affected notes_plat_sysinfo_900 = Vulnerability L1tf: Not affected notes_plat_sysinfo_905 = Vulnerability Mds: Not affected notes_plat_sysinfo_910 = Vulnerability Meltdown: Not affected notes_plat_sysinfo_915 = Vulnerability Mmio stale data: Not affected notes_plat_sysinfo_920 = Vulnerability Reg file data sampling: Not affected notes_plat_sysinfo_925 = Vulnerability Retbleed: Not affected notes_plat_sysinfo_930 = Vulnerability Spec rstack overflow: Mitigation; Safe RET notes_plat_sysinfo_935 = Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl notes_plat_sysinfo_940 = Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization notes_plat_sysinfo_945 = Vulnerability Spectre v2: Mitigation; Enhanced / Automatic IBRS; IBPB conditional; STIBP notes_plat_sysinfo_950 = always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected notes_plat_sysinfo_955 = Vulnerability Srbds: Not affected notes_plat_sysinfo_960 = Vulnerability Tsx async abort: Not affected notes_plat_sysinfo_965 = notes_plat_sysinfo_970 = From lscpu --cache: notes_plat_sysinfo_975 = NAME ONE-SIZE ALL-SIZE WAYS TYPE LEVEL SETS PHY-LINE COHERENCY-SIZE notes_plat_sysinfo_980 = L1d 32K 3M 8 Data 1 64 1 64 notes_plat_sysinfo_985 = L1i 32K 3M 8 Instruction 1 64 1 64 notes_plat_sysinfo_990 = L2 1M 96M 8 Unified 2 2048 1 64 notes_plat_sysinfo_995 = L3 32M 384M 16 Unified 3 32768 1 64 notes_plat_sysinfo_1000= notes_plat_sysinfo_1005= ------------------------------------------------------------ notes_plat_sysinfo_1010= 8. numactl --hardware notes_plat_sysinfo_1015= NOTE: a numactl 'node' might or might not correspond to a physical chip. notes_plat_sysinfo_1020= available: 4 nodes (0-3) notes_plat_sysinfo_1025= node 0 cpus: 0-23,96-119 notes_plat_sysinfo_1030= node 0 size: 96381 MB notes_plat_sysinfo_1035= node 0 free: 94530 MB notes_plat_sysinfo_1040= node 1 cpus: 24-47,120-143 notes_plat_sysinfo_1045= node 1 size: 96716 MB notes_plat_sysinfo_1050= node 1 free: 95360 MB notes_plat_sysinfo_1055= node 2 cpus: 48-71,144-167 notes_plat_sysinfo_1060= node 2 size: 96755 MB notes_plat_sysinfo_1065= node 2 free: 94441 MB notes_plat_sysinfo_1070= node 3 cpus: 72-95,168-191 notes_plat_sysinfo_1075= node 3 size: 96305 MB notes_plat_sysinfo_1080= node 3 free: 94162 MB notes_plat_sysinfo_1085= node distances: notes_plat_sysinfo_1090= node 0 1 2 3 notes_plat_sysinfo_1095= 0: 10 20 20 20 notes_plat_sysinfo_1100= 1: 20 10 20 20 notes_plat_sysinfo_1105= 2: 20 20 10 20 notes_plat_sysinfo_1110= 3: 20 20 20 10 notes_plat_sysinfo_1115= notes_plat_sysinfo_1120= ------------------------------------------------------------ notes_plat_sysinfo_1125= 9. /proc/meminfo notes_plat_sysinfo_1130= MemTotal: 395427672 kB notes_plat_sysinfo_1135= notes_plat_sysinfo_1140= ------------------------------------------------------------ notes_plat_sysinfo_1145= 10. who -r notes_plat_sysinfo_1150= run-level 5 Aug 8 14:04 notes_plat_sysinfo_1155= notes_plat_sysinfo_1160= ------------------------------------------------------------ notes_plat_sysinfo_1165= 11. Systemd service manager version: systemd 254 (254.10+suse.84.ge8d77af424) notes_plat_sysinfo_1170= Default Target Status notes_plat_sysinfo_1175= graphical running notes_plat_sysinfo_1180= notes_plat_sysinfo_1185= ------------------------------------------------------------ notes_plat_sysinfo_1190= 12. Services, from systemctl list-unit-files notes_plat_sysinfo_1195= STATE UNIT FILES notes_plat_sysinfo_1200= enabled YaST2-Firstboot YaST2-Second-Stage apparmor appstream-sync-cache auditd bluetooth cron notes_plat_sysinfo_1205= display-manager firewalld getty@ irqbalance issue-generator kbdsettings kdump kdump-early notes_plat_sysinfo_1210= kdump-notify klog lvm2-monitor nscd postfix purge-kernels rollback rsyslog smartd sshd notes_plat_sysinfo_1215= systemd-pstore wicked wickedd-auto4 wickedd-dhcp4 wickedd-dhcp6 wickedd-nanny notes_plat_sysinfo_1220= enabled-runtime systemd-remount-fs notes_plat_sysinfo_1225= disabled accounts-daemon autofs autoyast-initscripts blk-availability bluetooth-mesh boot-sysctl notes_plat_sysinfo_1230= ca-certificates chrony-wait chronyd console-getty cups cups-browsed debug-shell ebtables notes_plat_sysinfo_1235= exchange-bmc-os-info fancontrol fsidd gpm grub2-once haveged ipmi ipmievd notes_plat_sysinfo_1240= issue-add-ssh-keys kexec-load lm_sensors lunmask man-db-create multipathd nfs nfs-blkmap notes_plat_sysinfo_1245= nmb ostree-remount rpcbind rpmconfigcheck rsyncd rtkit-daemon serial-getty@ notes_plat_sysinfo_1250= smartd_generate_opts smb snmpd snmptrapd speech-dispatcherd svnserve notes_plat_sysinfo_1255= systemd-boot-check-no-failures systemd-confext systemd-network-generator systemd-sysext notes_plat_sysinfo_1260= systemd-time-wait-sync systemd-timesyncd tuned udisks2 update-system-flatpaks upower notes_plat_sysinfo_1265= vncserver@ notes_plat_sysinfo_1270= indirect pcscd systemd-userdbd wickedd notes_plat_sysinfo_1275= notes_plat_sysinfo_1280= ------------------------------------------------------------ notes_plat_sysinfo_1285= 13. Linux kernel boot-time arguments, from /proc/cmdline notes_plat_sysinfo_1290= BOOT_IMAGE=/boot/vmlinuz-6.4.0-150600.21-default notes_plat_sysinfo_1295= root=UUID=fc8dda5b-cc39-41f3-8182-76f5b78f93be notes_plat_sysinfo_1300= splash=silent notes_plat_sysinfo_1305= ipv6.disable=1 notes_plat_sysinfo_1310= IRPO=/os/suse/SLE-15-SP6-GA/Server/x86_64/os notes_plat_sysinfo_1315= IFST=xfs notes_plat_sysinfo_1320= IURL=http://isorepo.SCC-LAB.amperecomputing.com notes_plat_sysinfo_1325= ITMZ notes_plat_sysinfo_1330= INTP notes_plat_sysinfo_1335= ITO=10 notes_plat_sysinfo_1340= mitigations=auto notes_plat_sysinfo_1345= quiet notes_plat_sysinfo_1350= security=apparmor notes_plat_sysinfo_1355= crashkernel=369M,high notes_plat_sysinfo_1360= crashkernel=72M,low notes_plat_sysinfo_1365= notes_plat_sysinfo_1370= ------------------------------------------------------------ notes_plat_sysinfo_1375= 14. cpupower frequency-info notes_plat_sysinfo_1380= analyzing CPU 149: notes_plat_sysinfo_1385= current policy: frequency should be within 1.50 GHz and 2.40 GHz. notes_plat_sysinfo_1390= The governor "ondemand" may decide which speed to use notes_plat_sysinfo_1395= within this range. notes_plat_sysinfo_1400= boost state support: notes_plat_sysinfo_1405= Supported: yes notes_plat_sysinfo_1410= Active: yes notes_plat_sysinfo_1415= notes_plat_sysinfo_1420= ------------------------------------------------------------ notes_plat_sysinfo_1425= 15. tuned-adm active notes_plat_sysinfo_1430= No current active profile. notes_plat_sysinfo_1435= notes_plat_sysinfo_1440= ------------------------------------------------------------ notes_plat_sysinfo_1445= 16. sysctl notes_plat_sysinfo_1450= kernel.numa_balancing 0 notes_plat_sysinfo_1455= kernel.randomize_va_space 2 notes_plat_sysinfo_1460= vm.compaction_proactiveness 20 notes_plat_sysinfo_1465= vm.dirty_background_bytes 0 notes_plat_sysinfo_1470= vm.dirty_background_ratio 10 notes_plat_sysinfo_1475= vm.dirty_bytes 0 notes_plat_sysinfo_1480= vm.dirty_expire_centisecs 3000 notes_plat_sysinfo_1485= vm.dirty_ratio 8 notes_plat_sysinfo_1490= vm.dirty_writeback_centisecs 500 notes_plat_sysinfo_1495= vm.dirtytime_expire_seconds 43200 notes_plat_sysinfo_1500= vm.extfrag_threshold 500 notes_plat_sysinfo_1505= vm.min_unmapped_ratio 1 notes_plat_sysinfo_1510= vm.nr_hugepages 0 notes_plat_sysinfo_1515= vm.nr_hugepages_mempolicy 0 notes_plat_sysinfo_1520= vm.nr_overcommit_hugepages 0 notes_plat_sysinfo_1525= vm.swappiness 1 notes_plat_sysinfo_1530= vm.watermark_boost_factor 15000 notes_plat_sysinfo_1535= vm.watermark_scale_factor 10 notes_plat_sysinfo_1540= vm.zone_reclaim_mode 1 notes_plat_sysinfo_1545= notes_plat_sysinfo_1550= ------------------------------------------------------------ notes_plat_sysinfo_1555= 17. /sys/kernel/mm/transparent_hugepage notes_plat_sysinfo_1560= defrag [always] defer defer+madvise madvise never notes_plat_sysinfo_1565= enabled [always] madvise never notes_plat_sysinfo_1570= hpage_pmd_size 2097152 notes_plat_sysinfo_1575= shmem_enabled always within_size advise [never] deny force notes_plat_sysinfo_1580= notes_plat_sysinfo_1585= ------------------------------------------------------------ notes_plat_sysinfo_1590= 18. /sys/kernel/mm/transparent_hugepage/khugepaged notes_plat_sysinfo_1595= alloc_sleep_millisecs 60000 notes_plat_sysinfo_1600= defrag 1 notes_plat_sysinfo_1605= max_ptes_none 511 notes_plat_sysinfo_1610= max_ptes_shared 256 notes_plat_sysinfo_1615= max_ptes_swap 64 notes_plat_sysinfo_1620= pages_to_scan 4096 notes_plat_sysinfo_1625= scan_sleep_millisecs 10000 notes_plat_sysinfo_1630= notes_plat_sysinfo_1635= ------------------------------------------------------------ notes_plat_sysinfo_1640= 19. OS release notes_plat_sysinfo_1645= From /etc/*-release /etc/*-version notes_plat_sysinfo_1650= os-release SUSE Linux Enterprise Server 15 SP6 notes_plat_sysinfo_1655= notes_plat_sysinfo_1660= ------------------------------------------------------------ notes_plat_sysinfo_1665= 20. Disk information notes_plat_sysinfo_1670= SPEC is set to: /home/amptest/workspace/sir2017_pkg_verify/ampere_spec2017/spec2017 notes_plat_sysinfo_1675= Filesystem Type Size Used Avail Use% Mounted on notes_plat_sysinfo_1680= /dev/sda6 xfs 378G 295G 83G 79% /home notes_plat_sysinfo_1685= notes_plat_sysinfo_1690= ------------------------------------------------------------ notes_plat_sysinfo_1695= 21. /sys/devices/virtual/dmi/id notes_plat_sysinfo_1700= Vendor: Lenovo notes_plat_sysinfo_1705= Product: ThinkSystem SR635 V3 notes_plat_sysinfo_1710= Product Family: ThinkSystem notes_plat_sysinfo_1715= Serial: JZ0045EC notes_plat_sysinfo_1720= notes_plat_sysinfo_1725= ------------------------------------------------------------ notes_plat_sysinfo_1730= 22. dmidecode notes_plat_sysinfo_1735= Additional information from dmidecode 3.4 follows. WARNING: Use caution when you interpret this section. notes_plat_sysinfo_1740= The 'dmidecode' program reads system data which is "intended to allow hardware to be accurately notes_plat_sysinfo_1745= determined", but the intent may not be met, as there are frequent changes to hardware, firmware, and the notes_plat_sysinfo_1750= "DMTF SMBIOS" standard. notes_plat_sysinfo_1755= Memory: notes_plat_sysinfo_1760= 12x Samsung M321R4GA3PB0-CWMXJ 32 GB 2 rank 5600, configured at 4800 notes_plat_sysinfo_1765= notes_plat_sysinfo_1770= notes_plat_sysinfo_1775= ------------------------------------------------------------ notes_plat_sysinfo_1780= 23. BIOS notes_plat_sysinfo_1785= (This section combines info from /sys/devices and dmidecode.) notes_plat_sysinfo_1790= BIOS Vendor: Lenovo notes_plat_sysinfo_1795= BIOS Version: KAE118M-4.11 notes_plat_sysinfo_1800= BIOS Date: 02/29/2024 notes_plat_sysinfo_1805= BIOS Revision: 4.11 notes_plat_sysinfo_1810= Firmware Revision: 2.81 hw_cpu_name = AMD EPYC 9654P hw_disk = 378 GB add more disk info here hw_nchips = 1 hw_ncores = 96 hw_nthreadspercore = 2 prepared_by = root (is never output, only tags rawfile) sw_file = xfs sw_os001 = SUSE Linux Enterprise Server 15 SP6 sw_os002 = 6.4.0-150600.21-default sw_state = Run level 5 (add definition here) # End of settings added by sysinfo_program