# Invocation command line: # /home/CPU2017RC4/bin/harness/runcpu --define default-platform-flags --copies 80 --configfile ic17.0-lin-ws-core-avx2-rate-20160930.cfg --define smt-on --define cores=40 --define physicalfirst --define invoke_with_interleave --define drop_caches --tune base,peak --output_format all fprate # output_root was not used for this run ############################################################################ #------------------------------------------------------------------------------ # This is a sample SPEC CPU2017 config file. It was tested with: # # Compiler name/version: Intel(R) C/C++ and Fortran 17.0 Compilers for Linux # Operating system version: Redhat Enterprise Linux 7.2, GLIBC 2.17 # Hardware: Intel(R) processors supporting CORE-AVX2 tuning # # If you have different software or hardware, this config file may not work. # You may find a better config file for your system next to posted results: # http://www.spec.org/cpu2017/results # # Compiler issues: Contact your compiler vendor, not SPEC. # For SPEC help: http://www.spec.org/auto/cpu2017/Docs/techsupport.html #------------------------------------------------------------------------------ #--------- Preprocessor ------------------------------------------------------- # # Optionally edit if you wish: %define build_ncpus 8 # controls number of simultaneous compiles # Used to date the label %define version 20160930 # Used for the optimization tuning part of the label (not required) %if defined(%{noopt}) %define opt_label -noopt %elif defined(%{medopt}) %define opt_label -medopt %else %define opt_label %endif # Used for labeling static linked builds (not required) %if defined(%{static}) %define static_label -static %else %define static_label %endif #--------- Label -------------------------------------------------------------- # Arbitrary string, tags your binaries & directories. # Two Suggestions: # (1) Change this label as you try new ideas. label = ic17.0-lin-ws-core-avx2-rate%{opt_label}%{static_label}-%{version} # (2) Make the label meaningful to YOU. #--------- Global Settings ---------------------------------------------------- # For info, see: # https://www.spec.org/auto/cpu2017/Docs/config.html#fieldname XXX # Example: https://www.spec.org/auto/cpu2017/Docs/config.html#tune ######################################################## # ATTENTION ATTENTION ATTENTION ######################################################## # # NOTE If you change fail_build then PLEASE also # change the line 'define version', because # SPEC review tools use 'label' to track binaries. # ######################################################## # # vvvvvvvvvvvv # do not change unless you read NOTE above fail_build=0 # do not change unless you read NOTE above # ^^^^^^^^^^^^ # do not change unless you read NOTE above # ######################################################## # action = validate command_add_redirect = 1 line_width = 1020 log_line_width = 1020 makeflags = -j%{build_ncpus} output_format = txt,cfg,pdf,csv preenv = 1 tune = base bench_post_setup = sync parallel_test = 1 mean_anyway = 1 reportable = 1 copies = 1 #Reference the flags Files flagsurl000=http://www.spec.org/cpu2017/flags/Intel-ic17.0-official-linux64-revD.xml %ifdef %{default-platform-flags} flagsurl001=http://www.spec.org/cpu2017/flags/Inspur-Platform-Settings-V1.0-HSW.xml %endif # Set some environment variables preENV_LD_LIBRARY_PATH = $[top]/lib/ia32:$[top]/lib/intel64:$[top]/sh10.2 # Affinitization # For UP systems, we need to know if the processors are ordered across cores first or in order # If across cores, processors 0, 1, 2 and 3 are on distinct physical cores # Otherwise, processors 0, 2, 4 and 6 are on distinct physical cores default: submit = numactl --localalloc --physcpubind=$SPECCOPYNUM -- $command %ifdef %{no-numa} submit = taskset -c $SPECCOPYNUM $command %endif #--------- Compilers ---------------------------------------------------------- intrate,fprate: CC = icc -m64 -std=c11 CXX = icpc -m64 FC = ifort -m64 default: # How to say "Show me your version, please" CC_VERSION_OPTION = --version CXX_VERSION_OPTION = --version FC_VERSION_OPTION = --version SMARTHEAP_DIR = /sh10.2 %if !defined(%{static}) SMARTHEAP32 = smartheap SMARTHEAP64 = smartheap64 %else SMARTHEAP32 = libsmartheap.a SMARTHEAP64 = libsmartheap64.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 #-------- Tuning Flags ------------------------------------------------- intspeed,fpspeed: #reconsider using a speed config file instead of a rate config file fail=1 default: SSE = -xCORE-AVX2 EXTRA_FOPTIMIZE = -nostandard-realloc-lhs %if defined(%{noopt}) OPT_ROOT = -O0 %elif defined(%{medopt}) OPT_ROOT = -O2 %else OPT_ROOT = -ipo -O3 -no-prec-div %endif FAST_NO_STATIC = $(SSE) $(OPT_ROOT) -auto-p32 FORT_FAST_NO_STATIC = $(SSE) $(OPT_ROOT) FAST = $(SSE) $(OPT_ROOT) -static -auto-p32 FORT_FAST = $(SSE) $(OPT_ROOT) -static any_cpp=default: EXTRA_LIBS = -L$(SMARTHEAP_DIR) -l$(SMARTHEAP64) EXTRA_LDFLAGS = -Wl,-z,muldefs default: %if !defined(%{static}) COPTIMIZE = $(FAST_NO_STATIC) -qopt-prefetch -qopt-mem-layout-trans=3 CXXOPTIMIZE = $(FAST_NO_STATIC) -qopt-prefetch -qopt-mem-layout-trans=3 FOPTIMIZE = $(FORT_FAST_NO_STATIC) -qopt-prefetch -qopt-mem-layout-trans=3 %else COPTIMIZE = $(FAST) -qopt-prefetch -qopt-mem-layout-trans=3 CXXOPTIMIZE = $(FAST) -qopt-prefetch -qopt-mem-layout-trans=3 FOPTIMIZE = $(FORT_FAST) -qopt-prefetch -qopt-mem-layout-trans=3 %endif default=peak: %if defined(%{noopt}) || defined(%{medopt}) #not building or executing peak against less opt fail=1 %endif PASS1_CFLAGS = -prof-gen PASS2_CFLAGS = -prof-use PASS1_FFLAGS = -prof-gen PASS2_FFLAGS = -prof-use PASS1_CXXFLAGS = -prof-gen PASS2_CXXFLAGS = -prof-use PASS1_LDFLAGS = -prof-gen PASS2_LDFLAGS = -prof-use #------------------------------------------------------------------------------- # Tester and System Descriptions - Edit the section below #------------------------------------------------------------------------------- # For info about any field, see # https://www.spec.org/auto/cpu2017/Docs/config.html#fieldname # Example: https://www.spec.org/auto/cpu2017/Docs/config.html#hw_memory #------------------------------------------------------------------------------- #--------- If you install new compilers, edit this section -------------------- intrate,intspeed,fpspeed,fprate: sw_compiler000 = C/C++: Version 17.0.0.098 of Intel C/C++ sw_compiler001 = Compiler for Linux; sw_compiler002 = Fortran: Version 17.0.0.098 of Intel Fortran sw_compiler003 = Compiler for Linux sw_base_ptrsize = 32/64-bit sw_peak_ptrsize = Not Applicable #--------- Your info --------------------------------------------------------- # To understand the difference between hw_vendor/sponsor/tester, see: # www.spec.org/auto/cpu2017/Docs/config.html#test_sponsor intrate,intspeed,fprate,fpspeed: # Important: keep this line hw_vendor = Inspur Corporation tester = Inspur Corporation test_sponsor = Inspur Corporation license_num = 3358 #--------- Fill out this section ---------------------------------------------- intrate,intspeed,fprate,fpspeed: # Important: keep this line # Example # Brief info about field hw_avail = Apr-2016 sw_avail = Nov-2016 hw_cpu_nominal_mhz = 2200 hw_cpu_max_mhz = 3600 hw_ncores = 40 hw_nthreadspercore = 2 hw_ncpuorder = 1,2 chips hw_model = Inspur NF5280M4 (Intel Xeon E5-2698 v4) hw_ncoresperchip = 20 hw_other = None sw_other000 = Microquill SmartHeap V10.2 hw_pcache = 32 KB I + 32 KB D on chip per core hw_scache = 256 KB I+D on chip per core hw_tcache = 50 MB I+D on chip per chip hw_ocache = None hw_memory = 256 GB (16 x 16 GB 2Rx4 PC4-2400P-R) #--------- Sysinfo fields - You may need to adjust this section --------------- # The following are partly filled out by sysinfo. # www.spec.org/auto/cpu2017/Docs/config.html#sysinfo # Uncomment lines for which you already have a better answer than sysinfo # intrate,intspeed,fprate,fpspeed: # Important: keep this line # Example # Brief info about field # hw_cpu_name = # Intel Xeon E9-9999 v9 # chip name # hw_disk = # 9 x 9 TB SATA III 9999 RPM # Size, type, other perf-relevant info # hw_nchips = # 99 # number chips enabled # sw_file = # ext99 # File system # sw_state = # Run level 99 # Software state. # sw_os001 = # Linux Sailboat # Operating system # sw_os002 = # Distribution 7.2 SP1 # and version prepared_by = Inspur Corporation #--------- Intel Recommended Fields - You may wish to adjust this section ----- default: notes_015 = Binaries compiled on a system with 1x Intel Core i7-4790 CPU + 32GB RAM notes_020 = memory using Redhat Enterprise Linux 7.2 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 %if defined(%{THP_enabled}) notes_200 = Transparent Huge Pages enabled with: notes_201 = echo always > /sys/kernel/mm/transparent_hugepage/enabled %elif defined(%{THP_disabled}) notes_200 = Transparent Huge Pages disabled with: notes_201 = echo never > /sys/kernel/mm/transparent_hugepage/enabled %else notes_025 = Transparent Huge Pages enabled by default %endif %ifdef %{drop_caches} notes_030 = Filesystem page cache cleared with: notes_035 = echo 1> /proc/sys/vm/drop_caches %endif %ifdef %{invoke_with_interleave} notes_040 = runcpu command invoked through numactl i.e.: notes_045 = numactl --interleave=all runcpu %endif intrate,fprate: %if defined(%{no-numa}) notes_submit_000 = The numactl mechanism was used to bind copies to processors. The config file option 'submit' notes_submit_001 = was used to generate numactl commands to bind each copy to a specific processor. notes_submit_002 = For details, please see the config file. %elif notes_submit_000 = The taskset mechanism was used to bind copies to processors. The config file option 'submit' notes_submit_001 = was used to generate taskset commands to bind each copy to a specific processor. notes_submit_002 = For details, please see the config file. %endif # The following settings were obtained by running the sysinfo_program # 'specperl $[top]/Docs/sysinfo' (sysinfo:SHA:0710f0acde4bba9a64b6bc93cc9676f3a4858920d296e5f2df39ac8de52eecb0) default: notes_plat_sysinfo_000 = Sysinfo program /home/CPU2017RC4/Docs/sysinfo notes_plat_sysinfo_005 = Rev: r5007 of 2016-11-15 fc8dc82f217779bedfed4d694d580ba9 notes_plat_sysinfo_010 = running on localhost.localdomain Sat Dec 10 07:16:05 2016 notes_plat_sysinfo_015 = notes_plat_sysinfo_020 = This section contains SUT (System Under Test) info as seen by some common notes_plat_sysinfo_025 = utilities. notes_plat_sysinfo_030 = For more information on this section, see notes_plat_sysinfo_035 = http://www.spec.org/cpu2017/Docs/config.html#sysinfo notes_plat_sysinfo_040 = notes_plat_sysinfo_045 = From /proc/cpuinfo notes_plat_sysinfo_050 = model name : Intel(R) Xeon(R) CPU E5-2698 v4 @ 2.20GHz notes_plat_sysinfo_055 = 2 "physical id"s (chips) notes_plat_sysinfo_060 = 80 "processors" notes_plat_sysinfo_065 = cores, siblings (Caution: counting these is hw and system dependent. The notes_plat_sysinfo_070 = following excerpts from /proc/cpuinfo might not be reliable. Use with notes_plat_sysinfo_075 = caution.) notes_plat_sysinfo_080 = cpu cores : 20 notes_plat_sysinfo_085 = siblings : 40 notes_plat_sysinfo_090 = physical 0: cores 0 1 2 3 4 8 9 10 11 12 16 17 18 19 20 24 25 26 27 28 notes_plat_sysinfo_095 = physical 1: cores 0 1 2 3 4 8 9 10 11 12 16 17 18 19 20 24 25 26 27 28 notes_plat_sysinfo_100 = cache size : 25600 KB notes_plat_sysinfo_105 = notes_plat_sysinfo_110 = The view from numactl --hardware follows. WARNING: a numactl 'node' might or notes_plat_sysinfo_115 = might not correspond to a physical chip. notes_plat_sysinfo_120 = available: 4 nodes (0-3) notes_plat_sysinfo_125 = node 0 cpus: 0 1 2 3 4 5 6 7 8 9 40 41 42 43 44 45 46 47 48 49 notes_plat_sysinfo_130 = node 0 size: 65414 MB notes_plat_sysinfo_135 = node 0 free: 51177 MB notes_plat_sysinfo_140 = node 1 cpus: 10 11 12 13 14 15 16 17 18 19 50 51 52 53 54 55 56 57 58 59 notes_plat_sysinfo_145 = node 1 size: 65536 MB notes_plat_sysinfo_150 = node 1 free: 56018 MB notes_plat_sysinfo_155 = node 2 cpus: 20 21 22 23 24 25 26 27 28 29 60 61 62 63 64 65 66 67 68 69 notes_plat_sysinfo_160 = node 2 size: 65536 MB notes_plat_sysinfo_165 = node 2 free: 56059 MB notes_plat_sysinfo_170 = node 3 cpus: 30 31 32 33 34 35 36 37 38 39 70 71 72 73 74 75 76 77 78 79 notes_plat_sysinfo_175 = node 3 size: 65536 MB notes_plat_sysinfo_180 = node 3 free: 56048 MB notes_plat_sysinfo_185 = node distances: notes_plat_sysinfo_190 = node 0 1 2 3 notes_plat_sysinfo_195 = 0: 10 11 21 21 notes_plat_sysinfo_200 = 1: 11 10 21 21 notes_plat_sysinfo_205 = 2: 21 21 10 11 notes_plat_sysinfo_210 = 3: 21 21 11 10 notes_plat_sysinfo_215 = notes_plat_sysinfo_220 = From /proc/meminfo notes_plat_sysinfo_225 = MemTotal: 263845272 kB notes_plat_sysinfo_230 = HugePages_Total: 0 notes_plat_sysinfo_235 = Hugepagesize: 2048 kB notes_plat_sysinfo_240 = notes_plat_sysinfo_245 = From /etc/*release* /etc/*version* notes_plat_sysinfo_250 = os-release: notes_plat_sysinfo_255 = NAME="Red Hat Enterprise Linux Server" notes_plat_sysinfo_260 = VERSION="7.2 (Maipo)" notes_plat_sysinfo_265 = ID="rhel" notes_plat_sysinfo_270 = ID_LIKE="fedora" notes_plat_sysinfo_275 = VERSION_ID="7.2" notes_plat_sysinfo_280 = PRETTY_NAME="Red Hat Enterprise Linux Server 7.2 (Maipo)" notes_plat_sysinfo_285 = ANSI_COLOR="0;31" notes_plat_sysinfo_290 = CPE_NAME="cpe:/o:redhat:enterprise_linux:7.2:GA:server" notes_plat_sysinfo_295 = redhat-release: Red Hat Enterprise Linux Server release 7.2 (Maipo) notes_plat_sysinfo_300 = system-release: Red Hat Enterprise Linux Server release 7.2 (Maipo) notes_plat_sysinfo_305 = system-release-cpe: cpe:/o:redhat:enterprise_linux:7.2:ga:server notes_plat_sysinfo_310 = notes_plat_sysinfo_315 = uname -a: notes_plat_sysinfo_320 = Linux localhost.localdomain 3.10.0-327.el7.x86_64 #1 SMP Thu Oct 29 17:29:29 notes_plat_sysinfo_325 = EDT 2015 x86_64 x86_64 x86_64 GNU/Linux notes_plat_sysinfo_330 = notes_plat_sysinfo_335 = run-level 3 Dec 9 16:57 notes_plat_sysinfo_340 = notes_plat_sysinfo_345 = SPEC is set to: /home/CPU2017RC4 notes_plat_sysinfo_350 = Filesystem Type Size Used Avail Use% Mounted on notes_plat_sysinfo_355 = /dev/mapper/rhel-home xfs 877G 40G 838G 5% /home notes_plat_sysinfo_360 = notes_plat_sysinfo_365 = Additional information from dmidecode follows. WARNING: Use caution when you notes_plat_sysinfo_370 = interpret this section. The 'dmidecode' program reads system data which is notes_plat_sysinfo_375 = "intended to allow hardware to be accurately determined", but the intent may not notes_plat_sysinfo_380 = be met, as there are frequent changes to hardware, firmware, and the "DMTF notes_plat_sysinfo_385 = SMBIOS" standard. notes_plat_sysinfo_390 = BIOS American Megatrends Inc. 4.1.8 06/12/2016 notes_plat_sysinfo_395 = Memory: notes_plat_sysinfo_400 = 16x Hynix HMA42GR7AFR4N-UH 16 GB 2 rank 2400 MHz notes_plat_sysinfo_405 = 8x NO DIMM NO DIMM notes_plat_sysinfo_410 = notes_plat_sysinfo_415 = (End of data from sysinfo program) hw_cpu_name = Intel Xeon E5-2698 v4 hw_disk = 1 x SATA, 450 GB, SSD hw_memory001 = 251.622 GB fixme: If using DDR3, format is: hw_memory002 = 'N GB (M x N GB nRxn PCn-nnnnnR-n, ECC)' hw_nchips = 2 prepared_by = root (is never output, only tags rawfile) fw_bios = American Megatrends Inc. Inspur 4.1.11 sw_file = xfs sw_os000 = Red Hat Enterprise Linux Server release 7.2 sw_os001 = (Maipo) sw_os002 = 3.10.0-327.el7.x86_64 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: notes_000 =Environment variables set by runcpu before the start of the run: notes_005 =LD_LIBRARY_PATH = "/home/CPU2017RC4/lib/ia32:/home/CPU2017RC4/lib/intel64:/home/CPU2017RC4/sh10.2" notes_010 = notes_plat_000 = BIOS and OS configuration: notes_plat_005 = SCALING_GOVERNOR set to Performance notes_plat_010 = Hardware Prefetch set to Disable notes_plat_015 = VT Support set to Disable notes_plat_020 = C1E Support set to Disable