# Invocation command line: # /home/speccpu2017/bin/harness/runcpu --configfile test_062601_fp.cfg --tune base --iterations 3 --reportable --copies 128 --output_format all --nopower --runmode rate --tune base --size refrate fprate # output_root was not used for this run ############################################################################ #------------------------------------------------------------------------------ # SPEC CPU 2017 Config: Intel Xeon Gold 6459C (Emerald Rapids) # Modeled after ASUS ESC4000-E11 / Xeon Gold 6458Q official SPEC submission # Adapted for Intel oneAPI 2026.0 (icx/icpx/ifx) # # Hardware: 2P / 32C per socket / 64C total / 128 HW threads (SMT on) # NUMA: SNC2 -> 4 NUMA nodes (16C+16HT per node) # Compiler: Intel oneAPI 2026.0 (icx / icpx / ifx) # Malloc: jemalloc 5.3.0 # # Supports: intrate, fprate, intspeed, fpspeed (base only) # # Rate usage: # runcpu -c intel_emr_6459C -T base --noreportable --copies=128 -n 1 -o all intrate # runcpu -c intel_emr_6459C -T base --noreportable --copies=128 -n 1 -o all fprate # Speed usage: # runcpu -c intel_emr_6459C -T base --noreportable --threads=128 -n 1 -o all intspeed # runcpu -c intel_emr_6459C -T base --noreportable --threads=128 -n 1 -o all fpspeed #------------------------------------------------------------------------------ #--------- Global Settings ---------------------------------------------------- tune = base label = icx2026-emr output_format = all reportable = 1 iterations = 1 size = ref teeout = yes mean_anyway = 1 makeflags = -j128 strict_rundir_verify = 1 basepeak = 1 preenv = 1 parallel_test = 64 delay = 10 bench_post_setup = sync flagsurl000 = http://www.spec.org/cpu2017/flags/Intel-ic2026-official-linux64.xml flagsurl001 = http://www.spec.org/cpu2017/flags/HuaKun-Platform-Settings-ICX-V1.2.xml #--------- How Many CPUs? ----------------------------------------------------- intrate,fprate: copies = 128 intspeed,fpspeed: threads = 128 #--------- Compilers ----------------------------------------------------------- default: CC = icx -w -m64 -std=c11 CXX = icpx -w -m64 -std=c++14 FC = ifx -w -m64 CC_VERSION_OPTION = --version CXX_VERSION_OPTION = --version FC_VERSION_OPTION = --version #--------- Directories --------------------------------------------------------- default: JEMALLOC64_DIR = /usr/local/jemalloc-5.3.0/lib INTEL64_DIR = /opt/intel/oneapi/compiler/2026.0/lib/ %if !defined(%{static}) JEMALLOC32 = jemalloc JEMALLOC64 = jemalloc QKMALLOC = qkmalloc %else JEMALLOC32 = libjemalloc.a JEMALLOC64 = libjemalloc.a %endif #--------- Portability --------------------------------------------------------- intrate,fprate: PORTABILITY= -DSPEC_LP64 500.perlbench_r: CPORTABILITY = -DSPEC_LINUX_X64 521.wrf_r: CPORTABILITY = -DSPEC_CASE_FLAG FPORTABILITY= -convert big_endian 523.xalancbmk_r: CXXPORTABILITY=-DSPEC_LINUX 526.blender_r: CPORTABILITY= -DSPEC_LINUX -funsigned-char 527.cam4_r: CPORTABILITY= -DSPEC_CASE_FLAG #--------- Environment --------------------------------------------------------- default: preENV_MALLOC_CONF = retain:true intrate: preENV_LD_LIBRARY_PATH = $[top]/lib/intel64 fprate: preENV_LD_LIBRARY_PATH = $[top]/lib/intel64 #--------- Affinitization (NUMA binding, same as ASUS reference) --------------- default: submit = numactl --localalloc --physcpubind=$SPECCOPYNUM -- $command %ifdef %{no-numa} submit = taskset -c $SPECCOPYNUM $command %endif #--------- Speed: OpenMP ------------------------------------------------------- intspeed,fpspeed: EXTRA_OPTIMIZE = -qopenmp -DSPEC_OPENMP #--------- Fortran defaults ---------------------------------------------------- #--------- Tuning Flags -------------------------------------------------------- # SSE target: -xCORE-AVX512 matches the reference submission # Note: oneAPI 2026.0 removed -no-prec-div (absorbed into -fp-model fast) # -qopt-mem-layout-trans=4 still supported # -ansi-alias replaced by -fstrict-aliasing in ICX LLVM driver #---- intrate base ------------------------------------------------------------- default: SSE = -xCORE-AVX2 EXTRA_FOPTIMIZE = -nostandard-realloc-lhs -align array32byte -auto intrate=default: EXTRA_LIBS = -L$(INTEL64_DIR) -l$(QKMALLOC) EXTRA_LDFLAGS = -Wl,-z,muldefs intrate=base: %if defined(%{noopt}) OPT_ROOT = -O0 %elif defined(%{medopt}) OPT_ROOT = -O2 %else OPT_ROOT = -O3 -ffast-math -flto -mfpmath=sse -funroll-loops OPT_ROOT_F = -O3 -ffast-math -flto -mfpmath=sse -funroll-loops %endif FAST_NO_STATIC = $(SSE) $(OPT_ROOT) FORT_FAST_NO_STATIC = $(SSE) $(OPT_ROOT_F) FAST = $(SSE) $(OPT_ROOT) -static FORT_FAST = $(SSEF) $(OPT_ROOT_F) -static %if !defined(%{static}) COPTIMIZE = $(FAST_NO_STATIC) -qopt-mem-layout-trans=4 CXXOPTIMIZE = $(FAST_NO_STATIC) -qopt-mem-layout-trans=4 FOPTIMIZE = $(FORT_FAST_NO_STATIC) -qopt-mem-layout-trans=4 %if defined(%{noopt}) COPTIMIZE = $(OPT_ROOT) CXXOPTIMIZE = $(OPT_ROOT) FOPTIMIZE = $(OPT_ROOT_F) %endif %else COPTIMIZE = $(FAST) -qopt-mem-layout-trans=4 CXXOPTIMIZE = $(FAST) -qopt-mem-layout-trans=4 FOPTIMIZE = $(FORT_FAST) -qopt-mem-layout-trans=4 %if defined(%{noopt}) COPTIMIZE = $(OPT_ROOT) -static CXXOPTIMIZE = $(OPT_ROOT) -static FOPTIMIZE = $(OPT_ROOT_F) -static %endif %endif fprate=default: EXTRA_LIBS = -l$(JEMALLOC64) -L$(JEMALLOC64_DIR) EXTRA_LDFLAGS = -Wl,-z,muldefs EXTRA_CFLAGS = -Wno-implicit-int fprate=base: %if defined(%{noopt}) OPT_ROOT = -O0 %elif defined(%{medopt}) OPT_ROOT = -O2 %else OPT_ROOT = -Ofast -ffast-math -flto -mfpmath=sse -funroll-loops OPT_ROOT_NOIPO = -Ofast -ffast-math -mfpmath=sse -funroll-loops OPT_ROOT_F = -Ofast -ffast-math -flto -mfpmath=sse -funroll-loops OPT_ROOT_F_NOIPO = -Ofast -ffast-math -mfpmath=sse -funroll-loops %endif FAST_NO_STATIC = $(SSE) $(OPT_ROOT) FORT_FAST_NO_STATIC = $(SSE) $(OPT_ROOT_F) FORT_FAST_NO_STATIC_NOIPO = $(SSE) $(OPT_ROOT_F_NOIPO) FAST = $(SSE) $(OPT_ROOT) -static FORT_FAST = $(SSE) $(OPT_ROOT) -static %if !defined(%{static}) COPTIMIZE = $(FAST_NO_STATIC) -qopt-mem-layout-trans=4 CXXOPTIMIZE = $(FAST_NO_STATIC) -qopt-mem-layout-trans=4 FOPTIMIZE = $(FORT_FAST_NO_STATIC) -qopt-mem-layout-trans=4 %if defined(%{noopt}) COPTIMIZE = $(OPT_ROOT) CXXOPTIMIZE = $(OPT_ROOT) FOPTIMIZE = $(OPT_ROOT_F) %endif %else COPTIMIZE = $(FAST) -qopt-mem-layout-trans=4 CXXOPTIMIZE = $(FAST) -qopt-mem-layout-trans=4 FOPTIMIZE = $(FORT_FAST) -qopt-mem-layout-trans=4 %if defined(%{noopt}) COPTIMIZE = $(OPT_ROOT) -static CXXOPTIMIZE = $(OPT_ROOT) -static FOPTIMIZE = $(OPT_ROOT_F) -static %endif %endif #---- intspeed base ------------------------------------------------------------ intspeed=base: SSE = -xCORE-AVX512 OPT_ROOT = -O3 -ffast-math -flto -mfpmath=sse -funroll-loops COPTIMIZE = $(SSE) $(OPT_ROOT) -qopt-mem-layout-trans=4 CXXOPTIMIZE = $(SSE) $(OPT_ROOT) -qopt-mem-layout-trans=4 FOPTIMIZE = $(SSE) $(OPT_ROOT) -qopt-mem-layout-trans=4 657.xz_s=base: COPTIMIZE = -xCORE-AVX512 -O2 EXTRA_LIBS = preENV_OMP_STACKSIZE = 16M preENV_MALLOC_CONF = intspeed=default: EXTRA_CXXFLAGS = -fdelayed-template-parsing EXTRA_LIBS = -L$(ONEAPI_LIB) -lqkmalloc EXTRA_LDFLAGS = -Wl,-z,muldefs #---- fpspeed base ------------------------------------------------------------- fpspeed=base: SSE = -xCORE-AVX512 OPT_ROOT = -Ofast -ffast-math -flto -mfpmath=sse -funroll-loops COPTIMIZE = $(SSE) $(OPT_ROOT) -qopt-mem-layout-trans=4 -mprefer-vector-width=512 CXXOPTIMIZE = $(SSE) $(OPT_ROOT) -qopt-mem-layout-trans=4 -mprefer-vector-width=512 FOPTIMIZE = $(SSE) $(OPT_ROOT) -qopt-mem-layout-trans=4 fpspeed=default: EXTRA_CFLAGS = -Wno-implicit-int EXTRA_LIBS = -L$(JEMALLOC_DIR) -ljemalloc EXTRA_LDFLAGS = -Wl,-z,muldefs #--------- Software Description ------------------------------------------------ intrate,intspeed,fprate,fpspeed: sw_compiler000 = C/C++: Version 2026.0 of Intel oneAPI DPC++/C++ sw_compiler001 = Compiler for Linux; sw_compiler002 = Fortran: Version 2026.0 of Intel Fortran Compiler sw_compiler003 = for Linux; sw_base_ptrsize = 64-bit #--------- 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_vendor000 = Sichuan Huakun Zhenyu Intelligent Technology Co., hw_vendor001 = Ltd. tester000 = Sichuan Huakun Zhenyu Intelligent Technology Co., tester001 = Ltd. test_sponsor000 = Sichuan Huakun Zhenyu Intelligent Technology Co., test_sponsor001 = Ltd. license_num = 6271 # prepared_by = # Ima Pseudonym # Whatever you like: is never output #--------- EDIT system availability dates ------------------------------------- intrate,intspeed,fprate,fpspeed: # Important: keep this line # Example # Brief info about field hw_avail = Mar-2026 # Nov-2099 # Date of LAST hardware component to ship sw_avail = May-2026 # Nov-2099 # Date of LAST software component to ship fw_bios = BIOS Version 00.04.06 released Mar-2026 # Version Mumble released May-2099 # Firmware information #--------- EDIT system information -------------------------------------------- intrate,intspeed,fprate,fpspeed: # Important: keep this line # Example # Brief info about field hw_cpu_name = Intel Xeon Gold 6459C # Intel Xeon E9-9999 v9 # chip name hw_cpu_nominal_mhz = 3000 # 9999 # Nominal chip frequency, in MHz hw_cpu_max_mhz = 3900 # 9999 # Max chip frequency, in MHz hw_disk = 1 x 480 GB SATA SSD # 9 x 9 TB SATA III 9999 RPM # Size, type, other perf-relevant info hw_model000 = Huakun TG225 X5 hw_model001 = (3.00GHz, Intel Xeon Gold 6459C) hw_nchips = 2 # 99 # number chips enabled hw_ncores = 64 # 9999 # number cores enabled hw_ncpuorder = 1,2 chips # 1-9 chips # Ordering options hw_nthreadspercore = 2 # 9 # number threads enabled per core hw_other = CPU Cooling: Air # TurboNUMA Router 10 Gb # Other perf-relevant hw, or "None" hw_memory000 = 1 TB (16 x 64 GB 2Rx4 PC5-5600B-R, running # 999 GB (99 x 9 GB 2Rx4 PC4-2133P-R, # The 'PCn-etc' is from the JEDEC hw_memory001 =at 4800) hw_pcache = 32 KB I + 48 KB D on chip per core hw_scache = 2 MB I+D on chip per core hw_tcache = 60 MB I+D on chip per chip hw_ocache = None sw_file = xfs sw_os000 = Red Hat Enterprise Linux 10.1 (Coughlan) sw_os001 = (x86_64) Kernel 6.12.0-124.8.1 sw_state = Run level 5 (multi-user) sw_other = jemalloc memory allocator V5.3.0 power_management000= BIOS and OS set to prefer performance at the cost power_management001 = of additional power usage #--------- Notes ---------------------------------------------------------------- default: notes_000 = Binaries compiled on a system with 2x Intel Xeon processors + 1 TB RAM notes_005 = memory using Red Hat Enterprise Linux 10.1 notes_os_000 = Stack size set to unlimited using "ulimit -s unlimited" #Ease of tagging results from the runcpu command line with commands run outside of runcpu harneess #Adjust as necessary for your SUT %define THP_enabled notes_065 = Transparent Huge Pages enabled with: notes_070 = echo always > /sys/kernel/mm/transparent_hugepage/enabled %define drop_caches notes_010 = Prior to runcpu invocation notes_015 = Filesystem page cache synced and cleared with: notes_020 = sync; echo 3 > /proc/sys/vm/drop_caches %define invoke_with_interleave notes_025 = runcpu command invoked through numactl i.e.: notes_030 = numactl --interleave=all runcpu notes_035 = NA: The test sponsor attests, as of date of publication, that CVE-2017-5754 (Meltdown) notes_040 = is mitigated in the system as tested and documented. notes_045 = Yes: The test sponsor attests, as of date of publication, that CVE-2017-5753 (Spectre variant 1) notes_050 = is mitigated in the system as tested and documented. notes_055 = Yes: The test sponsor attests, as of date of publication, that CVE-2017-5715 (Spectre variant 2) notes_060 = is mitigated in the system as tested and documented. intrate,intspeed,fprate,fpspeed: notes_submit_000 = The numactl mechanism was used to bind copies to processors. notes_submit_005 = The config file option 'submit' 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_os_000 = Stack size set to unlimited using "ulimit -s unlimited". notes_comp_000 = Binaries were built using Intel oneAPI 2026.0 compilers. notes_jemalloc_000 = jemalloc, a general purpose malloc implementation notes_jemalloc_005 = Built with the Red Hat Enterprise Linux 10.1 (Coughlan), and Intel oneAPI 2026.0 icx/icpx compiler. notes_jemalloc_010 = Sources available from jemalloc.net orhttps://github.com/jemalloc/jemalloc/releases notes_plat_000 = BIOS configuration: notes_plat_005 = Performance Profile set to High Performance Compute notes_plat_010 = Intel VT for Directed I/O set to Disabled notes_plat_015 = SNC set to Enable SNC2 notes_plat_020 = KTI Prefetch set to Enabled notes_plat_025 = L2 RFO Prefetch Disable set to Enabled # 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/speccpu2017/bin/sysinfo notes_plat_sysinfo_010 = Rev: r6732 of 2022-11-07 fe91c89b7ed5c36ae2c92cc097bec197 notes_plat_sysinfo_015 = running on localhost.localdomain Sun Jun 28 17:34:46 2026 notes_plat_sysinfo_020 = notes_plat_sysinfo_025 = SUT (System Under Test) info as seen by some common utilities. notes_plat_sysinfo_030 = notes_plat_sysinfo_035 = ------------------------------------------------------------ notes_plat_sysinfo_040 = Table of contents notes_plat_sysinfo_045 = ------------------------------------------------------------ notes_plat_sysinfo_050 = 1. uname -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 257 (257-13.el10-g833aa52) 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 localhost.localdomain 6.12.0-124.8.1.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Oct 17 13:03:58 EDT notes_plat_sysinfo_190 = 2025 x86_64 GNU/Linux notes_plat_sysinfo_195 = notes_plat_sysinfo_200 = ------------------------------------------------------------ notes_plat_sysinfo_205 = 2. w notes_plat_sysinfo_210 = 17:34:46 up 2:52, 5 users, load average: 35.11, 98.36, 116.45 notes_plat_sysinfo_215 = USER TTY LOGIN@ IDLE JCPU PCPU WHAT notes_plat_sysinfo_220 = gdm tty1 14:43 2:51m 7.72s 0.01s /usr/libexec/gsd-printer notes_plat_sysinfo_225 = gdm 14:43 1:27m 0.00s 0.16s /usr/lib/systemd/systemd --user notes_plat_sysinfo_230 = root 14:44 1:27m 0.00s 0.01s sshd-session: root [priv] notes_plat_sysinfo_235 = root 14:44 1:27m 0.00s 0.18s /usr/lib/systemd/systemd --user notes_plat_sysinfo_240 = root 16:20 1:27m 0.00s 0.02s sshd-session: root [priv] 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 = notes_plat_sysinfo_270 = ------------------------------------------------------------ notes_plat_sysinfo_275 = 4. ulimit -a notes_plat_sysinfo_280 = real-time non-blocking time (microseconds, -R) unlimited notes_plat_sysinfo_285 = core file size (blocks, -c) unlimited 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) 4123732 notes_plat_sysinfo_310 = max locked memory (kbytes, -l) unlimited 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) unlimited 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=43 rhgb notes_plat_sysinfo_385 = sshd: /usr/sbin/sshd -D [listener] 0 of 10-100 startups notes_plat_sysinfo_390 = sshd-session: root [priv] notes_plat_sysinfo_395 = sshd-session: root@pts/0 notes_plat_sysinfo_400 = -bash notes_plat_sysinfo_405 = bash test_on_x86.sh notes_plat_sysinfo_410 = runcpu -c test_062601_fp.cfg -T base -n 3 --reportable --copies=128 -o all fprate notes_plat_sysinfo_415 = runcpu --configfile test_062601_fp.cfg --tune base --iterations 3 --reportable --copies 128 --output_format notes_plat_sysinfo_420 = all --nopower --runmode rate --tune base --size refrate fprate --nopreenv --note-preenv --logfile notes_plat_sysinfo_425 = $SPEC/tmp/CPU2017.002/templogs/preenv.fprate.002.0.log --lognum 002.0 --from_runcpu 2 notes_plat_sysinfo_430 = specperl $SPEC/bin/sysinfo notes_plat_sysinfo_435 = $SPEC = /home/speccpu2017 notes_plat_sysinfo_440 = notes_plat_sysinfo_445 = ------------------------------------------------------------ notes_plat_sysinfo_450 = 6. /proc/cpuinfo notes_plat_sysinfo_455 = model name : Intel(R) Xeon(R) Gold 6459C notes_plat_sysinfo_460 = vendor_id : GenuineIntel notes_plat_sysinfo_465 = cpu family : 6 notes_plat_sysinfo_470 = model : 143 notes_plat_sysinfo_475 = stepping : 8 notes_plat_sysinfo_480 = microcode : 0x2b0005c0 notes_plat_sysinfo_485 = bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs eibrs_pbrsb bhi spectre_v2_user notes_plat_sysinfo_490 = cpu cores : 32 notes_plat_sysinfo_495 = siblings : 64 notes_plat_sysinfo_500 = 2 physical ids (chips) notes_plat_sysinfo_505 = 128 processors (hardware threads) notes_plat_sysinfo_510 = physical id 0: core ids 0-31 notes_plat_sysinfo_515 = physical id 1: core ids 0-31 notes_plat_sysinfo_520 = physical id 0: apicids 0-63 notes_plat_sysinfo_525 = physical id 1: apicids 128-191 notes_plat_sysinfo_530 = Caution: /proc/cpuinfo data regarding chips, cores, and threads is not necessarily reliable, especially for notes_plat_sysinfo_535 = virtualized systems. Use the above data carefully. notes_plat_sysinfo_540 = notes_plat_sysinfo_545 = ------------------------------------------------------------ notes_plat_sysinfo_550 = 7. lscpu notes_plat_sysinfo_555 = notes_plat_sysinfo_560 = From lscpu from util-linux 2.40.2: notes_plat_sysinfo_565 = Architecture: x86_64 notes_plat_sysinfo_570 = CPU op-mode(s): 32-bit, 64-bit notes_plat_sysinfo_575 = Address sizes: 52 bits physical, 57 bits virtual notes_plat_sysinfo_580 = Byte Order: Little Endian notes_plat_sysinfo_585 = CPU(s): 128 notes_plat_sysinfo_590 = On-line CPU(s) list: 0-127 notes_plat_sysinfo_595 = Vendor ID: GenuineIntel notes_plat_sysinfo_600 = BIOS Vendor ID: Intel(R) Corporation notes_plat_sysinfo_605 = Model name: Intel(R) Xeon(R) Gold 6459C notes_plat_sysinfo_610 = BIOS Model name: Intel(R) Xeon(R) Gold 6459C CPU @ 3.0GHz notes_plat_sysinfo_615 = BIOS CPU family: 179 notes_plat_sysinfo_620 = CPU family: 6 notes_plat_sysinfo_625 = Model: 143 notes_plat_sysinfo_630 = Thread(s) per core: 2 notes_plat_sysinfo_635 = Core(s) per socket: 32 notes_plat_sysinfo_640 = Socket(s): 2 notes_plat_sysinfo_645 = Stepping: 8 notes_plat_sysinfo_650 = CPU(s) scaling MHz: 99% notes_plat_sysinfo_655 = CPU max MHz: 3900.0000 notes_plat_sysinfo_660 = CPU min MHz: 800.0000 notes_plat_sysinfo_665 = BogoMIPS: 6000.00 notes_plat_sysinfo_670 = Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat notes_plat_sysinfo_675 = pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx notes_plat_sysinfo_680 = pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good notes_plat_sysinfo_685 = nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni notes_plat_sysinfo_690 = pclmulqdq dtes64 monitor ds_cpl smx est tm2 ssse3 sdbg fma cx16 notes_plat_sysinfo_695 = xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt notes_plat_sysinfo_700 = tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm notes_plat_sysinfo_705 = 3dnowprefetch cpuid_fault epb cat_l3 cat_l2 cdp_l3 intel_ppin notes_plat_sysinfo_710 = cdp_l2 ssbd mba ibrs ibpb stibp ibrs_enhanced fsgsbase tsc_adjust notes_plat_sysinfo_715 = bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a avx512f avx512dq rdseed notes_plat_sysinfo_720 = adx smap avx512ifma clflushopt clwb intel_pt avx512cd sha_ni notes_plat_sysinfo_725 = avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves cqm_llc notes_plat_sysinfo_730 = cqm_occup_llc cqm_mbm_total cqm_mbm_local split_lock_detect notes_plat_sysinfo_735 = user_shstk avx_vnni avx512_bf16 wbnoinvd dtherm ida arat pln pts notes_plat_sysinfo_740 = hfi avx512vbmi umip pku ospke waitpkg avx512_vbmi2 gfni vaes notes_plat_sysinfo_745 = vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq la57 rdpid notes_plat_sysinfo_750 = bus_lock_detect cldemote movdiri movdir64b enqcmd fsrm md_clear notes_plat_sysinfo_755 = serialize tsxldtrk pconfig arch_lbr ibt amx_bf16 avx512_fp16 notes_plat_sysinfo_760 = amx_tile amx_int8 flush_l1d arch_capabilities notes_plat_sysinfo_765 = L1d cache: 3 MiB (64 instances) notes_plat_sysinfo_770 = L1i cache: 2 MiB (64 instances) notes_plat_sysinfo_775 = L2 cache: 128 MiB (64 instances) notes_plat_sysinfo_780 = L3 cache: 120 MiB (2 instances) notes_plat_sysinfo_785 = NUMA node(s): 4 notes_plat_sysinfo_790 = NUMA node0 CPU(s): 0-15,64-79 notes_plat_sysinfo_795 = NUMA node1 CPU(s): 16-31,80-95 notes_plat_sysinfo_800 = NUMA node2 CPU(s): 32-47,96-111 notes_plat_sysinfo_805 = NUMA node3 CPU(s): 48-63,112-127 notes_plat_sysinfo_810 = Vulnerability Gather data sampling: Not affected notes_plat_sysinfo_815 = Vulnerability Indirect target selection: Not affected notes_plat_sysinfo_820 = Vulnerability Itlb multihit: Not affected notes_plat_sysinfo_825 = Vulnerability L1tf: Not affected notes_plat_sysinfo_830 = Vulnerability Mds: Not affected notes_plat_sysinfo_835 = Vulnerability Meltdown: Not affected notes_plat_sysinfo_840 = Vulnerability Mmio stale data: Not affected notes_plat_sysinfo_845 = Vulnerability Reg file data sampling: Not affected notes_plat_sysinfo_850 = Vulnerability Retbleed: Not affected notes_plat_sysinfo_855 = Vulnerability Spec rstack overflow: Not affected notes_plat_sysinfo_860 = Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl notes_plat_sysinfo_865 = Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer notes_plat_sysinfo_870 = sanitization notes_plat_sysinfo_875 = Vulnerability Spectre v2: Mitigation; Enhanced / Automatic IBRS; IBPB conditional; notes_plat_sysinfo_880 = PBRSB-eIBRS SW sequence; BHI BHI_DIS_S notes_plat_sysinfo_885 = Vulnerability Srbds: Not affected notes_plat_sysinfo_890 = Vulnerability Tsa: Not affected notes_plat_sysinfo_895 = Vulnerability Tsx async abort: Not affected notes_plat_sysinfo_900 = notes_plat_sysinfo_905 = From lscpu --cache: notes_plat_sysinfo_910 = NAME ONE-SIZE ALL-SIZE WAYS TYPE LEVEL SETS PHY-LINE COHERENCY-SIZE notes_plat_sysinfo_915 = L1d 48K 3M 12 Data 1 64 1 64 notes_plat_sysinfo_920 = L1i 32K 2M 8 Instruction 1 64 1 64 notes_plat_sysinfo_925 = L2 2M 128M 16 Unified 2 2048 1 64 notes_plat_sysinfo_930 = L3 60M 120M 15 Unified 3 65536 1 64 notes_plat_sysinfo_935 = notes_plat_sysinfo_940 = ------------------------------------------------------------ notes_plat_sysinfo_945 = 8. numactl --hardware notes_plat_sysinfo_950 = NOTE: a numactl 'node' might or might not correspond to a physical chip. notes_plat_sysinfo_955 = available: 4 nodes (0-3) notes_plat_sysinfo_960 = node 0 cpus: 0-15,64-79 notes_plat_sysinfo_965 = node 0 size: 257047 MB notes_plat_sysinfo_970 = node 0 free: 255793 MB notes_plat_sysinfo_975 = node 1 cpus: 16-31,80-95 notes_plat_sysinfo_980 = node 1 size: 258039 MB notes_plat_sysinfo_985 = node 1 free: 256724 MB notes_plat_sysinfo_990 = node 2 cpus: 32-47,96-111 notes_plat_sysinfo_995 = node 2 size: 258039 MB notes_plat_sysinfo_1000= node 2 free: 256874 MB notes_plat_sysinfo_1005= node 3 cpus: 48-63,112-127 notes_plat_sysinfo_1010= node 3 size: 258033 MB notes_plat_sysinfo_1015= node 3 free: 256792 MB notes_plat_sysinfo_1020= node distances: notes_plat_sysinfo_1025= node 0 1 2 3 notes_plat_sysinfo_1030= 0: 10 12 21 21 notes_plat_sysinfo_1035= 1: 12 10 21 21 notes_plat_sysinfo_1040= 2: 21 21 10 12 notes_plat_sysinfo_1045= 3: 21 21 12 10 notes_plat_sysinfo_1050= notes_plat_sysinfo_1055= ------------------------------------------------------------ notes_plat_sysinfo_1060= 9. /proc/meminfo notes_plat_sysinfo_1065= MemTotal: 1055909252 kB notes_plat_sysinfo_1070= notes_plat_sysinfo_1075= ------------------------------------------------------------ notes_plat_sysinfo_1080= 10. who -r notes_plat_sysinfo_1085= run-level 5 Jun 28 14:43 notes_plat_sysinfo_1090= notes_plat_sysinfo_1095= ------------------------------------------------------------ notes_plat_sysinfo_1100= 11. Systemd service manager version: systemd 257 (257-13.el10-g833aa52) notes_plat_sysinfo_1105= Default Target Status notes_plat_sysinfo_1110= graphical running notes_plat_sysinfo_1115= notes_plat_sysinfo_1120= ------------------------------------------------------------ notes_plat_sysinfo_1125= 12. Services, from systemctl list-unit-files notes_plat_sysinfo_1130= STATE UNIT FILES notes_plat_sysinfo_1135= enabled ModemManager NetworkManager NetworkManager-dispatcher NetworkManager-wait-online notes_plat_sysinfo_1140= accounts-daemon atd audit-rules auditd avahi-daemon bluetooth chronyd crond cups notes_plat_sysinfo_1145= dbus-broker fips-crypto-policy-overlay gdm getty@ insights-client-boot irqbalance notes_plat_sysinfo_1150= iscsi-onboot iscsi-starter kdump libstoragemgmt lm_sensors lvm2-monitor mcelog mdmonitor notes_plat_sysinfo_1155= multipathd nvmefc-boot-connections pmcd pmie pmlogger qemu-guest-agent rhsmcertd rsyslog notes_plat_sysinfo_1160= rtkit-daemon selinux-autorelabel-mark smartd sshd sssd switcheroo-control sysstat notes_plat_sysinfo_1165= systemd-confext systemd-network-generator systemd-pstore systemd-sysext tuned tuned-ppd notes_plat_sysinfo_1170= udisks2 upower vgauthd virtqemud vmtoolsd notes_plat_sysinfo_1175= enabled-runtime systemd-remount-fs notes_plat_sysinfo_1180= disabled arp-ethers autofs blk-availability brltty canberra-system-bootup canberra-system-shutdown notes_plat_sysinfo_1185= canberra-system-shutdown-reboot chrony-wait chronyd-restricted console-getty cups-browsed notes_plat_sysinfo_1190= dbus-daemon debug-shell dhcpcd dhcpcd@ dnf-system-upgrade dnsmasq dovecot fancontrol fcoe notes_plat_sysinfo_1195= firewalld fsidd gnome-headless-session@ gnome-remote-desktop notes_plat_sysinfo_1200= gnome-remote-desktop-configuration grafana-server gssproxy htcacheclean httpd httpd@ notes_plat_sysinfo_1205= hypervfcopyd ibacm ipsec iscsi-init iscsid iscsiuio kpatch kvm_stat ledmon libvirt-guests notes_plat_sysinfo_1210= libvirtd lldpad low-memory-monitor lvm-devices-import man-db-restart-cache-update notes_plat_sysinfo_1215= microcode named named-chroot netavark-dhcp-proxy netavark-firewalld-reload nfs-blkmap notes_plat_sysinfo_1220= nfs-server nftables nis-domainname nmb numad nvmf-autoconnect pesign pmfind pmie_farm notes_plat_sysinfo_1225= pmlogger_farm pmproxy podman podman-auto-update podman-clean-transient podman-kube@ notes_plat_sysinfo_1230= podman-restart postfix powertop psacct ras-mc-ctl rasdaemon rhsm rhsm-facts rpcbind notes_plat_sysinfo_1235= rpmdb-migrate rpmdb-rebuild rrdcached samba-bgqd saslauthd selinux-check-proper-disable notes_plat_sysinfo_1240= serial-getty@ smb snmpd snmptrapd speech-dispatcherd srp_daemon srp_daemon_port@ notes_plat_sysinfo_1245= ssh-host-keys-migration sshd-keygen@ systemd-boot-check-no-failures systemd-boot-update notes_plat_sysinfo_1250= systemd-nspawn@ systemd-pcrlock-file-system systemd-pcrlock-firmware-code notes_plat_sysinfo_1255= systemd-pcrlock-firmware-config systemd-pcrlock-machine-id systemd-pcrlock-make-policy notes_plat_sysinfo_1260= systemd-pcrlock-secureboot-authority systemd-pcrlock-secureboot-policy notes_plat_sysinfo_1265= systemd-udev-load-credentials target targetclid tmux@ tog-pegasus trace-cmd virtinterfaced notes_plat_sysinfo_1270= virtlockd virtlogd virtnetworkd virtnodedevd virtnwfilterd virtproxyd virtsecretd notes_plat_sysinfo_1275= virtstoraged vsftpd wpa_supplicant wsdd yggdrasil yggdrasil@ notes_plat_sysinfo_1280= indirect iscsi pcscd spice-vdagentd sshd@ sssd-autofs sssd-kcm sssd-nss sssd-pac sssd-pam sssd-ssh notes_plat_sysinfo_1285= sssd-sudo systemd-sysupdate systemd-sysupdate-reboot systemd-userdbd vsftpd@ notes_plat_sysinfo_1290= notes_plat_sysinfo_1295= ------------------------------------------------------------ notes_plat_sysinfo_1300= 13. Linux kernel boot-time arguments, from /proc/cmdline notes_plat_sysinfo_1305= BOOT_IMAGE=(hd0,gpt2)/vmlinuz-6.12.0-124.8.1.el10_1.x86_64 notes_plat_sysinfo_1310= root=/dev/mapper/rhel-root notes_plat_sysinfo_1315= ro notes_plat_sysinfo_1320= crashkernel=2G-64G:256M,64G-:512M notes_plat_sysinfo_1325= resume=UUID=e0783db6-2c9d-4f28-82de-b7559d8ff5e5 notes_plat_sysinfo_1330= rd.lvm.lv=rhel/root notes_plat_sysinfo_1335= rd.lvm.lv=rhel/swap notes_plat_sysinfo_1340= rhgb notes_plat_sysinfo_1345= quiet notes_plat_sysinfo_1350= mitigations=auto notes_plat_sysinfo_1355= notes_plat_sysinfo_1360= ------------------------------------------------------------ notes_plat_sysinfo_1365= 14. cpupower frequency-info notes_plat_sysinfo_1370= analyzing CPU 118: notes_plat_sysinfo_1375= current policy: frequency should be within 800 MHz and 3.90 GHz. notes_plat_sysinfo_1380= The governor "userspace" may decide which speed to use notes_plat_sysinfo_1385= within this range. notes_plat_sysinfo_1390= boost state support: notes_plat_sysinfo_1395= Supported: yes notes_plat_sysinfo_1400= Active: yes notes_plat_sysinfo_1405= notes_plat_sysinfo_1410= ------------------------------------------------------------ notes_plat_sysinfo_1415= 15. tuned-adm active notes_plat_sysinfo_1420= Current active profile: balanced notes_plat_sysinfo_1425= notes_plat_sysinfo_1430= ------------------------------------------------------------ notes_plat_sysinfo_1435= 16. sysctl notes_plat_sysinfo_1440= kernel.numa_balancing 1 notes_plat_sysinfo_1445= kernel.randomize_va_space 2 notes_plat_sysinfo_1450= vm.compaction_proactiveness 20 notes_plat_sysinfo_1455= vm.dirty_background_bytes 0 notes_plat_sysinfo_1460= vm.dirty_background_ratio 10 notes_plat_sysinfo_1465= vm.dirty_bytes 0 notes_plat_sysinfo_1470= vm.dirty_expire_centisecs 3000 notes_plat_sysinfo_1475= vm.dirty_ratio 20 notes_plat_sysinfo_1480= vm.dirty_writeback_centisecs 500 notes_plat_sysinfo_1485= vm.dirtytime_expire_seconds 43200 notes_plat_sysinfo_1490= vm.extfrag_threshold 500 notes_plat_sysinfo_1495= vm.min_unmapped_ratio 1 notes_plat_sysinfo_1500= vm.nr_hugepages 0 notes_plat_sysinfo_1505= vm.nr_hugepages_mempolicy 0 notes_plat_sysinfo_1510= vm.nr_overcommit_hugepages 0 notes_plat_sysinfo_1515= vm.swappiness 60 notes_plat_sysinfo_1520= vm.watermark_boost_factor 15000 notes_plat_sysinfo_1525= vm.watermark_scale_factor 10 notes_plat_sysinfo_1530= vm.zone_reclaim_mode 0 notes_plat_sysinfo_1535= notes_plat_sysinfo_1540= ------------------------------------------------------------ notes_plat_sysinfo_1545= 17. /sys/kernel/mm/transparent_hugepage notes_plat_sysinfo_1550= defrag always defer defer+madvise [madvise] never notes_plat_sysinfo_1555= enabled [always] madvise never notes_plat_sysinfo_1560= hpage_pmd_size 2097152 notes_plat_sysinfo_1565= shmem_enabled always within_size advise [never] deny force notes_plat_sysinfo_1570= notes_plat_sysinfo_1575= ------------------------------------------------------------ notes_plat_sysinfo_1580= 18. /sys/kernel/mm/transparent_hugepage/khugepaged notes_plat_sysinfo_1585= alloc_sleep_millisecs 60000 notes_plat_sysinfo_1590= defrag 1 notes_plat_sysinfo_1595= max_ptes_none 511 notes_plat_sysinfo_1600= max_ptes_shared 256 notes_plat_sysinfo_1605= max_ptes_swap 64 notes_plat_sysinfo_1610= pages_to_scan 4096 notes_plat_sysinfo_1615= scan_sleep_millisecs 10000 notes_plat_sysinfo_1620= notes_plat_sysinfo_1625= ------------------------------------------------------------ notes_plat_sysinfo_1630= 19. OS release notes_plat_sysinfo_1635= From /etc/*-release /etc/*-version notes_plat_sysinfo_1640= os-release Red Hat Enterprise Linux 10.1 (Coughlan) notes_plat_sysinfo_1645= redhat-release Red Hat Enterprise Linux release 10.1 (Coughlan) notes_plat_sysinfo_1650= system-release Red Hat Enterprise Linux release 10.1 (Coughlan) notes_plat_sysinfo_1655= notes_plat_sysinfo_1660= ------------------------------------------------------------ notes_plat_sysinfo_1665= 20. Disk information notes_plat_sysinfo_1670= SPEC is set to: /home/speccpu2017 notes_plat_sysinfo_1675= Filesystem Type Size Used Avail Use% Mounted on notes_plat_sysinfo_1680= /dev/mapper/rhel-home xfs 343G 71G 272G 21% /home notes_plat_sysinfo_1685= notes_plat_sysinfo_1690= ------------------------------------------------------------ notes_plat_sysinfo_1695= 21. /sys/devices/virtual/dmi/id notes_plat_sysinfo_1700= Vendor: HUAKUN notes_plat_sysinfo_1705= Product: HuaKun TG225 X5 notes_plat_sysinfo_1710= Product Family: Not specified notes_plat_sysinfo_1715= Serial: S2063S001 notes_plat_sysinfo_1720= notes_plat_sysinfo_1725= ------------------------------------------------------------ notes_plat_sysinfo_1730= 22. dmidecode notes_plat_sysinfo_1735= Additional information from dmidecode 3.6 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= 16x Hynix HMCG94AGBRA181N 64 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: American Megatrends International, LLC. notes_plat_sysinfo_1795= BIOS Version: 00.04.06 notes_plat_sysinfo_1800= BIOS Date: 03/26/2026 hw_cpu_name = Intel Xeon Gold 6459C hw_disk = 343 GB add more disk info here hw_memory001 = 1006.994 GB fixme: If using DDR4, the format is: hw_memory002 = 'N GB (N x N GB nRxn PC4-nnnnX-X)' hw_nchips = 2 hw_ncores = 64 hw_nthreadspercore = 2 prepared_by = root (is never output, only tags rawfile) sw_file = xfs sw_os001 = Red Hat Enterprise Linux 10.1 (Coughlan) sw_os002 = 6.12.0-124.8.1.el10_1.x86_64 sw_state = Run level 5 (add definition here) # 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: sw_peak_ptrsize = Not Applicable