# Invocation command line: # /home/zfu/speccpu2017/speccpu2017_install/bin/harness/runcpu --configfile zfx-gcc12.2-armv9-256core.cfg --reportable --copies 256 --threads 256 --iterations 3 --tune base --action run --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 "ZhuFengXin_cpu2017" %endif #--------- Preprocessor ------------------------------------------------------- %ifndef %{bits} # EDIT to control 32 or 64 bit compilation. Or, % define bits 64 # you can set it on the command line using: %endif # 'runcpu --define bits=nn' %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' # Don't change this part. %ifdef %{GCC4} % define model "" # mabi not present in older GCC 4 %elif %{bits} == 64 % define model -mabi=lp64 %elif %{bits} == 32 % define model -mabi=ilp32 %else % error Please define number of bits - see instructions in config file %endif %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 # The number of cores in a numa node %ifndef %{numasize} % define numasize 64 %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 #flagsurl = $[top]/config/flags/gcc.xml #flagsurl000 = http://www.spec.org/cpu2017/flags/gcc.2021-07-21.xml flagsurl000 = http://www.spec.org/cpu2017/flags/gcc.2021-07-21.xml flagsurl001 = http://www.spec.org/cpu2017/flags/ZTE-Platform-Settings-ZXIC-V1.0.xml ignore_errors = 1 iterations = 3 label = %{label}-%{bits} line_width = 1020 log_line_width = 1020 makeflags = --jobs=%{build_ncpus} mean_anyway = 1 output_format = txt,html,cfg,pdf,csv preenv = 1 reportable = 1 tune = base # EDIT if needed: set to "base" for old GCC. # See note "Older GCC" above. #--------- 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/cpu2017/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/cpu2017/Docs/system-requirements.html#memory # # threads - This config file sets a starting point. You could try raising # it. A higher thread count is much more likely to be useful for # fpspeed than for intspeed. # intrate,fprate: copies = 256 # EDIT to change number of copies (see above) intspeed,fpspeed: threads = 256 # EDIT to change number of OpenMP threads (see above) # Affinitization default: submit = numactl --membind=`expr $SPECCOPYNUM / %{numasize}` --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 "/usr/local/gcc-12.2.0" # EDIT (see above) %endif %ifndef %{jemalloc_dir} % define jemalloc_dir "/usr/local/jemalloc-5.2.1_install" %endif # EDIT: If your compiler version is GCC 4 (not recommended; see section "Older # GCC" above), enable the next line to avoid errors with -mabi # #%define GCC4 # EDIT: remove the '#' from column 1 if using GCC 4 # EDIT: If your compiler version is 10 or greater, you must enable the next # line to avoid compile errors for several FP benchmarks # #%define GCCge10 # EDIT: remove the '#' from column 1 if using GCC 10 or later # 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 preENV_LD_LIBRARY_PATH = %{jemalloc_dir}/lib:%{gcc_dir}/lib64/:%{gcc_dir}/lib/:%{ENV_LD_LIBRARY_PATH} #preENV_LD_LIBRARY_PATH = %{gcc_dir}/lib64/:%{gcc_dir}/lib/:/lib64 #preENV_LD_LIBRARY_PATH = %{gcc_dir}/lib64/:%{gcc_dir}/lib/:/lib64:%{ENV_LD_LIBRARY_PATH} SPECLANG = %{gcc_dir}/bin/ CC = $(SPECLANG)gcc -std=c99 %{model} CXX = $(SPECLANG)g++ -std=c++03 %{model} FC = $(SPECLANG)gfortran %{model} # How to say "Show me your version, please" CC_VERSION_OPTION = --version CXX_VERSION_OPTION = --version FC_VERSION_OPTION = --version EXTRA_CFLAGS = -w EXTRA_LDFLAGS = -L%{gcc_dir}/lib64 -L%{gcc_dir}/lib -L%{jemalloc_dir}/lib EXTRA_LIBS = -ljemalloc -Wl,-Map,mapfile default: %if %{bits} == 64 sw_base_ptrsize = 64-bit sw_peak_ptrsize = Not Applicable %else sw_base_ptrsize = 32-bit sw_peak_ptrsize = 32-bit %endif #--------- Portability -------------------------------------------------------- default: # data model applies to all benchmarks %if %{bits} == 32 # Strongly recommended because at run-time, operations using modern file # systems may fail spectacularly and frequently (or, worse, quietly and # randomly) if a program does not accommodate 64-bit metadata. EXTRA_PORTABILITY = -D_FILE_OFFSET_BITS=64 %else EXTRA_PORTABILITY = -DSPEC_LP64 %endif # Benchmark-specific portability (ordered by last 2 digits of bmark number) 500.perlbench_r,600.perlbench_s: #lang='C' %if %{bits} == 32 % define suffix AARCH32 %else % define suffix AARCH64 %endif PORTABILITY = -DSPEC_LINUX_%{suffix} 521.wrf_r,621.wrf_s: #lang='F,C' CPORTABILITY = -DSPEC_CASE_FLAG FPORTABILITY = -fconvert=big-endian -fallow-argument-mismatch 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 -fallow-argument-mismatch 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: EXTRA_CFLAGS = -fno-strict-aliasing -fno-unsafe-math-optimizations -fno-finite-math-only -fgnu89-inline -fcommon # # 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 % ifdef %{GCCge10} # workaround for GCC v10 (and presumably later) EXTRA_FFLAGS = -fallow-argument-mismatch % endif 527.cam4_r,627.cam4_s=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/527.cam4_r.html EXTRA_CFLAGS = -fno-strict-aliasing % ifdef %{GCCge10} # workaround for GCC v10 (and presumably later) EXTRA_FFLAGS = -fallow-argument-mismatch % endif # See also topic "628.pop2_s basepeak" below 628.pop2_s=peak: # https://www.spec.org/cpu2017/Docs/benchmarks/628.pop2_s.html % ifdef %{GCCge10} # workaround for GCC v10 (and presumably later) EXTRA_FFLAGS = -fallow-argument-mismatch % endif # # FP workarounds - base - combine the above - https://www.spec.org/cpu2017/Docs/runrules.html#BaseFlags # fprate,fpspeed=base: EXTRA_CFLAGS = -fno-strict-aliasing % ifdef %{GCCge10} # workaround for GCC v10 (and presumably later) EXTRA_FFLAGS = -fallow-argument-mismatch % endif #-------- Tuning Flags common to Base and Peak -------------------------------- # # Speed (OpenMP and Autopar allowed) # %if %{bits} == 32 intspeed,fpspeed: # # Many of the speed benchmarks (6nn.benchmark_s) do not fit in 32 bits # If you wish to run SPECint2017_speed or SPECfp2017_speed, please use # # runcpu --define bits=64 # fail_build = 1 %else 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 = 1G %endif #-------- Base Tuning Flags ---------------------------------------------- # EDIT if needed -- If you run into errors, you may need to adjust the # optimization - for example you may need to remove # the -mcpu=native. See topic "Older GCC" above. # intrate=base: # flags for all base OPTIMIZE = -g -O3 -mcpu=neoverse-n1 -march=armv9-a -funroll-loops -flto=32 COPTIMIZE = --param early-inlining-insns=96 --param max-inline-insns-auto=64 --param inline-unit-growth=96 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 -flto-partition=one fprate=base: OPTIMIZE = -g -Ofast -mcpu=neoverse-n1 -flto FOPTIMIZE = -fno-stack-arrays #-------- Peak Tuning Flags ---------------------------------------------- default=peak: OPTIMIZE = -g -Ofast -flto -mcpu=native PASS1_FLAGS = -fprofile-generate PASS2_FLAGS = -fprofile-use # 628.pop2_s basepeak: Depending on the interplay of several optimizations, # 628.pop2_s might not validate with peak tuning. Use the base # version instead. See: # https:// www.spec.org/cpu2017/Docs/benchmarks/628.pop2_s.html 628.pop2_s=peak: basepeak = yes #------------------------------------------------------------------------------ # 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 12.2.0 of GCC, the sw_compiler001 = GNU Compiler Collection #--------- EDIT info about you ------------------------------------------------ # To understand the difference between hw_vendor/sponsor/tester, see: # https://www.spec.org/cpu2017/Docs/config.html#test_sponsor intrate,intspeed,fprate,fpspeed: # Important: keep this line hw_vendor = ZTE Corporation tester = ZTE Corporation test_sponsor = ZTE Corporation license_num = 9061 prepared_by = ZTE Corporation #--------- EDIT system availability dates ------------------------------------- intrate,intspeed,fprate,fpspeed: # Important: keep this line # Example # Brief info about field hw_avail = Jun-2024 # Date of LAST hardware component to ship sw_avail = Aug-2022 # Date of LAST software component to ship fw_bios = Version 31.24.03.00 released Jul-2024 #--------- EDIT system information -------------------------------------------- intrate,intspeed,fprate,fpspeed: # Important: keep this line # Example # Brief info about field hw_cpu_name = ZXIC ZhuFengXin 8167 hw_cpu_nominal_mhz = 3100 # Nominal chip frequency, in MHz hw_cpu_max_mhz = 3100 # Max chip frequency, in MHz hw_disk = 1 x 480 GB SATA SSD hw_model000 = ZTE R5310G3 Server System hw_model001 = (3.10 GHz, ZXIC ZhuFengXin 8167) hw_nchips = 2 # number chips enabled hw_ncores = 256 # number cores enabled hw_ncpuorder = 1,2 chips # Ordering options hw_nthreadspercore = 1 # number threads enabled per core hw_other = CPU Cooling: Air hw_memory = 1 TB (16 x 64 GB 2Rx4 PC5-5600B-R) hw_pcache = 64 KB I + 64 KB D on chip per core hw_scache = 1 MB I+D on chip per core hw_tcache = 128 MB I+D on chip per chip hw_ocache = None sw_other = Jemalloc memory allocator library v5.2.1 # 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/zfu/speccpu2017/speccpu2017_install/bin/sysinfo notes_plat_sysinfo_010 = Rev: r6732 of 2022-11-07 fe91c89b7ed5c36ae2c92cc097bec197 notes_plat_sysinfo_015 = running on localhost.localdomain Mon Aug 5 08:29:22 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 239 (239-69.el8) 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. Kernel self-reported vulnerability status, from /sys/devices/system/cpu/vulnerabilities notes_plat_sysinfo_150 = 21. Disk information notes_plat_sysinfo_155 = 22. /sys/devices/virtual/dmi/id notes_plat_sysinfo_160 = 23. dmidecode notes_plat_sysinfo_165 = 24. BIOS notes_plat_sysinfo_170 = ------------------------------------------------------------ notes_plat_sysinfo_175 = notes_plat_sysinfo_180 = ------------------------------------------------------------ notes_plat_sysinfo_185 = 1. uname -a notes_plat_sysinfo_190 = Linux localhost.localdomain 4.18.0-408.el8.aarch64 #1 SMP Mon Jul 18 15:47:44 UTC 2022 aarch64 aarch64 notes_plat_sysinfo_195 = aarch64 GNU/Linux notes_plat_sysinfo_200 = notes_plat_sysinfo_205 = ------------------------------------------------------------ notes_plat_sysinfo_210 = 2. w notes_plat_sysinfo_215 = 08:29:22 up 10 min, 3 users, load average: 0.00, 1.17, 1.48 notes_plat_sysinfo_220 = USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT notes_plat_sysinfo_225 = root pts/0 198.168.42.111 08:19 13.00s 1.19s 0.07s -bash notes_plat_sysinfo_230 = root pts/1 198.168.42.111 08:20 7.00s 0.04s 0.04s -bash notes_plat_sysinfo_235 = root pts/2 198.168.42.111 08:20 9:02 0.03s 0.03s -bash notes_plat_sysinfo_240 = notes_plat_sysinfo_245 = ------------------------------------------------------------ notes_plat_sysinfo_250 = 3. Username notes_plat_sysinfo_255 = From environment variable $USER: root notes_plat_sysinfo_260 = notes_plat_sysinfo_265 = ------------------------------------------------------------ notes_plat_sysinfo_270 = 4. ulimit -a notes_plat_sysinfo_275 = core file size (blocks, -c) 0 notes_plat_sysinfo_280 = data seg size (kbytes, -d) unlimited notes_plat_sysinfo_285 = scheduling priority (-e) 0 notes_plat_sysinfo_290 = file size (blocks, -f) unlimited notes_plat_sysinfo_295 = pending signals (-i) 1028357 notes_plat_sysinfo_300 = max locked memory (kbytes, -l) 64 notes_plat_sysinfo_305 = max memory size (kbytes, -m) unlimited notes_plat_sysinfo_310 = open files (-n) 1024 notes_plat_sysinfo_315 = pipe size (512 bytes, -p) 8 notes_plat_sysinfo_320 = POSIX message queues (bytes, -q) 819200 notes_plat_sysinfo_325 = real-time priority (-r) 0 notes_plat_sysinfo_330 = stack size (kbytes, -s) unlimited notes_plat_sysinfo_335 = cpu time (seconds, -t) unlimited notes_plat_sysinfo_340 = max user processes (-u) 1028357 notes_plat_sysinfo_345 = virtual memory (kbytes, -v) unlimited notes_plat_sysinfo_350 = file locks (-x) unlimited notes_plat_sysinfo_355 = notes_plat_sysinfo_360 = ------------------------------------------------------------ notes_plat_sysinfo_365 = 5. sysinfo process ancestry notes_plat_sysinfo_370 = /usr/lib/systemd/systemd --switched-root --system --deserialize 18 notes_plat_sysinfo_375 = /usr/sbin/sshd -D notes_plat_sysinfo_380 = -oCiphers=aes256-gcm@openssh.com,chacha20-poly1305@openssh.com,aes256-ctr,aes256-cbc,aes128-gcm@openssh.co notes_plat_sysinfo_385 = m,aes128-ctr,aes128-cbc notes_plat_sysinfo_390 = -oMACs=hmac-sha2-256-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512-etm@ notes_plat_sysinfo_395 = openssh.com,hmac-sha2-256,hmac-sha1,umac-128@openssh.com,hmac-sha2-512... notes_plat_sysinfo_400 = sshd: root [priv] notes_plat_sysinfo_405 = sshd: root@pts/0 notes_plat_sysinfo_410 = -bash notes_plat_sysinfo_415 = runcpu --config=zfx-gcc12.2-armv9-256core.cfg --reportable --copies=256 --threads=256 --iterations=3 notes_plat_sysinfo_420 = --tune=base --action=run intrate notes_plat_sysinfo_425 = runcpu --configfile zfx-gcc12.2-armv9-256core.cfg --reportable --copies 256 --threads 256 --iterations 3 notes_plat_sysinfo_430 = --tune base --action run --nopower --runmode rate --tune base --size refrate intrate --nopreenv notes_plat_sysinfo_435 = --note-preenv --logfile $SPEC/tmp/CPU2017.001/templogs/preenv.intrate.001.0.log --lognum 001.0 notes_plat_sysinfo_440 = --from_runcpu 2 notes_plat_sysinfo_445 = specperl $SPEC/bin/sysinfo notes_plat_sysinfo_450 = $SPEC = /home/zfu/speccpu2017/speccpu2017_install notes_plat_sysinfo_455 = notes_plat_sysinfo_460 = ------------------------------------------------------------ notes_plat_sysinfo_465 = 6. /proc/cpuinfo notes_plat_sysinfo_470 = CPU implementer : 0x41 notes_plat_sysinfo_475 = CPU architecture: 8 notes_plat_sysinfo_480 = CPU variant : 0x0 notes_plat_sysinfo_485 = CPU part : 0xd49 notes_plat_sysinfo_490 = CPU revision : 1 notes_plat_sysinfo_495 = Features : fp asimd evtstrm crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop notes_plat_sysinfo_500 = asimddp sve asimdfhm dit uscat ilrcpc flagm ssbs sb dcpodp sve2 svebitperm flagm2 frint notes_plat_sysinfo_505 = svei8mm svebf16 i8mm bf16 dgh notes_plat_sysinfo_510 = notes_plat_sysinfo_515 = ------------------------------------------------------------ notes_plat_sysinfo_520 = 7. lscpu notes_plat_sysinfo_525 = notes_plat_sysinfo_530 = From lscpu from util-linux 2.32.1: notes_plat_sysinfo_535 = Architecture: aarch64 notes_plat_sysinfo_540 = Byte Order: Little Endian notes_plat_sysinfo_545 = CPU(s): 256 notes_plat_sysinfo_550 = On-line CPU(s) list: 0-255 notes_plat_sysinfo_555 = Thread(s) per core: 1 notes_plat_sysinfo_560 = Core(s) per socket: 128 notes_plat_sysinfo_565 = Socket(s): 2 notes_plat_sysinfo_570 = NUMA node(s): 4 notes_plat_sysinfo_575 = Vendor ID: ARM notes_plat_sysinfo_580 = BIOS Vendor ID: SANECHIPS notes_plat_sysinfo_585 = Model: 1 notes_plat_sysinfo_590 = BIOS Model name: ZXIC(R) ZhuFengXin 8167 Processor notes_plat_sysinfo_595 = Stepping: r0p1 notes_plat_sysinfo_600 = CPU max MHz: 3100.0000 notes_plat_sysinfo_605 = CPU min MHz: 800.0000 notes_plat_sysinfo_610 = BogoMIPS: 250.00 notes_plat_sysinfo_615 = L1d cache: 64K notes_plat_sysinfo_620 = L1i cache: 64K notes_plat_sysinfo_625 = L2 cache: 1024K notes_plat_sysinfo_630 = L3 cache: 262144K notes_plat_sysinfo_635 = NUMA node0 CPU(s): 0-63 notes_plat_sysinfo_640 = NUMA node1 CPU(s): 64-127 notes_plat_sysinfo_645 = NUMA node2 CPU(s): 128-191 notes_plat_sysinfo_650 = NUMA node3 CPU(s): 192-255 notes_plat_sysinfo_655 = Flags: fp asimd evtstrm crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop notes_plat_sysinfo_660 = asimddp sve asimdfhm dit uscat ilrcpc flagm ssbs sb dcpodp sve2 svebitperm flagm2 notes_plat_sysinfo_665 = frint svei8mm svebf16 i8mm bf16 dgh notes_plat_sysinfo_670 = notes_plat_sysinfo_675 = ------------------------------------------------------------ notes_plat_sysinfo_680 = 8. numactl --hardware notes_plat_sysinfo_685 = NOTE: a numactl 'node' might or might not correspond to a physical chip. notes_plat_sysinfo_690 = available: 4 nodes (0-3) notes_plat_sysinfo_695 = node 0 cpus: 0-63 notes_plat_sysinfo_700 = node 0 size: 256001 MB notes_plat_sysinfo_705 = node 0 free: 252499 MB notes_plat_sysinfo_710 = node 1 cpus: 64-127 notes_plat_sysinfo_715 = node 1 size: 257514 MB notes_plat_sysinfo_720 = node 1 free: 256662 MB notes_plat_sysinfo_725 = node 2 cpus: 128-191 notes_plat_sysinfo_730 = node 2 size: 257514 MB notes_plat_sysinfo_735 = node 2 free: 255813 MB notes_plat_sysinfo_740 = node 3 cpus: 192-255 notes_plat_sysinfo_745 = node 3 size: 257378 MB notes_plat_sysinfo_750 = node 3 free: 256387 MB notes_plat_sysinfo_755 = node distances: notes_plat_sysinfo_760 = node 0 1 2 3 notes_plat_sysinfo_765 = 0: 10 16 22 22 notes_plat_sysinfo_770 = 1: 16 10 22 22 notes_plat_sysinfo_775 = 2: 22 22 10 16 notes_plat_sysinfo_780 = 3: 22 22 16 10 notes_plat_sysinfo_785 = notes_plat_sysinfo_790 = ------------------------------------------------------------ notes_plat_sysinfo_795 = 9. /proc/meminfo notes_plat_sysinfo_800 = MemTotal: 1053091392 kB notes_plat_sysinfo_805 = notes_plat_sysinfo_810 = ------------------------------------------------------------ notes_plat_sysinfo_815 = 10. who -r notes_plat_sysinfo_820 = run-level 3 Aug 5 08:19 notes_plat_sysinfo_825 = notes_plat_sysinfo_830 = ------------------------------------------------------------ notes_plat_sysinfo_835 = 11. Systemd service manager version: systemd 239 (239-69.el8) notes_plat_sysinfo_840 = Default Target Status notes_plat_sysinfo_845 = multi-user running notes_plat_sysinfo_850 = notes_plat_sysinfo_855 = ------------------------------------------------------------ notes_plat_sysinfo_860 = 12. Services, from systemctl list-unit-files notes_plat_sysinfo_865 = STATE UNIT FILES notes_plat_sysinfo_870 = enabled ModemManager NetworkManager NetworkManager-dispatcher NetworkManager-wait-online accounts-daemon notes_plat_sysinfo_875 = atd auditd autovt@ avahi-daemon bluetooth crond cups display-manager gdm getty@ import-state notes_plat_sysinfo_880 = irqbalance iscsi iscsi-onboot kdump libstoragemgmt loadmodules lvm2-monitor mdmonitor multipathd notes_plat_sysinfo_885 = nis-domainname nvmefc-boot-connections ostree-remount qemu-guest-agent rsyslog rtkit-daemon notes_plat_sysinfo_890 = selinux-autorelabel-mark smartd sshd sssd syslog timedatex tuned udisks2 vdo notes_plat_sysinfo_895 = disabled arp-ethers blk-availability brltty canberra-system-bootup canberra-system-shutdown notes_plat_sysinfo_900 = canberra-system-shutdown-reboot chrony-wait chronyd cni-dhcp console-getty cpupower cups-browsed notes_plat_sysinfo_905 = debug-shell dnf-system-upgrade dnsmasq ebtables firewalld initial-setup notes_plat_sysinfo_910 = initial-setup-reconfiguration iprdump iprinit iprupdate iscsid iscsiuio kpatch kvm_stat ledmon notes_plat_sysinfo_915 = man-db-restart-cache-update ndctl-monitor nftables nvmf-autoconnect podman podman-auto-update notes_plat_sysinfo_920 = podman-kube@ podman-restart psacct ras-mc-ctl rasdaemon rdisc speech-dispatcherd sshd-keygen@ notes_plat_sysinfo_925 = switcheroo-control systemd-resolved tcsd upower wpa_supplicant notes_plat_sysinfo_930 = generated SystemTap compile-server gcc-toolset-10-stap-server gcc-toolset-10-systemtap notes_plat_sysinfo_935 = gcc-toolset-11-stap-server gcc-toolset-11-systemtap gcc-toolset-9-stap-server notes_plat_sysinfo_940 = gcc-toolset-9-systemtap scripts startup notes_plat_sysinfo_945 = indirect serial-getty@ spice-vdagentd sssd-autofs sssd-kcm sssd-nss sssd-pac sssd-pam sssd-ssh sssd-sudo notes_plat_sysinfo_950 = masked systemd-timedated notes_plat_sysinfo_955 = notes_plat_sysinfo_960 = ------------------------------------------------------------ notes_plat_sysinfo_965 = 13. Linux kernel boot-time arguments, from /proc/cmdline notes_plat_sysinfo_970 = BOOT_IMAGE=(hd0,gpt2)/vmlinuz-4.18.0-408.el8.aarch64 notes_plat_sysinfo_975 = root=UUID=79328569-298c-45f2-af56-924299e4920d notes_plat_sysinfo_980 = ro notes_plat_sysinfo_985 = crashkernel=auto notes_plat_sysinfo_990 = skew_tick=1 notes_plat_sysinfo_995 = notes_plat_sysinfo_1000= ------------------------------------------------------------ notes_plat_sysinfo_1005= 14. cpupower frequency-info notes_plat_sysinfo_1010= analyzing CPU 0: notes_plat_sysinfo_1015= current policy: frequency should be within 800 MHz and 3.10 GHz. notes_plat_sysinfo_1020= The governor "performance" may decide which speed to use notes_plat_sysinfo_1025= within this range. notes_plat_sysinfo_1030= notes_plat_sysinfo_1035= ------------------------------------------------------------ notes_plat_sysinfo_1040= 15. tuned-adm active notes_plat_sysinfo_1045= No current active profile. notes_plat_sysinfo_1050= notes_plat_sysinfo_1055= ------------------------------------------------------------ notes_plat_sysinfo_1060= 16. sysctl notes_plat_sysinfo_1065= kernel.numa_balancing 0 notes_plat_sysinfo_1070= kernel.randomize_va_space 2 notes_plat_sysinfo_1075= vm.compaction_proactiveness 0 notes_plat_sysinfo_1080= vm.dirty_background_bytes 0 notes_plat_sysinfo_1085= vm.dirty_background_ratio 10 notes_plat_sysinfo_1090= vm.dirty_bytes 0 notes_plat_sysinfo_1095= vm.dirty_expire_centisecs 3000 notes_plat_sysinfo_1100= vm.dirty_ratio 8 notes_plat_sysinfo_1105= vm.dirty_writeback_centisecs 500 notes_plat_sysinfo_1110= vm.dirtytime_expire_seconds 43200 notes_plat_sysinfo_1115= vm.extfrag_threshold 500 notes_plat_sysinfo_1120= vm.min_unmapped_ratio 1 notes_plat_sysinfo_1125= vm.nr_hugepages 0 notes_plat_sysinfo_1130= vm.nr_hugepages_mempolicy 0 notes_plat_sysinfo_1135= vm.nr_overcommit_hugepages 0 notes_plat_sysinfo_1140= vm.swappiness 1 notes_plat_sysinfo_1145= vm.watermark_boost_factor 15000 notes_plat_sysinfo_1150= vm.watermark_scale_factor 10 notes_plat_sysinfo_1155= vm.zone_reclaim_mode 1 notes_plat_sysinfo_1160= notes_plat_sysinfo_1165= ------------------------------------------------------------ notes_plat_sysinfo_1170= 17. /sys/kernel/mm/transparent_hugepage notes_plat_sysinfo_1175= defrag always defer defer+madvise [madvise] never notes_plat_sysinfo_1180= enabled always madvise [never] notes_plat_sysinfo_1185= hpage_pmd_size 536870912 notes_plat_sysinfo_1190= shmem_enabled always within_size advise [never] deny force notes_plat_sysinfo_1195= notes_plat_sysinfo_1200= ------------------------------------------------------------ notes_plat_sysinfo_1205= 18. /sys/kernel/mm/transparent_hugepage/khugepaged notes_plat_sysinfo_1210= alloc_sleep_millisecs 60000 notes_plat_sysinfo_1215= defrag 1 notes_plat_sysinfo_1220= max_ptes_none 8191 notes_plat_sysinfo_1225= max_ptes_swap 1024 notes_plat_sysinfo_1230= pages_to_scan 65536 notes_plat_sysinfo_1235= scan_sleep_millisecs 10000 notes_plat_sysinfo_1240= notes_plat_sysinfo_1245= ------------------------------------------------------------ notes_plat_sysinfo_1250= 19. OS release notes_plat_sysinfo_1255= From /etc/*-release /etc/*-version notes_plat_sysinfo_1260= os-release CentOS Stream 8 notes_plat_sysinfo_1265= redhat-release CentOS Stream release 8 notes_plat_sysinfo_1270= system-release CentOS Stream release 8 notes_plat_sysinfo_1275= notes_plat_sysinfo_1280= ------------------------------------------------------------ notes_plat_sysinfo_1285= 20. Kernel self-reported vulnerability status, from /sys/devices/system/cpu/vulnerabilities notes_plat_sysinfo_1290= itlb_multihit Not affected notes_plat_sysinfo_1295= l1tf Not affected notes_plat_sysinfo_1300= mds Not affected notes_plat_sysinfo_1305= meltdown Not affected notes_plat_sysinfo_1310= spec_store_bypass Mitigation: Speculative Store Bypass disabled via prctl notes_plat_sysinfo_1315= spectre_v1 Mitigation: __user pointer sanitization notes_plat_sysinfo_1320= spectre_v2 Not affected notes_plat_sysinfo_1325= srbds Not affected notes_plat_sysinfo_1330= tsx_async_abort Not affected notes_plat_sysinfo_1335= For more information, see the Linux documentation on hardware vulnerabilities, for example notes_plat_sysinfo_1340= https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/index.html notes_plat_sysinfo_1345= notes_plat_sysinfo_1350= ------------------------------------------------------------ notes_plat_sysinfo_1355= 21. Disk information notes_plat_sysinfo_1360= SPEC is set to: /home/zfu/speccpu2017/speccpu2017_install notes_plat_sysinfo_1365= Filesystem Type Size Used Avail Use% Mounted on notes_plat_sysinfo_1370= /dev/sda4 xfs 430G 182G 249G 43% / notes_plat_sysinfo_1375= notes_plat_sysinfo_1380= ------------------------------------------------------------ notes_plat_sysinfo_1385= 22. /sys/devices/virtual/dmi/id notes_plat_sysinfo_1390= Vendor: ZTE notes_plat_sysinfo_1395= Product: R5310 G3 notes_plat_sysinfo_1400= Product Family: Server notes_plat_sysinfo_1405= Serial: 219537921268 notes_plat_sysinfo_1410= notes_plat_sysinfo_1415= ------------------------------------------------------------ notes_plat_sysinfo_1420= 23. dmidecode notes_plat_sysinfo_1425= Additional information from dmidecode 3.3 follows. WARNING: Use caution when you interpret this section. notes_plat_sysinfo_1430= The 'dmidecode' program reads system data which is "intended to allow hardware to be accurately notes_plat_sysinfo_1435= determined", but the intent may not be met, as there are frequent changes to hardware, firmware, and the notes_plat_sysinfo_1440= "DMTF SMBIOS" standard. notes_plat_sysinfo_1445= Memory: notes_plat_sysinfo_1450= 16x Samsung M321R8GA0PB0-CWMXH 64 GB 2 rank 5600 notes_plat_sysinfo_1455= notes_plat_sysinfo_1460= notes_plat_sysinfo_1465= ------------------------------------------------------------ notes_plat_sysinfo_1470= 24. BIOS notes_plat_sysinfo_1475= (This section combines info from /sys/devices and dmidecode.) notes_plat_sysinfo_1480= BIOS Vendor: Byosoft notes_plat_sysinfo_1485= BIOS Version: 31.24.03.00 (SCP:24.03.01.49.02) notes_plat_sysinfo_1490= BIOS Date: 07/25/2024 notes_plat_sysinfo_1495= BIOS Revision: 31.24 notes_plat_sysinfo_1500= Firmware Revision: 1.49 hw_cpu_name = cpu name hw_disk = 430 GB add more disk info here hw_nchips = 2 hw_ncores = 256 hw_nthreadspercore = 1 prepared_by = root (is never output, only tags rawfile) sw_file = xfs sw_os000 = CentOS Stream 8 sw_os001 = 4.18.0-408.el8.aarch64 sw_state = Run level 3 (multi-user) # End of settings added by sysinfo_program # 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: power_management000 = BIOS and OS set to prefer performance at the cost power_management001 = of additional power usage notes_os_000 = Stack size set to unlimited using "ulimit -s unlimited" notes_os_005 = OS set to performance mode via cpupower frequency-set -g performance notes_submit_000 = The numactl mechanism was used to bind copies to processors. The config file option 'submit' notes_submit_005 = was used to generate numactl commands to bind each copy to a specific processor. notes_submit_010 = For details, please see the config file. notes_000 = Binaries compiled on a system with 2x ZXIC ZhuFengXin 8167 CPU + 1 TB RAM notes_005 = memory using CentOS Stream 8 notes_010 = Transparent Huge Pages enabled by default notes_015 = Prior to runcpu invocation notes_020 = Filesystem page cache synced and cleared with: notes_025 = sync; echo 3> /proc/sys/vm/drop_caches notes_030 = NA: The test sponsor attests, as of date of publication, that CVE-2017-5754 (Meltdown) notes_035 = is mitigated in the system as tested and documented. notes_040 = Yes: The test sponsor attests, as of date of publication, that CVE-2017-5753 (Spectre variant 1) notes_045 = is mitigated in the system as tested and documented. notes_050 = Yes: The test sponsor attests, as of date of publication, that CVE-2017-5715 (Spectre variant 2) notes_055 = is mitigated in the system as tested and documented. notes_jemalloc_000 = jemalloc, a general purpose malloc implementation notes_jemalloc_005 = built with the CentOS Stream 8, and the system compiler gcc 12.2.0 notes_jemalloc_010 = sources available from jemalloc.net or https://github.com/jemalloc/jemalloc/releases