# Invocation command line: # /root/cpu2017/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 --copies 192 --nobuild --action run --reportable --tune base:peak --nopower --runmode rate --tune base:peak --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/gcc.2024-08-14.xml flagsurl001 = http://www.spec.org/cpu2017/flags/Supermicro-Platform-Settings-V1.2-Ampere-revE.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 = txt,html,cfg,pdf,csv preenv = 1 reportable = 0 tune = base,peak # 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 EXTRA_FLIBS = -u malloc -ljemalloc -Wl,-Map,mapfile default: sw_base_ptrsize = 64-bit sw_peak_ptrsize = 64-bit #--------- 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_AARCH64 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 CPORTABILITY = -Wno-implicit-int 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 ---------------------------------------------- # intrate=base: OPTIMIZE = -g -O3 -mcpu=ampere1a -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 -fstack-arrays -fno-tree-vectorize fprate=base: OPTIMIZE = -g -Ofast -mcpu=ampere1a -flto=32 COPTIMIZE = CXXOPTIMIZE = FOPTIMIZE = -fno-stack-arrays #-------- Peak Tuning Flags ---------------------------------------------- default=peak: OPTIMIZE = -g -Ofast -mcpu=ampere1a -flto=32 -funroll-loops 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 = -fno-stack-arrays PASS1_FLAGS = -fprofile-generate PASS2_FLAGS = -fprofile-use -fprofile-partial-training 505.mcf_r,525.x264_r,531.deepsjeng_r=peak: feedback = 0 507.cactuBSSN_r,508.namd_r,526.blender_r,548.exchange2_r,554.roms_r=peak: basepeak = yes # 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 13.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 = Supermicro tester = Supermicro test_sponsor = Supermicro license_num = 001176 prepared_by = Supermicro #--------- EDIT system availability dates ------------------------------------- intrate,intspeed,fprate,fpspeed: # Important: keep this line # Example # Brief info about field hw_avail = Aug-2024 sw_avail = Jul-2023 #--------- EDIT system information -------------------------------------------- intrate,intspeed,fprate,fpspeed: # Important: keep this line # Example # Brief info about field hw_cpu_name = AmpereOne A192-32X # chip name hw_cpu_nominal_mhz = 3200 # Nominal chip frequency, in MHz hw_cpu_max_mhz = 3200 # Max chip frequency, in MHz # hw_disk = # 9 x 9 TB SATA III 9999 RPM # Size, type, other perf-relevant info hw_model000 = MegaDC ARS-211M-NR hw_model001 = (R13SPD , Ampere AmpereOne A192-32X) hw_nchips = 1 # number chips enabled hw_ncores = 192 # number cores enabled hw_ncpuorder = 1 chip # Ordering options hw_nthreadspercore = 1 # number threads enabled per core hw_other = CPU Cooling: Air # Other perf-relevant hw, or "None" hw_memory000 = 512 GB (8 x 64 GB 2Rx4 PC5-5600B-R, hw_pcache = 16 KB I + 64 KB D on chip per core hw_scache = 2 MB I+D on chip per core hw_tcache = 64 MB I+D on chip per chip hw_ocache = None fw_bios = Version 1.0 released Jul-2024 power_management000= BIOS and OS set to prefer performance power_management001= at the cost of additional power usage. sw_other = Jemalloc memory allocator library v5.3.0 sw_state = Run level 3 (multi-user) # Software state. #--------- EDIT notes sections -------------------------------------------- default: notes_comp_000 = Binaries were compiled on a system with 1x AmpereOne CPU notes_comp_005 = chip + 512 GB Memory using Fedora Linux 37 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 Fedora Linux 37 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 notes_submit_000 = The config file option 'submit' was used. notes_submit_005 = 'numactl' was used to bind copies to the cores. notes_os_000 = 'ulimit -s unlimited' was used to set environment stack size notes_os_005 = Set dirty_ratio=8 to limit dirty cache to 8% of memory notes_os_010 = echo 8 | sudo tee /proc/sys/vm/dirty_ratio notes_os_015 = Set swappiness=1 to swap only if necessary notes_os_020 = echo 1 | sudo tee /proc/sys/vm/swappiness notes_os_025 = Set zone_reclaim_mode=1 to free local node memory and avoid remote memory notes_os_030 = echo 1 | sudo tee /proc/sys/vm/zone_reclaim_mode notes_os_035 = Set drop_caches=3 to reset caches before invoking runcpu notes_os_040 = echo 3 | sudo tee /proc/sys/vm/drop_caches notes_os_045 = Set numa_balancing=0 to disable automatic numa balancing notes_os_050 = echo 0 | sudo tee /proc/sys/kernel/numa_balancing notes_os_055 = Switch off all ktune and tuned settings notes_os_060 = sudo tuned-adm off notes_os_065 = Transparent huge pages set to 'never' notes_os_070 = sudo bash -c "echo never > /sys/kernel/mm/transparent_hugepage/enabled" notes_os_075 = notes_os_080 = runcpu command invoked through numactl i.e. notes_os_085 = 1P: numactl --interleave=0-3 runcpu notes_os_090 = 2P: numactl --interleave=all runcpu notes_plat_000 = Note: lscpu is not able to detect the SLC. notes_plat_005 = SLC is defined at https://developer.arm.com/documentation/100180/0103/bry1436285730281 notes_plat_010 = BIOS Settings: notes_plat_015 = Sub-NUMA Mode = Quadrant # 'mitig' does not reference a pre-defined section, so these will be printed in the general notes section; # start with white space notes_mitig_000 = notes_mitig_005 = NA: The test sponsor attests, as of date of publication, that CVE-2017-5754 (Meltdown) notes_mitig_010 = is mitigated in the system as tested and documented. notes_mitig_015 = Yes: The test sponsor attests, as of date of publication, that CVE-2017-5753 (Spectre variant 1) notes_mitig_020 = is mitigated in the system as tested and documented. notes_mitig_025 = Yes: The test sponsor attests, as of date of publication, that CVE-2017-5715 (Spectre variant 2) notes_mitig_030 = is mitigated in the system as tested and documented. # 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 /root/cpu2017/ampere_spec2017/spec2017/bin/sysinfo notes_plat_sysinfo_010 = Rev: r6732 of 2022-11-07 fe91c89b7ed5c36ae2c92cc097bec197 notes_plat_sysinfo_015 = running on localhost.localdomain Mon Jul 29 14:56:12 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 251 (251.19-1.fc37) 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. sysctl notes_plat_sysinfo_125 = 16. /sys/kernel/mm/transparent_hugepage notes_plat_sysinfo_130 = 17. /sys/kernel/mm/transparent_hugepage/khugepaged notes_plat_sysinfo_135 = 18. OS release notes_plat_sysinfo_140 = 19. Disk information notes_plat_sysinfo_145 = 20. /sys/devices/virtual/dmi/id notes_plat_sysinfo_150 = 21. dmidecode notes_plat_sysinfo_155 = 22. BIOS notes_plat_sysinfo_160 = ------------------------------------------------------------ notes_plat_sysinfo_165 = notes_plat_sysinfo_170 = ------------------------------------------------------------ notes_plat_sysinfo_175 = 1. uname -a notes_plat_sysinfo_180 = Linux localhost.localdomain 6.1.14-200.fc37.aarch64 #1 SMP PREEMPT_DYNAMIC Sun Feb 26 00:22:40 UTC 2023 notes_plat_sysinfo_185 = aarch64 aarch64 aarch64 GNU/Linux notes_plat_sysinfo_190 = notes_plat_sysinfo_195 = ------------------------------------------------------------ notes_plat_sysinfo_200 = 2. w notes_plat_sysinfo_205 = 14:56:12 up 1 min, 2 users, load average: 2.07, 1.22, 0.47 notes_plat_sysinfo_210 = USER TTY LOGIN@ IDLE JCPU PCPU WHAT notes_plat_sysinfo_215 = root ttyAMA0 14:55 1:14 0.02s 0.02s -bash notes_plat_sysinfo_220 = root pts/0 14:55 35.00s 1.28s 0.00s /bin/bash ./run_spec2017.sh --iterations 3 --copies 192 notes_plat_sysinfo_225 = --nobuild --action run --reportable --tune base:peak intrate notes_plat_sysinfo_230 = notes_plat_sysinfo_235 = ------------------------------------------------------------ notes_plat_sysinfo_240 = 3. Username notes_plat_sysinfo_245 = From environment variable $USER: root notes_plat_sysinfo_250 = notes_plat_sysinfo_255 = ------------------------------------------------------------ notes_plat_sysinfo_260 = 4. ulimit -a notes_plat_sysinfo_265 = real-time non-blocking time (microseconds, -R) unlimited notes_plat_sysinfo_270 = core file size (blocks, -c) unlimited notes_plat_sysinfo_275 = data seg size (kbytes, -d) unlimited notes_plat_sysinfo_280 = scheduling priority (-e) 0 notes_plat_sysinfo_285 = file size (blocks, -f) unlimited notes_plat_sysinfo_290 = pending signals (-i) 2057751 notes_plat_sysinfo_295 = max locked memory (kbytes, -l) 8192 notes_plat_sysinfo_300 = max memory size (kbytes, -m) unlimited notes_plat_sysinfo_305 = open files (-n) 1024 notes_plat_sysinfo_310 = pipe size (512 bytes, -p) 8 notes_plat_sysinfo_315 = POSIX message queues (bytes, -q) 819200 notes_plat_sysinfo_320 = real-time priority (-r) 0 notes_plat_sysinfo_325 = stack size (kbytes, -s) 8192 notes_plat_sysinfo_330 = cpu time (seconds, -t) unlimited notes_plat_sysinfo_335 = max user processes (-u) 2057751 notes_plat_sysinfo_340 = virtual memory (kbytes, -v) unlimited notes_plat_sysinfo_345 = file locks (-x) unlimited notes_plat_sysinfo_350 = notes_plat_sysinfo_355 = ------------------------------------------------------------ notes_plat_sysinfo_360 = 5. sysinfo process ancestry notes_plat_sysinfo_365 = /usr/lib/systemd/systemd --switched-root --system --deserialize=31 notes_plat_sysinfo_370 = sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups notes_plat_sysinfo_375 = sshd: root [priv] notes_plat_sysinfo_380 = sshd: root@pts/0 notes_plat_sysinfo_385 = -bash notes_plat_sysinfo_390 = /bin/bash ./test4k.sh notes_plat_sysinfo_395 = /bin/bash ./run_spec2017.sh --iterations 3 --copies 192 --nobuild --action run --reportable --tune base:peak notes_plat_sysinfo_400 = intrate notes_plat_sysinfo_405 = runcpu --config=ampere_aarch64 --define numasize=48 --define notes_plat_sysinfo_410 = gcc_dir=/home/amptest/ampere_spec2017/spec2017/gcc/install --define notes_plat_sysinfo_415 = llvm_dir=/home/amptest/ampere_spec2017/spec2017/llvm/install --define notes_plat_sysinfo_420 = jemalloc_dir=/home/amptest/ampere_spec2017/spec2017/jemalloc/install --define glibc_dir=/ --iterations 3 notes_plat_sysinfo_425 = --copies 192 --nobuild --action run --reportable --tune base:peak intrate notes_plat_sysinfo_430 = runcpu --configfile ampere_aarch64 --define numasize=48 --define notes_plat_sysinfo_435 = gcc_dir=/home/amptest/ampere_spec2017/spec2017/gcc/install --define notes_plat_sysinfo_440 = llvm_dir=/home/amptest/ampere_spec2017/spec2017/llvm/install --define notes_plat_sysinfo_445 = jemalloc_dir=/home/amptest/ampere_spec2017/spec2017/jemalloc/install --define glibc_dir=/ --iterations 3 notes_plat_sysinfo_450 = --copies 192 --nobuild --action run --reportable --tune base:peak --nopower --runmode rate --tune notes_plat_sysinfo_455 = base:peak --size refrate intrate --nopreenv --note-preenv --logfile notes_plat_sysinfo_460 = $SPEC/tmp/CPU2017.004/templogs/preenv.intrate.004.0.log --lognum 004.0 --from_runcpu 2 notes_plat_sysinfo_465 = specperl $SPEC/bin/sysinfo notes_plat_sysinfo_470 = $SPEC = /root/cpu2017/ampere_spec2017/spec2017 notes_plat_sysinfo_475 = notes_plat_sysinfo_480 = ------------------------------------------------------------ notes_plat_sysinfo_485 = 6. /proc/cpuinfo notes_plat_sysinfo_490 = CPU implementer : 0xc0 notes_plat_sysinfo_495 = CPU architecture: 8 notes_plat_sysinfo_500 = CPU variant : 0x0 notes_plat_sysinfo_505 = CPU part : 0xac4 notes_plat_sysinfo_510 = CPU revision : 0 notes_plat_sysinfo_515 = Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt notes_plat_sysinfo_520 = fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 asimdfhm dit uscat ilrcpc flagm ssbs sb notes_plat_sysinfo_525 = paca pacg dcpodp flagm2 frint i8mm bf16 rng bti ecv notes_plat_sysinfo_530 = notes_plat_sysinfo_535 = ------------------------------------------------------------ notes_plat_sysinfo_540 = 7. lscpu notes_plat_sysinfo_545 = notes_plat_sysinfo_550 = From lscpu from util-linux 2.38.1: notes_plat_sysinfo_555 = Architecture: aarch64 notes_plat_sysinfo_560 = CPU op-mode(s): 64-bit notes_plat_sysinfo_565 = Byte Order: Little Endian notes_plat_sysinfo_570 = CPU(s): 192 notes_plat_sysinfo_575 = On-line CPU(s) list: 0-191 notes_plat_sysinfo_580 = Vendor ID: Ampere notes_plat_sysinfo_585 = BIOS Vendor ID: Ampere(R) notes_plat_sysinfo_590 = Model name: - notes_plat_sysinfo_595 = BIOS Model name: AmpereOne(R) A192-32X CPU @ 3.2GHz notes_plat_sysinfo_600 = BIOS CPU family: 257 notes_plat_sysinfo_605 = Model: 0 notes_plat_sysinfo_610 = Thread(s) per core: 1 notes_plat_sysinfo_615 = Core(s) per socket: 192 notes_plat_sysinfo_620 = Socket(s): 1 notes_plat_sysinfo_625 = Stepping: 0x0 notes_plat_sysinfo_630 = Frequency boost: disabled notes_plat_sysinfo_635 = CPU(s) scaling MHz: 100% notes_plat_sysinfo_640 = CPU max MHz: 3200.0000 notes_plat_sysinfo_645 = CPU min MHz: 1000.0000 notes_plat_sysinfo_650 = BogoMIPS: 2000.00 notes_plat_sysinfo_655 = Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid notes_plat_sysinfo_660 = asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 asimdfhm dit notes_plat_sysinfo_665 = uscat ilrcpc flagm ssbs sb paca pacg dcpodp flagm2 frint i8mm bf16 rng bti notes_plat_sysinfo_670 = ecv notes_plat_sysinfo_675 = L1d cache: 12 MiB (192 instances) notes_plat_sysinfo_680 = L1i cache: 3 MiB (192 instances) notes_plat_sysinfo_685 = L2 cache: 384 MiB (192 instances) notes_plat_sysinfo_690 = NUMA node(s): 4 notes_plat_sysinfo_695 = NUMA node0 CPU(s): 0-47 notes_plat_sysinfo_700 = NUMA node1 CPU(s): 48-95 notes_plat_sysinfo_705 = NUMA node2 CPU(s): 96-143 notes_plat_sysinfo_710 = NUMA node3 CPU(s): 144-191 notes_plat_sysinfo_715 = Vulnerability Itlb multihit: Not affected notes_plat_sysinfo_720 = Vulnerability L1tf: Not affected notes_plat_sysinfo_725 = Vulnerability Mds: Not affected notes_plat_sysinfo_730 = Vulnerability Meltdown: Not affected notes_plat_sysinfo_735 = Vulnerability Mmio stale data: Not affected notes_plat_sysinfo_740 = Vulnerability Retbleed: Not affected notes_plat_sysinfo_745 = Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl notes_plat_sysinfo_750 = Vulnerability Spectre v1: Mitigation; __user pointer sanitization notes_plat_sysinfo_755 = Vulnerability Spectre v2: Not affected notes_plat_sysinfo_760 = Vulnerability Srbds: Not affected notes_plat_sysinfo_765 = Vulnerability Tsx async abort: Not affected notes_plat_sysinfo_770 = notes_plat_sysinfo_775 = From lscpu --cache: notes_plat_sysinfo_780 = NAME ONE-SIZE ALL-SIZE WAYS TYPE LEVEL SETS PHY-LINE COHERENCY-SIZE notes_plat_sysinfo_785 = L1d 64K 12M 4 Data 1 256 64 notes_plat_sysinfo_790 = L1i 16K 3M 4 Instruction 1 64 64 notes_plat_sysinfo_795 = L2 2M 384M 8 Unified 2 4096 64 notes_plat_sysinfo_800 = notes_plat_sysinfo_805 = ------------------------------------------------------------ notes_plat_sysinfo_810 = 8. numactl --hardware notes_plat_sysinfo_815 = NOTE: a numactl 'node' might or might not correspond to a physical chip. notes_plat_sysinfo_820 = available: 4 nodes (0-3) notes_plat_sysinfo_825 = node 0 cpus: 0-47 notes_plat_sysinfo_830 = node 0 size: 128565 MB notes_plat_sysinfo_835 = node 0 free: 127995 MB notes_plat_sysinfo_840 = node 1 cpus: 48-95 notes_plat_sysinfo_845 = node 1 size: 128972 MB notes_plat_sysinfo_850 = node 1 free: 127023 MB notes_plat_sysinfo_855 = node 2 cpus: 96-143 notes_plat_sysinfo_860 = node 2 size: 129018 MB notes_plat_sysinfo_865 = node 2 free: 128514 MB notes_plat_sysinfo_870 = node 3 cpus: 144-191 notes_plat_sysinfo_875 = node 3 size: 127985 MB notes_plat_sysinfo_880 = node 3 free: 127540 MB notes_plat_sysinfo_885 = node distances: notes_plat_sysinfo_890 = node 0 1 2 3 notes_plat_sysinfo_895 = 0: 10 11 11 12 notes_plat_sysinfo_900 = 1: 11 10 12 11 notes_plat_sysinfo_905 = 2: 11 12 10 11 notes_plat_sysinfo_910 = 3: 12 11 11 10 notes_plat_sysinfo_915 = notes_plat_sysinfo_920 = ------------------------------------------------------------ notes_plat_sysinfo_925 = 9. /proc/meminfo notes_plat_sysinfo_930 = MemTotal: 526890088 kB notes_plat_sysinfo_935 = notes_plat_sysinfo_940 = ------------------------------------------------------------ notes_plat_sysinfo_945 = 10. who -r notes_plat_sysinfo_950 = run-level 3 Jul 29 14:54 notes_plat_sysinfo_955 = notes_plat_sysinfo_960 = ------------------------------------------------------------ notes_plat_sysinfo_965 = 11. Systemd service manager version: systemd 251 (251.19-1.fc37) notes_plat_sysinfo_970 = Default Target Status notes_plat_sysinfo_975 = multi-user running notes_plat_sysinfo_980 = notes_plat_sysinfo_985 = ------------------------------------------------------------ notes_plat_sysinfo_990 = 12. Services, from systemctl list-unit-files notes_plat_sysinfo_995 = STATE UNIT FILES notes_plat_sysinfo_1000= enabled ModemManager NetworkManager NetworkManager-dispatcher NetworkManager-wait-online notes_plat_sysinfo_1005= abrt-journal-core abrt-oops abrt-vmcore abrt-xorg abrtd atd auditd avahi-daemon bluetooth notes_plat_sysinfo_1010= chronyd crond dbus-broker getty@ irqbalance iscsi iscsi-onboot lm_sensors lvm2-monitor notes_plat_sysinfo_1015= lxdm mdmonitor multipathd ostree-remount qemu-guest-agent rpmdb-migrate rpmdb-rebuild notes_plat_sysinfo_1020= rsyslog rtkit-daemon selinux-autorelabel-mark smartd sshd sssd systemd-boot-update notes_plat_sysinfo_1025= systemd-network-generator systemd-oomd systemd-resolved udisks2 upower vgauthd vmtoolsd notes_plat_sysinfo_1030= enabled-runtime systemd-remount-fs notes_plat_sysinfo_1035= disabled abrt-pstoreoops arp-ethers autofs blk-availability canberra-system-bootup notes_plat_sysinfo_1040= canberra-system-shutdown canberra-system-shutdown-reboot certmonger chrony-wait notes_plat_sysinfo_1045= console-getty cpupower cups cups-browsed dbus-daemon debug-shell dmraid-activation notes_plat_sysinfo_1050= dnf-system-upgrade dnsmasq fancontrol firewalld fsidd gssproxy initial-setup notes_plat_sysinfo_1055= initial-setup-reconfiguration iscsid iscsiuio kadmin kdump kprop krb5kdc notes_plat_sysinfo_1060= low-memory-monitor man-db-restart-cache-update ndctl-monitor netavark-dhcp-proxy notes_plat_sysinfo_1065= nfs-blkmap nfs-server nftables nis-domainname nmb oddjobd openhpid podman notes_plat_sysinfo_1070= podman-auto-update podman-clean-transient podman-kube@ podman-restart psacct rpcbind samba notes_plat_sysinfo_1075= selinux-check-proper-disable smb sshd-keygen@ systemd-boot-check-no-failures systemd-homed notes_plat_sysinfo_1080= systemd-homed-activate systemd-pstore systemd-sysext systemd-time-wait-sync notes_plat_sysinfo_1085= systemd-timesyncd winbind wpa_supplicant notes_plat_sysinfo_1090= indirect pcscd serial-getty@ spice-vdagentd sssd-autofs sssd-kcm sssd-nss sssd-pac sssd-pam notes_plat_sysinfo_1095= sssd-ssh sssd-sudo systemd-sysupdate systemd-sysupdate-reboot systemd-userdbd notes_plat_sysinfo_1100= notes_plat_sysinfo_1105= ------------------------------------------------------------ notes_plat_sysinfo_1110= 13. Linux kernel boot-time arguments, from /proc/cmdline notes_plat_sysinfo_1115= BOOT_IMAGE=(hd0,gpt2)/vmlinuz-6.1.14-200.fc37.aarch64 notes_plat_sysinfo_1120= root=UUID=a54ebc41-1111-4472-a096-715a07a6762d notes_plat_sysinfo_1125= ro notes_plat_sysinfo_1130= notes_plat_sysinfo_1135= ------------------------------------------------------------ notes_plat_sysinfo_1140= 14. cpupower frequency-info notes_plat_sysinfo_1145= analyzing CPU 154: notes_plat_sysinfo_1150= current policy: frequency should be within 1000 MHz and 3.20 GHz. notes_plat_sysinfo_1155= The governor "performance" may decide which speed to use notes_plat_sysinfo_1160= within this range. notes_plat_sysinfo_1165= notes_plat_sysinfo_1170= ------------------------------------------------------------ notes_plat_sysinfo_1175= 15. sysctl notes_plat_sysinfo_1180= kernel.numa_balancing 0 notes_plat_sysinfo_1185= kernel.randomize_va_space 2 notes_plat_sysinfo_1190= vm.compaction_proactiveness 20 notes_plat_sysinfo_1195= vm.dirty_background_bytes 0 notes_plat_sysinfo_1200= vm.dirty_background_ratio 10 notes_plat_sysinfo_1205= vm.dirty_bytes 0 notes_plat_sysinfo_1210= vm.dirty_expire_centisecs 3000 notes_plat_sysinfo_1215= vm.dirty_ratio 8 notes_plat_sysinfo_1220= vm.dirty_writeback_centisecs 500 notes_plat_sysinfo_1225= vm.dirtytime_expire_seconds 43200 notes_plat_sysinfo_1230= vm.extfrag_threshold 500 notes_plat_sysinfo_1235= vm.min_unmapped_ratio 1 notes_plat_sysinfo_1240= vm.nr_hugepages 0 notes_plat_sysinfo_1245= vm.nr_hugepages_mempolicy 0 notes_plat_sysinfo_1250= vm.nr_overcommit_hugepages 0 notes_plat_sysinfo_1255= vm.swappiness 1 notes_plat_sysinfo_1260= vm.watermark_boost_factor 15000 notes_plat_sysinfo_1265= vm.watermark_scale_factor 10 notes_plat_sysinfo_1270= vm.zone_reclaim_mode 1 notes_plat_sysinfo_1275= notes_plat_sysinfo_1280= ------------------------------------------------------------ notes_plat_sysinfo_1285= 16. /sys/kernel/mm/transparent_hugepage notes_plat_sysinfo_1290= defrag always defer defer+madvise [madvise] never notes_plat_sysinfo_1295= enabled [always] madvise never notes_plat_sysinfo_1300= hpage_pmd_size 2097152 notes_plat_sysinfo_1305= shmem_enabled always within_size advise [never] deny force notes_plat_sysinfo_1310= notes_plat_sysinfo_1315= ------------------------------------------------------------ notes_plat_sysinfo_1320= 17. /sys/kernel/mm/transparent_hugepage/khugepaged notes_plat_sysinfo_1325= alloc_sleep_millisecs 60000 notes_plat_sysinfo_1330= defrag 1 notes_plat_sysinfo_1335= max_ptes_none 511 notes_plat_sysinfo_1340= max_ptes_shared 256 notes_plat_sysinfo_1345= max_ptes_swap 64 notes_plat_sysinfo_1350= pages_to_scan 4096 notes_plat_sysinfo_1355= scan_sleep_millisecs 10000 notes_plat_sysinfo_1360= notes_plat_sysinfo_1365= ------------------------------------------------------------ notes_plat_sysinfo_1370= 18. OS release notes_plat_sysinfo_1375= From /etc/*-release /etc/*-version notes_plat_sysinfo_1380= os-release Fedora Linux 37 (Server Edition) notes_plat_sysinfo_1385= fedora-release Fedora release 37 (Thirty Seven) notes_plat_sysinfo_1390= redhat-release Fedora release 37 (Thirty Seven) notes_plat_sysinfo_1395= system-release Fedora release 37 (Thirty Seven) notes_plat_sysinfo_1400= notes_plat_sysinfo_1405= ------------------------------------------------------------ notes_plat_sysinfo_1410= 19. Disk information notes_plat_sysinfo_1415= SPEC is set to: /root/cpu2017/ampere_spec2017/spec2017 notes_plat_sysinfo_1420= Filesystem Type Size Used Avail Use% Mounted on notes_plat_sysinfo_1425= /dev/nvme0n1p3 xfs 893G 105G 788G 12% / notes_plat_sysinfo_1430= notes_plat_sysinfo_1435= ------------------------------------------------------------ notes_plat_sysinfo_1440= 20. /sys/devices/virtual/dmi/id notes_plat_sysinfo_1445= Vendor: Supermicro notes_plat_sysinfo_1450= Product: Super Server notes_plat_sysinfo_1455= Product Family: Family notes_plat_sysinfo_1460= Serial: 0123456789 notes_plat_sysinfo_1465= notes_plat_sysinfo_1470= ------------------------------------------------------------ notes_plat_sysinfo_1475= 21. dmidecode notes_plat_sysinfo_1480= Additional information from dmidecode 3.4 follows. WARNING: Use caution when you interpret this section. notes_plat_sysinfo_1485= The 'dmidecode' program reads system data which is "intended to allow hardware to be accurately notes_plat_sysinfo_1490= determined", but the intent may not be met, as there are frequent changes to hardware, firmware, and the notes_plat_sysinfo_1495= "DMTF SMBIOS" standard. notes_plat_sysinfo_1500= Memory: notes_plat_sysinfo_1505= 8x SK Hynix HMCG94AGBRA181N 64 GB 2 rank 5600, configured at 5200 notes_plat_sysinfo_1510= notes_plat_sysinfo_1515= notes_plat_sysinfo_1520= ------------------------------------------------------------ notes_plat_sysinfo_1525= 22. BIOS notes_plat_sysinfo_1530= (This section combines info from /sys/devices and dmidecode.) notes_plat_sysinfo_1535= BIOS Vendor: American Megatrends International, LLC. notes_plat_sysinfo_1540= BIOS Version: 1.0 notes_plat_sysinfo_1545= BIOS Date: 07/26/2024 notes_plat_sysinfo_1550= BIOS Revision: 5.34 hw_cpu_name = - hw_disk = 1 x 900 GB NVMe SSD hw_memory001 = 502.482 GB fixme: If using DDR4, the format is: hw_memory001 = running at 5200) hw_nchips = 1 hw_ncores = 192 hw_nthreadspercore = 1 prepared_by = root (is never output, only tags rawfile) sw_file = xfs sw_os000 = Fedora Linux 37 (Server Edition) sw_os001 = Kernel 6.1.14-200.fc37.aarch64 sw_state = Run level 3 (add definition here) # End of settings added by sysinfo_program