------------------------------------------------------------------ Intel (R) C++/Fortran compiler options, compilers 8.1 and 9.0 ------------------------------------------------------------------ NAME icc - invokes the Intel(R) C++ compiler ifort - invokes the Intel(R) Fortran Compiler OPTIONS -O1 Optimize to favor code size and code locality. Disables loop unrolling. -O1 may improve perfor- mance for applications with very large code size, many branches, and execution time not dominated by code within loops. In most cases, -O2 is recom- mended over -O1. Itanium architecture-based systems: Disables soft- ware pipelining and global code scheduling. -O2 (DEFAULT) Optimize for code speed. This is the generally rec- ommended optimization level. Itanium architecture-based systems: Turns software pipelining ON. -O3 Enable -O2 optimizations and in addition, enable more aggressive optimizations such as loop and mem- ory access transformation. The -O3 optimizations may slow down code in some cases compared to -O2 optimizations. Recommended for applications that have loops with heavy use of floating point calcu- lations and process large data sets. -fast The -fast option maximizes speed across the entire program. It sets the following command options that can improve run-time performance:-O3, -ipo, and -static. -ftz Flush denormal results to zero. -IPF_fp_speculation Enable floating point speculations with the follow- ing conditions: fast -- Speculate floating point operations safe -- Speculate only when safe strict -- Same as off off -- Disables speculation of floating-point oper- ations -IPF_flt_eval_method0 Direct the compiler to evaluate the expressions involving floating-point operands in the precision indicated by the variable types declared in the program. -IPF_fp_relaxed[-] Enable [disable] use of faster but slightly less accurate code sequences for math functions, such as divide and square root. -tpp1 Target optimization to the Itanium processor. -tpp2 Target optimization to the Itanium 2 processor. (DEFAULT on Itanium architecture-based systems) -ipo Enables multifile IP optimizations (between files). When you specify this option, the compiler performs inline function expansion for calls to functions defined in separate files. -nolib_inline Disable inline expansion of intrinsic functions. -auto_ilp32 Specifies that the application should run within a 32-bit address space. Also tells the compiler to use 32-bit pointers whenever possible. To use this option, you must specify -ipo. -prof_gen[x] Instruct the compiler to produce instrumented code in your object files in preparation for instrumented execution. With the x qualifier, extra information is gathered. This option is used in Phase 1 of PGO to instruct the compiler to produce instrumented code in your object files in prepara- tion for instrumented execution. Parallel make is automatically supported for -prof_genx compila- tions. -prof_use Instruct the compiler to produce a profile-opti- mized executable and merge available dynamic infor- mation (.dyn) files into a pgopti.dpi file. Use the -prof_use option in Phase 3 of PGO. -ansi_alias[-] The -ansi_alias option directs the compiler to assume that the program adheres to the rules defined in the ISO C Standard. If your program adheres to these rules, then this option will allow the compiler to optimize more aggressively. If it doesn't adhere to these rules, then it can cause the compiler to generate incorrect code. -ansi Support all ANSI standard C programs, equivalent to the -ansi option of gcc. -strict_ansi Select strict ANSI C/C++ conformance dialect -c99[-] Enable [disable] C99 support for C programs. -std=c99 Enable C99 support for C programs -alias_args[-] Assume arguments may be aliased. (DEFAULT) [not aliased]. -D[=] Define the macro and associate it with the specified . Equivalent to a #define prepro- cessing directive. DEFAULT: -D defines the macro with a of 1. -Qoption,, Pass options to the tool specified by . may be tool Description ------------------------------------ cpp Specifies the compiler front-end preprocessor c Specifies the C++ compiler fpp Specifies the Fortran preprocessor f Specifies the Fortran compiler asm Specifies the assembler link Specifies the linker -Qoption can be used with the -ipo option to refine IPO. The valid option list that can be used for this purpose are -ip_args_in_regs=0 Disables the passing of arguments in registe- rs. -ip_ninl_max_stats=n Sets the valid number of intermediate languag- e statements for a function that is expanded in line. The number n is a positive integer. The number of intermediate language statements usually exceeds the actual number of source language statements. The default value for n is 230. -ip_ninl_min_stats=n Sets the valid min number of intermediate lan- guage statements for a function that is expan- ded in line. The number n is a positive integ- er. The default value for ip_ninl_min_stats 15. -ip_ninl_max_total_stats=n Sets the maximum increase in size of a functi- on, measured in intermediate language stateme- nts, due to inlining. The number n is a posit- ive integer. The default value for n is 2000. -falias Assume aliasing in program (DEFAULT). -fno-alias Assume no aliasing in program. -ffnalias Assume aliasing within functions (DEFAULT). -fno-fnalias Assume no aliasing within functions, but assume aliasing across calls. -fr32 Disable use of high floating point registers. Use only lower 32 floating-point registers. -L Instruct the linker to search for libraries. -i_dynamic Link Intel provided libraries dynamically. -dynamic-linker Select a dynamic linker (filename) other than the default. -static Prevent linking with shared libraries. Causes the executable to link all libraries statically, as opposed to dynamically. -Xlinker Pass directly to the linker for processing. -include file Process file as if "#include "file" appeared as the first line of the primary source file. However, the first directory searched for file is the preproces- sor's working directory instead of the directory containing the main source file.If not found there, it is searched for in the remainder of the "#inclu- de "..."" search chain as normal. If multiple -include options are given, the files are included in the order they appear on the comman d line. ENVIRONMENT VARIABLES LD_LIBRARY_PATH Specifies the location for all Intel-provided libraries. The LD_LIBRARY_PATH environment variable contains a colon-separated list of directories in which the linker will search for library (.a) files. If you want the linker to search additional libraries, you can add their names to LD_LIBRARY_PATH, to the command line, to a response file, or to the configuration file. In each case, the names of these libraries are passed to the linker before the names of the Intel libraries that the driver always specifies. PATH Specifies the directories the system searches for binary executable files. PROF_DIR Specifies the directory in which dynamic informa- tion files are created. This variable applies to all three phases of the profiling process. PROF_NO_CLOBBER Alters the feedback compilation phase slightly. By default, during the feedback compilation phase, the compiler merges the data from all dynamic informa- tion files and creates a new pgopti.dpi file if .dyn files are newer than an existing pgopti.dpi file. When this variable is set, the compiler does not overwrite the existing pgopti.dpi file. Instead, the compiler issues a warning and you must remove the pgopti.dpi file if you want to use addi- tional dynamic information files. COPYRIGHT INFORMATION Copyright (C) 2002 - 2004, Intel Corporation. All rights reserved. * Other brands and names are the property of their respec- tive owners. Copyright(C) 2002 - 2004 Intel Corporation ICC(1) ------------------------------------------------------------------ GNU Linker options ------------------------------------------------------------------ GNU Linker is invoked by Intel Compiler. LD(1) GNU Development Tools LD(1) NAME ld - Using LD, the GNU linker OPTIONS --allow-multiple-definition Normally when a symbol is defined multiple times, the linker will report a fatal error. These options allow multiple definitions and the first definition will be used. COPYRIGHT Copyright (c) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled ''GNU Free Documentation License''. ------------------------------------------------------------------ taskset ------------------------------------------------------------------ NAME taskset - retrieve or set a processes's CPU affinity SYNOPSIS taskset [options] [mask | list ] [pid | command [arg]...] DESCRIPTION taskset is used to set or retrieve the CPU affinity of a running process given its PID or to launch a new COM- MAND with a given CPU affinity. CPU affinity is a scheduler property that "bonds" a process to a given set of CPUs on the system. The Linux scheduler will honor the given CPU affinity and the process will not run on any other CPUs. Note that the Linux scheduler also supports natural CPU affinity: the scheduler attempts to keep processes on the same CPU as long as practical for performance reasons. Therefore, forcing a specific CPU affinity is useful only in certain applications. The CPU affinity is represented as a bitmask, with the lowest order bit corresponding to the first logical CPU and the highest order bit corresponding to the last logical CPU. Not all CPUs may exist on a given system but a mask may specify more CPUs than are present. A retrieved mask will reflect only the bits that corre- spond to CPUs physically on the system. If an invalid mask is given (i.e., one that corresponds to no valid CPUs on the current system) an error is returned. The masks are typically given in hexadecimal. For example, 0x00000001 is processor #0 0x00000003 is processors #0 and #1 0xFFFFFFFF is all processors (#0 through #31) When taskset returns, it is guaranteed that the given program has been scheduled to a legal CPU. OPTIONS -c, --cpu-list specifiy a numerical list of processors instead of a bitmask. The list may contain multiple items, separated by comma, and ranges. For example, 0,5,7,9-11. --------------------------------------------------------------- Hardware setting --------------------------------------------------------------- Memory system is in "Non Mirror Mode". PRIMEQUEST 480 memory system supports DSSA (Dual Sync System Architecture ) and works in one of following two modes. (1) Mirror Mode Address buses and Data buses are duplicated. And most of internal action of chipset is also duplicated. In this mode, system memory throughput becomes half but higher reliability is expected by the memory system duplication. (2) Non Mirror Mode Address buses and data buses are not duplicated. And the internal action of chipset is not duplicated. In this mode, full memory bandwidth is available, but the system duplication for higher reliability does not work. Please see the detail of DSSA in the attached file. "FUJITSU-PRIMEQUEST-20051109_2.pdf". --------------------------------------------------------------- Other Notes --------------------------------------------------------------- +FDO PASS1= -prof_gen PASS2= -prof_use Using feedback-directed optimization, a profile is gen- erated on the first pass of compilation and used on the second pass. libsmartheap64.a MicroQuill SmartHeap Library 7.3 or later available from www.microquill.com --------------------------------------------------------------- Portability flags for SPEC CPU2000 --------------------------------------------------------------- -Dalloca=_alloca Replace occurrences of alloca() with _alloca. -DSPEC_CPU2000_LP64 Compile using LP64 programming model. -DLINUX_i386 Linux Intel system, use "long long" as 64bit variable. -DHAS_ERRLIST Prog env provides specification for "sys_errlist[]". -DSPEC_CPU2000_NEED_BOOL Use SPEC provided definition of the boolean type. -DSPEC_CPU2000_LINUX_IA64 Compile for an IA64 system running Linux. -DPSEC_CPU2000_GLIBC22 Compatibility with 2.2 & later versi- ons of glibc -DSYS_IS_USG Specifies that the operating system is USG compliant. -DSYS_HAS_TIME_PROTO Do not explicitly declare time(). -DSYS_HAS_SIGNAL_PROTO Do not explicitly #include -DSYS_HAS_IOCTL_PROTO Do not explicitly declare ioctl(). -DSYS_HAS_CALLOC_PROTO Do not explicitly declare calloc(). -include unistd.h include for the definition of 'HZ' -FI Fixed-format F90 source code.