📄 atlcomp.txt
字号:
## In this file, any line beginning with a '#' is ignored, but the # must be in# column 0. All multiple whitespace is reduced to one space (i.e. used only# to distinguish where words begin/end)## The file has the following format:# MACH=<#>,...,<#> OS=<#>,...,<#> LVL=<#> COMPS=[icc,smc,dmc,skc,dkc,xccf77]# 'compiler' 'flags'# Where MACH indicates the MACHTYPE(s) that the compiler should be available# on, the OS indicates which Operating systems that compiler is available on,# and both of these can take the value of 0, which means the compiler and# associated flags can be used for any machine/OS. There should be no# space in the #,# strings.## LVL gives a priority, and the highest available priority compiler is used# by ATLAS by default. If the user overrides to a compiler that's listed# as a possiblity, the flags given in this line will be used (if the user# does not also override flags) regardless of priority. In general, here# are some reserved priorities:# 1000: Default compiler for particular OS/flag# 500: Alternative compiler getting roughly same performance# 100: Alternative compiler getting crappier performance# 50: Default compiler for particular OS / general family# 10: Default compiler for particular OS / completely unknown arch# 0: Fallback compiler when nothing is known## COMPS is a list saying which of ATLAS's compiler this comp/flag combo are# to be used for:# icc: Used to compiler interface; perf neutral, so set to anything user# uses for interoperability# f77: Same as above but for f77 interface.# dkc: Used to compile all non-matmul double prec computational kernels.# skc: Used to compile all non-matmul single prec computational kernels.# dmc: Used to compile all matmul single prec computational kernels.# smc: Used to compile all matmul single prec computational kernels.#*****************************************************************************## All non-core x86 like these params for MMFLAGS (probably want -O3 for# Level 1 & 2, but must confirm)## Core2Solo and Core2DuoMACH=Core2Solo,Core2Duo OS=ALL LVL=1000 COMPS=smc,dmc,skc,dkc,icc 'gcc' '-fomit-frame-pointer -mfpmath=sse -msse3 -O2'# PPRO,PII,PIII,P4,P4E,K7,HAMMERMACH=PPRO,PII,PIII,P4,P4E,K7,HAMMER OS=ALL LVL=1000 COMPS=f77 'gfortran' '-fomit-frame-pointer -mfpmath=387 -O2 -falign-loops=4'MACH=PPRO,PII,PIII,P4,P4E,K7,HAMMER OS=ALL LVL=1000 COMPS=smc,dmc,skc,dkc,icc 'gcc' '-fomit-frame-pointer -mfpmath=387 -O2 -falign-loops=4'# CoreSolo,CoreDuoMACH=CoreSolo,CoreDuo OS=ALL LVL=1000 COMPS=smc,dmc,skc,dkc,icc 'gcc' '-fomit-frame-pointer -O3 -mfpmath=387'# UltraSPARC III & IVMACH=USIII,USIV OS=ALL LVL=1000 COMPS=smc,dmc,skc,dkc 'gcc' '-mcpu=ultrasparc3 -mtune=ultrasparc3 -O3 -funroll-all-loops'MACH=USIII,USIV OS=ALL LVL=1000 COMPS=icc,xcc 'gcc' '-mcpu=ultrasparc3 -mtune=ultrasparc3 -O'MACH=USIII,USIV OS=ALL LVL=1000 COMPS=f77 'f77' '-dalign -native -xO5'MACH=USIII,USIV OS=ALL LVL=100 COMPS=f77 'gfortran' '-O -mcpu=ultrasparc3 -mtune=ultrasparc3'MACH=USIII,USIV OS=ALL LVL=10 COMPS=f77 'g77' '-O -mcpu=ultrasparc3 -mtune=ultrasparc3'## Itanium & Itanium 2## These gcc 4 default flags will die on gcc3, allowing gcc3's flags to be usedMACH=IA64Itan,IA64Itan2 OS=ALL LVL=1010 COMPS=smc,dmc,skc,dkc 'gcc' '-fomit-frame-pointer -O2 -fno-tree-loop-optimize'MACH=IA64Itan,IA64Itan2 OS=ALL LVL=1000 COMPS=smc,dmc,skc,dkc 'gcc' '-fomit-frame-pointer -O2'MACH=IA64Itan,IA64Itan2 OS=ALL LVL=1010 COMPS=f77 'gfortran' '-fomit-frame-pointer -O2 -fno-tree-loop-optimize'## IRIX/MIPS#MACH=MIPSR1xK OS=IRIX LVL=1000 COMPS=smc,dmc,skc,dkc 'cc' '-O3 -OPT:Olimit=15000 -LNO:blocking=OFF -LOPT:alias=typed'MACH=MIPSR1xK OS=IRIX LVL=1000 COMPS=icc,xcc 'cc' '-O2 -OPT:Olimit=15000 -LNO:blocking=OFF'MACH=MIPSR1xK OS=IRIX LVL=1000 COMPS=f77 'f77' '-O2'## Linux/MIPSICE9#MACH=MIPSICE9 OS=ALL LVL=1000 COMPS=icc,smc,dmc,skc,dkc,xcc 'gcc' '-O2 -mips64 -march=5kf -mtune=5kf -fno-schedule-insns -fschedule-insns2 -fno-peephole -fno-peephole2'## G4 flags#MACH=PPCG4 OS=ALL LVL=1000 COMPS=icc,smc,dmc,skc,dkc,xcc 'gcc' '-O3 -maltivec -mabi=altivec -mcpu=7400 -mtune=7400'MACH=PPCG4 OS=OSX LVL=1001 COMPS=icc,smc,dmc,skc,dkc,xcc 'gcc' '-O3 -maltivec -mabi=altivec -mcpu=7400 -mtune=7400 -no-cpp-precomp -faltivec'## OS X / PowerPC970; the# The flags -fno-schedule-insns -fno-rerun-loop-opt are a workaround for# a compiler error in gcc 4.2. If you have gcc4.1.1, can get back some# performance by removing them (for all PowerPC platforms)#MACH=PPCG5 OS=OSX LVL=1001 COMPS=icc,smc,dmc,skc,dkc,xcc 'gcc' '-mpowerpc64 -maltivec -mabi=altivec -mcpu=970 -mtune=970 -faltivec -O3'MACH=PPCG5 OS=OSX LVL=1010 COMPS=icc,smc,dmc,skc,dkc,xcc 'gcc' '-mpowerpc64 -maltivec -mabi=altivec -mcpu=970 -mtune=970 -faltivec -force_cpusubtype_ALL -O3 -fno-schedule-insns -fno-rerun-loop-opt'MACH=PPCG5 OS=ALL LVL=1000 COMPS=icc,smc,dmc,skc,dkc,xcc 'gcc' '-mpowerpc64 -maltivec -mabi=altivec -mcpu=970 -mtune=970 -O3'MACH=POWER5 OS=ALL LVL=1010 COMPS=icc,smc,dmc,skc,dkc,xcc 'gcc' '-mcpu=power5 -mtune=power5 -O3 -fno-schedule-insns -fno-rerun-loop-opt'MACH=POWER5 OS=ALL LVL=1010 COMPS=f77 'gfortran' '-mcpu=power5 -mtune=power5 -O3 -fno-schedule-insns -fno-rerun-loop-opt'MACH=POWER5 OS=ALL LVL=1010 COMPS=f77 'xlf' '-qtune=pwr5 -qarch=pwr5 -O3 -qmaxmem=-1 -qfloat=hsflt'MACH=POWER4 OS=ALL LVL=1010 COMPS=icc,dmc,smc,dkc,skc,xcc 'gcc' '-mcpu=power4 -mtune=power4 -O3 -fno-schedule-insns -fno-rerun-loop-opt'MACH=POWER4 OS=ALL LVL=1010 COMPS=f77 'xlf' '-qtune=pwr4 -qarch=pwr4 -O3 -qmaxmem=-1 -qfloat=hsflt'## Windows defaults ; need to make SSE/SSE2 arch dep.#MACH=P5,P5MMX,PPRO,PII OS=WinNT LVL=4 COMPS=icc,dmc,smc,dkc,skc,xcc 'cl' '-Oy -Ox'MACH=PIII,K7 OS=WinNT LVL=4 COMPS=icc,dmc,smc,dkc,skc,xcc 'cl' '-Oy -Ox -arch:SSE -nologo'MACH=ALL OS=WinNT LVL=0 COMPS=icc,dmc,smc,dkc,skc,xcc 'cl' '-Oy -Ox -arch:SSE2 -nologo'MACH=ALL OS=WinNT LVL=0 COMPS=f77 'ifort' '-O2 -fltconsistency -nologo'MACH=P4,PM OS=WinNT LVL=0 COMPS=icc,dmc,smc,dkc,skc,xcc 'icl' '-QxN -O3 -Qprec -fp:extended -fp:except -nologo -Oy'## Generic defaults#MACH=ALL OS=ALL LVL=5 COMPS=icc,smc,dmc,skc,dkc,xcc 'gcc' '-O -fomit-frame-pointer'MACH=ALL OS=ALL LVL=5 COMPS=f77 'gfortran' '-O'MACH=ALL OS=ALL LVL=4 COMPS=f77 'g77' '-O'MACH=ALL OS=ALL LVL=0 COMPS=f77 'f77' '-O'
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -