<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated on Fri, 10 Feb 2012 05:35:41 -0800 -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <atom:link href="http://software.intel.com/en-us/articles/intel-visual-fortran-compiler-for-windows-kb/type/technical-notes/feed/" rel="self" type="application/rss+xml" />
    <title>Intel Software Network articles Feed</title>
    <link>http://software.intel.com/en-us/articles/intel-visual-fortran-compiler-for-windows-kb/type/technical-notes/</link>
    <description></description>
    <language>en-us</language>
    <item>
      <title>Intel® MKL Data Fitting component: Overview</title>
      <description><![CDATA[ <br />Intel® MKL 10.3 update 8 introduces Data Fitting Component. Data Fitting functions in Intel® MKL provide spline-based interpolation capabilities that can be used for spline construction (Linear, Cubic Quadratic etc.), to approximate functions, function derivatives or integrals, and perform cell search operations.<br /><br />Please find additional details in the overview training material: <a href="http://software.intel.comjavascript:void(0)" onclick="ndownload('http://software.intel.com/file/41051')"><b>Intel MKL Data Fitting Library Overview.pdf</b></a> <br /><br /><br />Note: <br />1. Intel® MKL 10.3 update 8 supports 1-D data fitting components.<br />2. Data Fitting component of Intel® MKL 10.3 update 8 does not support PGI* Fortran Compiler.<br /><br />
<p ><br /><img height="482" width="615" src="http://software.intel.com/file/40438" /></p> ]]></description>
      <link>http://software.intel.com/en-us/articles/mkl-data-fitting-component-overview/</link>
      <pubDate>Sun, 04 Dec 2011 10:30:00 -0800</pubDate>
      <comments>http://software.intel.com/en-us/articles/mkl-data-fitting-component-overview/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/mkl-data-fitting-component-overview/</guid>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® C++ Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® C++ Compiler for Windows* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Math Kernel Library Knowledge Base</category>
      <category>Intel® Parallel Composer Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>How do I uninstall Microsoft Visual Studio 2008 Shell?</title>
      <description><![CDATA[ To uninstall the Microsoft Visual Studio Shell you must run 3 uninstall programs in Add/Remove Programs:
<div><br /></div>
<div>Microsoft Visual Studio 2008* Shell – ENU<br />Microsoft Visual Studio 2010 Files for Intel Visual Fortran (if present)<br />Microsoft Visual Studio 2008 Remote Debugger - ENU <br /></div>
<div><br /></div>
<div>This is in addition to uninstalling the Intel(R) Visual Fortran Compiler which may be entitled a title similar to: "Intel Composer XE 2011 Update 1 for Windows"</div> ]]></description>
      <link>http://software.intel.com/en-us/articles/how-do-i-uninstall-microsoft-visual-studio-2008-shell/</link>
      <pubDate>Wed, 16 Nov 2011 00:00:00 -0800</pubDate>
      <comments>http://software.intel.com/en-us/articles/how-do-i-uninstall-microsoft-visual-studio-2008-shell/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/how-do-i-uninstall-microsoft-visual-studio-2008-shell/</guid>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Building and Running a Distributed Coarray Application on Windows</title>
      <description><![CDATA[ <p>This is a brief how-to guide for using Distributed  Coarray Fortran on a Windows cluster.</p>
<h1 class="sectionHeading">Prerequisites:</h1>
<p>To build an application that uses the distributed memory feature of Coarray Fortran on Windows, you must have:</p>
<ul>
<li>Intel® Visual Fortran Composer XE 2011 Update 6 or newer</li>
<li>A license for Intel® Cluster Toolkit, available separately or as part of Intel® Cluster Studio 2011</li>
</ul>
To run a distributed coarray application on a Windows cluster, you must have:<br /> 
<ul>
<li>A Windows-based cluster running Microsoft Windows HPC Server 2008* or Microsoft Windows Compute Cluster Server 2003*</li>
</ul>
<h1 class="sectionHeading">Configuration Setup:</h1>
<p>To run distributed applications you must have an established  cluster, and the <a href="http://software.intel.com/en-us/articles/redistributable-libraries-for-the-intel-c-and-visual-fortran-composer-xe-for-windows/">Intel® Fortran redistributable package</a> must be installed on  all target nodes in that cluster.  Target nodes are cluster nodes that will be participating when your  application is run.</p>
<p>You must create a file containing the names of all target nodes in the  cluster; this is often called <i>machines.Windows</i>, but you can use any name.</p>
<p>Before running your application, you must register your Windows password  with the Intel® MPI Library (part of Intel Cluster Toolkit).  This needs to be done from an Intel Cluster Toolkit command window. It only needs to be done on the originating  node, and only needs to be done once, until your password changes.   The command will prompt you for your password:</p>
<blockquote><code>mpiexec -register</code></blockquote>
<p> </p>
<h1 class="sectionHeading">Validating your configuration:</h1>
<p>You must be able to successfully run an MPI job under Intel® MPI  in order for a distributed coarray application to run. At the end  of this document is an <a href="http://software.intel.com#helloworld">example "hello world" program</a>. It is <b>highly </b>recommended that you  successfully run this simple program on your cluster, across multiple nodes  before attempting to run a distributed coarray application.</p>
<p>Build the hello_mpi.f90 program in an Intel Cluster  Toolkit command window.</p>
<p>Run it with the command:</p>
<blockquote><code>mpiexec  –machinefile machines.Windows –n 4 hello_mpi.exe</code></blockquote>
<p>Confirm that it ran as expected.  The command line switch "-n 4" sets the number of images that are to be  executed; you can use any number you want.</p>
<h1 class="sectionHeading">Build your application:</h1>
<p>You are now ready to build your coarray Fortran application. The command is straightforward:</p>
<b>ifort /Qcoarray=distributed /Qcoarray-num-images=N myprogram.f90</b>
<p> </p>
<h1 class="sectionHeading">To run your program:</h1>
<p>You need to pay attention to some details, or your program  will only run on a single node.</p>
<p>The environment variable FOR_COARRAY_MACHINEFILE must be set  to the full file path of your <i>machines.Windows</i> file. This only needs to be done on the node where  you initially run your program.</p>
<p>The executable image of your program MUST be in a directory  that is shared between all nodes in the Windows cluster, or the other nodes  will not be able to run it. The full path of the executable, including the drive letter, must be valid on all cluster nodes.</p>
<p>Once these are set up, you simply have to run your program:</p>
<blockquote><code>myprogram.exe</code></blockquote>
<p>If there are command line inputs to your program, you can  add them to the command line, such as:</p>
<blockquote><code>myprogram.exe arg1 arg2</code></blockquote>
<h1 class="sectionHeading">More things to think about:</h1>
<p>Any input files to your program must be in a shared location  so that all images on all nodes can access them.</p>
<p>It is recommended that all output files be generated into a  shared location, but that may not be relevant to all programs.</p>
<a name="helloworld"></a>
<p><span class="sectionHeading">Example Hello World program to test MPI</span></p>
<code><br />
<pre>Program hello_mpi
   implicit none
   include "mpif.h"
   integer :: size, rank, ierr, len
   integer :: status
   call mpi_init(ierr)
   call mpi_comm_size(MPI_COMM_WORLD,size,ierr)
   call mpi_comm_rank(MPI_COMM_WORLD,rank,ierr)
   call MPI_GET_PROCESSOR_NAME(name, len,  ierr)
   write(6, "(*a,i3))") "MPI: size=", size,  "rank =", rank
   write(6,*) "host is", trim(name)
   call mpi_finalize(ierr)
   end program hello_mpi
   </pre>
</code> ]]></description>
      <link>http://software.intel.com/en-us/articles/building-and-running-a-distributed-coarray-application-on-windows/</link>
      <pubDate>Thu, 01 Sep 2011 21:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/building-and-running-a-distributed-coarray-application-on-windows/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/building-and-running-a-distributed-coarray-application-on-windows/</guid>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Which Intel® Math Kernel Library (Intel® MKL) libraries are &amp;#34;Redistributables&amp;#34;?</title>
      <description><![CDATA[ When you consider distributing Intel® MKL libraries through your products, you may choose the following options:<br /><br />1. Copy Intel MKL dlls (for Widnows*) from directory redist\(ia32\intel64)  to your destination application folder. For Linux and Mac OS* shared objects, .so files are located in redist\(ia32/intel64) directory.<br /><br />2. Create your own dll for your redistributions by using Intel MKL customdll linkage. <br /><br />3. Use Intel MKL static libraries from \lib directory.<br /><br />If you are using Intel MKL stand-alone product:<br /><br />Check the redist.txt file located in &lt;Intel MKL install directory&gt; \Documentation\en_US\mkl for more details <br /><br /><br />If you are using Intel MKL from previous Intel® Compiler Professional Edition version:<br /><br />Check the redist.txt file located in Intel MKL directory &lt;Intel MKL install directory&gt; \Documentation\en_US\mkl for more details.<br /><br /><br /><br /> ]]></description>
      <link>http://software.intel.com/en-us/articles/which-mkl-libraries-are-redistributables/</link>
      <pubDate>Wed, 25 May 2011 08:30:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/which-mkl-libraries-are-redistributables/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/which-mkl-libraries-are-redistributables/</guid>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® C++ Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® C++ Compiler for Windows* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Math Kernel Library Knowledge Base</category>
      <category>Intel® Parallel Composer Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Resolving link errors after installing Microsoft Visual Basic 2010 Express on a system where Intel(R) Visual Fortran Composer XE is installed</title>
      <description><![CDATA[ <br />
<div id="art_pre_template"><b>Problem : </b>I have been using Visual Fortran Composer XE for several weeks without problems. Recently, I installed Microsoft Visual Basic 2010 Express (free download), and now I get the LNK1104 error for uuid.lib. If I uninstall Visual Basic 2010 Express I do not get the link error. <br /><br /><br /><b>Environment : </b>Windows 7, Intel(R)64, Visual Studio 2008<br /><br /><br /><b>Root Cause : </b>Visual Basic 2010 Express will install a new Windows SDK 7.0 probably at c:\Program Files(x86)\Microsoft SDKs\Windows\v7.0A. This Windows SDK is incomplete, not containing the lib folder. It also updated registration key of HKEY_LOCAL_MACHINE-&gt;Microsoft-&gt;Microsoft SDKs-&gt;Windows-&gt;"CurrentInstallFolder" to reference to this new Windows SDK folder. The Visual Studio development environment will use this registration key to set "WindowsSdkDir" which is used in Visual Fortran library list.<br /><br /><br /><b>Resolution : </b>There are two possible solutions:<br />1.Download and install the complete <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=6b6c21d2-2006-4afa-9702-529fa782d63b">Microsoft Windows SDK</a> manually.<br /><br />2. Add your original SDK path to the Fortran project library path list:<br />E.g., my original SDK path before I install Visual Studio express can be got by opening a Fortran Composer XE command prompt, and run:<br />&gt; echo %WindowsSDKDir<br />C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\PlatformSDK<br /><br />In Visual Studio, select Tools &gt; Options &gt; Intel Visual Fortran &gt; Compilers.<br />- For IA32, add "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\PlatformSDK\Lib" to library list.<br />- For Intel 64, add "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\PlatformSDK\Lib\AMD64" to the library list.<br /></div> ]]></description>
      <link>http://software.intel.com/en-us/articles/lnk1104-cannot-open-file-uuidlib/</link>
      <pubDate>Fri, 04 Mar 2011 09:00:00 -0800</pubDate>
      <comments>http://software.intel.com/en-us/articles/lnk1104-cannot-open-file-uuidlib/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/lnk1104-cannot-open-file-uuidlib/</guid>
      <category>Intel Software Network communities</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
      <category>Intel Software Network communities</category>
    </item>
    <item>
      <title>What&amp;#39;s New with Intel® Fortran Composer XE 2011 Technical Presentation Questions and Answers</title>
      <description><![CDATA[ <p>Here are the questions and answers from the What's New with Intel® Fortran Composer XE 2011 webinar held December 14, 2010.</p>
<table border="0" width="690">
<tbody>
<tr>
<td  width="230">
<p><a href="http://software.intel.com/file/32861"><img alt="Click to download video" height="113" width="200" src="http://software.intel.com/sites/products/graphics/webinars/click-to-download.jpg" /></a></p>
</td>
<td  width="230">
<p><a href="http://software.intel.com/sites/products/graphics/webinars/FortranWebinar20101214.pdf"><img alt="View Presentation" height="113" width="200" src="http://software.intel.com/sites/products/graphics/webinars/View-Presentation.jpg" /></a></p>
</td>
<td  width="230">
<p><a href="http://software.intel.com/en-us/articles/intel-software-development-products-technical-presentations/"><img alt="Upcoming Presentations" height="113" width="200" src="http://software.intel.com/sites/products/graphics/webinars/upcoming-presentations.jpg" /></a></p>
</td>
</tr>
</tbody>
</table>
<p><!--   <br /><br />The recording of the presentation is available <a href="http://software.intel.com/file/32861" mce_href="http://software.intel.com/file/32861">here</a>.<br /><br />The presentation slides are available at the end of this article.<br /><br />For information on upcoming presentations go <a href="http://software.intel.com/en-us/articles/intel-software-development-products-technical-presentations/" mce_href="http://software.intel.com/en-us/articles/intel-software-development-products-technical-presentations/">here</a>.--></p>
<p><strong>Question and Answers:</strong><br /><br /> Q: If I install Intel® Fortran Composer XE, will my old version still be there?<br /><br />A: If by old version you mean 11.1, etc., then yes. The Visual Studio integration for Intel® Visual Fortran Composer XE 2011 gives you access to versions 11.0 and 11.1 through Tools &gt; Options &gt; Intel Visual Fortran &gt; Compilers. Note that there are separate entries for 32-bit and 64-bit development.<br /><br />On Linux* and Mac OS X*, the new installation will default to /opt/intel. Under this directory you will see your older 11.x compilers under the Compiler/11.1/xxx/ directories. The new Intel® Composer XE will have physical directory /opt/intel/composerxe-2011.12.1.122 (or similar): deciphering "12.1.122" is major version 12, Update 1, minor version 122. Along with this directory, you will see the new generic directory link "composerxe/" which links this generic path to the last version of the compiler installed on the system. These generic paths allow one to 'source /opt/intel/composerxe/bin/compilervars.sh intel64' and be assured that this path will exist and will link to the latest version compiler installed on the system. This provides a version-independent, default path to compilervars.sh for those who don't want to rewrite their makefiles or shell startup files for each new version installed on the system.<br /><br /><br /><br />Q: I have been using Fortran for scientific applications since the 1980s, but am not a professional programmer. What is the most efficient way to learn how to properly use new features?<br />Q: Do you provide some level of guidance to write a parallel processing program?<br />Q: Is there a refresher course available to bring me up to speed from earlier versions of Fortran to the latest version?<br /><br />A: Intel does not offer training on the Fortran language. There are several good books on the language which are more tutorial in nature. A list of books we have seen can be found in the compiler documentation under Introduction &gt; Related Information<br /><br /><br /><br />Q: Would it be possible to change the default N of images (Coarray Fortran) to 1, instead of the number of available threads?<br /><br />A: Yes. This can be specified as an option (-coarray-num-images=1 on linux or /Qcoarray-num-images:1 for Windows) when compiling the main program or, before the program is run, by setting the environment variable FOR_COARRAY_NUM_IMAGES to be the number of images you want. This can be more or fewer than the number of available threads.<br /><br /><br /><br />Q: Will there be extensions to Intel Fortran to permit programming GPUs using Fortran?<br /><br />A: Intel will be extending its Fortran and C++ compilers to encompass Intel's future "Many Integrated Core" products. We do not have plans at this time to support GPUs from other vendors.<br /><br /><br /><br />Q: What is the relationship between OpenMP and Coarrays?<br />Q: How did you implement coarrays? Does it use OpenMP?<br /><br />A: We use Intel® MPI Library as the underlying support for coarrays, both for shared memory and distributed memory configurations. Intel MPI Library is a highly optimized implementation of MPI that supports a wide variety of interconnect types.<br /><br />At present, we do not support the use of other parallel methods such as OpenMP or direct MPI calls in an application that uses coarrays. We recognize that customers may want to use multiple technologies and will be testing this in the future. You are welcome to try it yourself, but we don't promise it will work.<br /><br /><br /><br />Q: Is it possible to have Intel Visual Fortran in Windows without Microsoft Visual Studio*?<br /><br />A: Intel Visual Fortran relies on tools and libraries that come from Microsoft* Visual Studio*. If a system does not have a supported version of Visual Studio installed (2005, 2008 or 2010), we will install an environment based on Visual Studio 2008 Shell which supports Fortran development. You do not need to use the Visual Studio graphical development environment – you can still use the command line to build applications – but the only debugging environment supported is Visual Studio's.<br /><br /><br /><br />Q: Is this compatible with the Intel® Cluster Studio XE?<br /><br />A: Intel Cluster Studio XE 2011 includes Intel [Visual] Fortran Composer XE with full capabilities, including support for distributed memory coarrays.<br /><br /><br /><br />Q: Can we expect improvements to the debugging experience when moving to VS2010 and Intel Visual Fortran Composer XE?<br /><br />A: The debugging experience is improved continually, and we have resolved some known issues in Intel Visual Fortran Composer XE. A move to Visual Studio 2010, on its own, has no specific benefits here.<br /><br /><br /><br />Q: Does Intel® Parallel Studio support Intel Visual Fortran?<br /><br />A: Intel Parallel Studio is a C++ product, and its analysis tools do not support Fortran. Intel Parallel Studio XE includes both Intel C++ and Intel Fortran, as well as analysis tools that support both languages.<br /><br /><br /><br />Q: I have found polymorphic entities are not very useful w/o sourced allocation. Any idea when it might come out.?<br /><br />A: We can't say at this time when this feature will be added, but we are working on it.<br /><br /><br /><br />Q: Is there any possibility of getting the documentation in pdf files?<br />A: Not at this time.<br /><br /><br /><br />Q: Is Intel Visual Fortran compatible with Visual Studio 2005*?<br />A: Yes.<br /><br /><br /><br />Q: Who besides Intel is involved in developing the Fortran standards?<br /><br />A: You can view the membership of the US Fortran Standards committee at <a href="http://www.j3-fortran.org/">http://www.j3-fortran.org/</a>. Vendors who are members of this committee are Cray, IBM, Intel and Oracle (Sun). A representative from NAG is a committee member, but not formally representing NAG. A member of the gfortran development team regularly attends meetings as well.<br /><br /><br /><br />Q: Are there any plans to support Intellisense features in Fortran Composer XE?<br /><br />A: We have had requests for some Intellisense features. It would help us if you would let us know, either in the user forum or an Intel® Premier Support issue, which specific features you are interested in.<br /><br /><br /><br />Q: Are there any specific performance reasons for upgrading from 11.1 to the new version (Performance improvements - speed up execution that is)?<br />Q: Has performance been improved with v12 (assuming the same options are used)?<br /><br />A: Yes, the version 12 compiler (Intel Fortran Composer XE) has numerous optimization improvements, even using the same options. Of course, your specific results may vary. As an example, loops with expressions with mixed data types (single and double precision, for example) are candidates for vectorization in version 12.<br /><br /><br /><br />Q: How long is the Fortran standard going to be extended? Will there be an end to further standards? What is the long term strategy?<br /><br />A: The Fortran standards committee is currently working on interpretations to the newly-approved Fortran 2008 standard. A revision, currently referred to as Fortran 2013, is being planned, but it is unclear what the scope of that will be. A majority of the committee wants it to be a minor update along the lines of Fortran 95.<br /><br /><br /><br />Q: What are the plans for the editor enhancements? This has been asked a lot of times on the forum.<br />Q: Any plans for enhancements in Visual Studio (e.g., type viewer, module viewer), important for large projects<br />Q: Will there be regions so that we can hide program units that are not being developed?<br /><br />A: We are working on enhancements to the Visual Studio environment, but can't comment on specifics.<br /><br /><br /><br />Q: Does the new Intel Fortran Compiler support ubuntu 10.04?<br />A: Yes.<br /><br /><br /><br />Q: Are there any plans for supporting the simple idb -gui debugging tool on OSX. Xcode is nice, but it requires a bit of investment in time to use.<br /><br />A: We don't currently have plans for extending the idb debugger with a GUI interface at this time. There is a workaround to use the graphfical DDD front-end with Intel® Debugger. This workaround is documented in this forum post: <a href="http://software.intel.com/en-us/forums/showthread.php?t=60060">http://software.intel.com/en-us/forums/showthread.php?t=60060</a>.<br /><br /><br /><br />Q: When will the IMSL libraries be included<br />A: Expect to see these available in late January or perhaps early February.<br /><br /><br /><br />Q: When will defined type IO be added. I currently use namelists of temporary defined types.<br />A: We can't comment on a timeframe for this, but it will be there eventually.<br /><br /><br /><br />Q: What about coarrays for Mac OS X*?<br />A: We have no plans for that at this time.<br /><br /><br /><br />Q: Are there plans to revive Array Visualizer?<br />A: This is still being considered.<br /><br /><br /><br />Q: How many multithreading methodologies does Intel Fortran Composer XE have? and What are they?<br />A: In the product itself, the compiler supports:<br />• Automatic parallelization (/Qparallel or –parallel), along with Guided Auto Parallelization to help tune the application for parallelism.<br />• OpenMP<br /> • Coarrays<br />• DO CONCURRENT regions along with –parallel compiler option<br />Using external libraries, you can also use MPI or the operating system's threading calls.<br /><br /><br /><br />Q: Any support for the old source browser option?<br />A: Work is being done in this area, but we can't comment further at this time.<br /><br /><br /><br />Q: What is the difference between /fp:precise switch and the new improved switch? <br /><br />A: As explained in the presentation, the /fp (-fp-model) switch is very different from the new option to select among alternate math libraries. The new options allow you to choose a variant of the math library that is faster but less precise, or one that delivers the same results on all processor types. The fp-model can affect how expressions are evaluated, and can disable/enable certain optimizations. The new libraries merely replace the default libimf library which contains intrinsics such as exp, sin, cos, etc. So these new libraries should be considered for use along with the –fp-model settings. For example, for very strict numeric results that you'd like to replicate on multiple cpu architectures: -fp-model exact –fimf-arch-consistency=true could be used together to insure the best possible results and consistency across many cpu generations. See the –fimf-* options. This could be a topic we revisit in a separate dedicated webinar next year.</p> ]]></description>
      <link>http://software.intel.com/en-us/articles/whats-new-with-intel-fortran-composer-xe-2011/</link>
      <pubDate>Tue, 14 Dec 2010 00:00:00 -0800</pubDate>
      <comments>http://software.intel.com/en-us/articles/whats-new-with-intel-fortran-composer-xe-2011/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/whats-new-with-intel-fortran-composer-xe-2011/</guid>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Consistency of Floating-Point Results using the Intel® Compiler</title>
      <description><![CDATA[ <p><strong>Consistency of Floating-Point Results using the Intel® Compiler<br />or<br />Why doesn’t my application always give the same answer?</strong><br /><br />Dr. Martyn J. Corden<br />David Kreitzer<br /><br />Software Solutions Group<br />Intel Corporation<br /><br /><br /><strong>Introduction<br /></strong><br />Binary floating-point [FP] representations of most real numbers are inexact, and there is an inherent uncertainty in the result of most calculations involving floating-point numbers. Programmers of floating-point applications typically have the following objectives:<br />   • Accuracy<br />     o Produce results that are “close” to the result of the exact calculation<br />         - Usually measured in fractional error, or sometimes “units in the last place” (ulp).<br />   • Reproducibility<br />      o Produce consistent results:<br />         - From one run to the next;<br />         - From one set of build options to another;<br />         - From one compiler to another<br />         - From one processor or operating system to another<br />   • Performance<br />      o Produce an application that runs as fast as possible<br /><br />These objectives usually conflict! However, good programming practices and judicious use of compiler options allow you to control the tradeoffs.<br /><br />For example, it is sometimes useful to have a degree of reproducibility that goes beyond the inherent accuracy of a computation. Some software quality assurance tests may require close, or even bit-for-bit, agreement between results before and after software changes, even though the mathematical uncertainty in the result of the computation may be considerably larger. The right compiler options can deliver consistent, closely reproducible results while preserving good (though not optimal) performance.<br /><br />....................&lt;omitted&gt;........................<br /><br /><strong>Bottom Line</strong><br /><br />Compiler options let you control the tradeoffs between accuracy, reproducibility and performance. Use /fp:precise /fp:source (Windows) or –fp-model precise –fp-model source (Linux or Mac OS X) to improve the consistency and reproducibility of floating-point results while limiting the impact on performance. If reproducibility between different processor types of the same architecture is important, use also /Qimf-arch-consistency:true (Windows) or -fimf-arch-consistency=true (Linux or Mac OS X).<br /><br /><br /><strong>For the complete article, please open the attached PDF file.<br /></strong>You can't download and save it directly, but you may save it after having opened it.</p>
<br /><br />
<table cellpadding="5" cellspacing="0" rules="none" border="1">
<tbody>
<tr>
<th align="left" valign="middle" >Optimization Notice</th>
</tr>
<tr bgcolor="#ccecff">
<td>
<p>Intel's compilers may or may not optimize to the same degree for non-Intel microprocessors for optimizations that are not unique to Intel microprocessors. These optimizations include SSE2, SSE3, and SSSE3 instruction sets and other optimizations. Intel does not guarantee the availability, functionality, or effectiveness of any optimization on microprocessors not manufactured by Intel. Microprocessor-dependent optimizations in this product are intended for use with Intel microprocessors. Certain optimizations not specific to Intel microarchitecture are reserved for Intel microprocessors. Please refer to the applicable product User and Reference Guides for more information regarding the specific instruction sets covered by this notice.</p>
<p align="right">Notice revision #20110804</p>
</td>
</tr>
</tbody>
</table> ]]></description>
      <link>http://software.intel.com/en-us/articles/consistency-of-floating-point-results-using-the-intel-compiler/</link>
      <pubDate>Mon, 08 Nov 2010 00:00:00 -0800</pubDate>
      <comments>http://software.intel.com/en-us/articles/consistency-of-floating-point-results-using-the-intel-compiler/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/consistency-of-floating-point-results-using-the-intel-compiler/</guid>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® C++ Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® C++ Compiler for Windows* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Parallel Composer Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Intel Fortran Composer XE 2011 Release Notes</title>
      <description><![CDATA[ <p>This page provides the current Installation Guide and Release Notes for the Intel® Fortran Composer XE 2011 products. All files are in PDF format - <a target="_blank" href="http://www.adobe.com/go/EN_US-H-GET-READER">Adobe Reader* </a>(or compatible) required.</p>
<p>For version 11.1, please see <a href="http://software.intel.com/en-us/articles/intel-fortran-compiler-111-release-notes/">Intel Fortran Compiler 11.1 Release Notes</a></p>
<p>To get product updates, log in to the <a target="_blank" href="https://registrationcenter.intel.com/">Intel® Software Development Products Registration Center</a>.</p>
<p>For questions or technical support, visit <a target="_blank" href="http://software.intel.com/sites/support/">Intel® Software Developer Support</a></p>
<hr />
<p><b><br /></b></p>
<p><b>Update 8 - December 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/40410">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/40411">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/40409">English</a></li>
</ul>
<p><b>Update 7 - October 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/39195">English</a></li>
<li><a href="http://software.intel.com/file/39196">Japanese</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/39194">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/39192">English</a></li>
<li><a href="http://software.intel.com/file/39193">Japanese</a></li>
</ul>
<p><b>Update 6 - September 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/38270">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/38271">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/38272">English</a></li>
</ul>
<p><b>Update 5 - July 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/37910">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/37911">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/37912">English</a></li>
</ul>
<p><b>Update 4 - May 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/36129">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/36130">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/36131">English</a></li>
</ul>
<p><b>Update 3 - March 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/35033">English</a></li>
<li><a href="http://software.intel.com/file/35034">Japanese</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/35035">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/35036">English</a></li>
<li><a href="http://software.intel.com/file/35037">Japanese</a></li>
</ul>
<p><b>Update 2 - January 2011<br /></b>Intel ® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/33834">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/33835">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/33836">English</a></li>
</ul>
<p><b>Update 1 - December 2010<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/32672">English</a></li>
<li><a href="http://software.intel.com/file/32673">Japanese</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/32674">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/32675">English</a></li>
<li><a href="http://software.intel.com/file/32676">Japanese</a></li>
</ul>
<p><b>Initial Product Release - November 2010</b><br />Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/32098">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/31390">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/31391">English</a></li>
</ul> ]]></description>
      <link>http://software.intel.com/en-us/articles/intel-fortran-composer-xe-2011-release-notes/</link>
      <pubDate>Thu, 28 Oct 2010 00:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/intel-fortran-composer-xe-2011-release-notes/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/intel-fortran-composer-xe-2011-release-notes/</guid>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Using KMP_AFFINITY to create OpenMP thread mapping to OS proc IDs</title>
      <description><![CDATA[ <br /><br />The Intel compiler's OpenMP runtime library has ability to bind OpenMP threads to physical processing units.<br /><br />This article will show you how to use <b>KMP_AFFINITY</b> environment variable extensions from Intel compiler, the high-level affinity interface, to determine the machine topology and assigns OpenMP threads to the processors based upon their physical location in the machine.<br /><br /><br /><b>Example 1:<br /></b><br />You have one quad core system with Hyper-Threading Technology (HT Technology) enabled.  By default, Intel compiler OpenMP runtime libraries will create 8 threads, running freely on 8 logic processors provided by opreation system.<br /><br />Now you want the OpenMP thread ID 0 running exclusively on OS proc ID 0, and OpenMP thread ID 1 on OS proc ID 1 only.  All other OpenMP threads ID 2-7 could run on any OS proc ID betwen 2 to 7.<br /><br />To do this, we need add the modifier <i><b>proclist</b> </i>into Intel defined environment variable <b>KMP_AFFINITY</b> before the program is executed.<br /><br />Another modifier <b>verbose</b> tell the Intel OpenMP runtime libraries to prints out messages concerning the supported affinity, include information about the number of packages, number of cores in each package, number of thread contexts for each core, and OpenMP thread bindings to physical thread contexts.<br /><br />Here is commands we used in Windows:<br /><br />
<blockquote><br />&gt; icl /Qpenmp testcase.cpp<br /><br />&gt; set KMP_AFFINITY=verbose,granularity=fine,proclist=[0,1,{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7}],explicit<br /><br />&gt; testcase.exe<br />......<br />OMP: Info #204: KMP_AFFINITY: decoding cpuid leaf 11 APIC ids.<br />OMP: Info #202: KMP_AFFINITY: Affinity capable, using global cpuid leaf 11 info<br />OMP: Info #154: KMP_AFFINITY: Initial OS proc set respected: {0,1,2,3,4,5,6,7}<br />OMP: Info #156: KMP_AFFINITY: 8 available OS procs<br />OMP: Info #157: KMP_AFFINITY: Uniform topology<br />OMP: Info #179: KMP_AFFINITY: 1 packages x 4 cores/pkg x 2 threads/core (4 total cores)<br />OMP: Info #206: KMP_AFFINITY: OS proc to physical thread map:<br />OMP: Info #171: KMP_AFFINITY: OS proc 0 maps to package 0 core 0 thread 0<br />OMP: Info #171: KMP_AFFINITY: OS proc 1 maps to package 0 core 0 thread 1<br />OMP: Info #171: KMP_AFFINITY: OS proc 2 maps to package 0 core 1 thread 0<br />OMP: Info #171: KMP_AFFINITY: OS proc 3 maps to package 0 core 1 thread 1<br />OMP: Info #171: KMP_AFFINITY: OS proc 4 maps to package 0 core 2 thread 0<br />OMP: Info #171: KMP_AFFINITY: OS proc 5 maps to package 0 core 2 thread 1<br />OMP: Info #171: KMP_AFFINITY: OS proc 6 maps to package 0 core 3 thread 0<br />OMP: Info #171: KMP_AFFINITY: OS proc 7 maps to package 0 core 3 thread 1<br />OMP: Info #147: KMP_AFFINITY: Internal thread 0 bound to OS proc set {0}<br />OMP: Info #147: KMP_AFFINITY: Internal thread 1 bound to OS proc set {1}<br />OMP: Info #147: KMP_AFFINITY: Internal thread 2 bound to OS proc set {2,3,4,5,6,7}<br />OMP: Info #147: KMP_AFFINITY: Internal thread 3 bound to OS proc set {2,3,4,5,6,7}<br />OMP: Info #147: KMP_AFFINITY: Internal thread 4 bound to OS proc set {2,3,4,5,6,7}<br />OMP: Info #147: KMP_AFFINITY: Internal thread 5 bound to OS proc set {2,3,4,5,6,7}<br />OMP: Info #147: KMP_AFFINITY: Internal thread 7 bound to OS proc set {2,3,4,5,6,7}<br />OMP: Info #147: KMP_AFFINITY: Internal thread 6 bound to OS proc set {2,3,4,5,6,7}<br />......<br /><br /></blockquote>
<br />For Linux, you should use <b>export </b>command instead (with quotation mark)<br /><br />
<blockquote>]$ export KMP_AFFINITY="verbose,granularity=fine,proclist=[0,1,{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7},{2,3,4,5,6,7}],explicit"</blockquote>
<br /><br />From compiler output message, you will see that OS processors specified in the list are assigned to OpenMP threads, in order of OpenMP Global Thread IDs.  If more OpenMP threads are created than there are elements in the list, then the assignment occurs modulo the size of the list. That is, OpenMP Global Thread ID n is bound to list element n mod &lt;list_size&gt;.<br /><br />Remember, information about binding OpenMP threads to physical thread contexts is indirectly shown in the form of the mappings between hardware thread contexts and the operating system (OS) processor (proc) IDs. The affinity mask for each OpenMP thread is printed as a set of OS processor IDs.<br /><br /><br />More information is discussed on "Thread Affinity Interface (Linux* and Windows*)" section in Intel C/C++ compiler and Intel Fortran compiler user and reference guides.<br /><br /> ]]></description>
      <link>http://software.intel.com/en-us/articles/using-kmp_affinity-to-create-openmp-thread-mapping-to-os-proc-ids/</link>
      <pubDate>Sun, 24 Oct 2010 21:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/using-kmp_affinity-to-create-openmp-thread-mapping-to-os-proc-ids/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/using-kmp_affinity-to-create-openmp-thread-mapping-to-os-proc-ids/</guid>
      <category>Intel® Compilers</category>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® C++ Compiler for Windows* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Intel® Composer XE 2011 Checksums</title>
      <description><![CDATA[ The following checksums are created using the cksum utility which is based on the ISO/IEC 8802-3:1996 standard (Ethernet). For more information please see one of the following web sites:<br /><br /><a target="_blank" href="http://en.wikipedia.org/wiki/Cksum">http://en.wikipedia.org/wiki/Cksum<br /></a><a target="_blank" href="http://www.opengroup.org/onlinepubs/009695399/utilities/cksum.html">http://www.opengroup.org/onlinepubs/009695399/utilities/cksum.html</a><br /><br />If you have any questions about the issues discussed in this report, please post on the user forums, <a href="http://software.intel.com/en-us/forums ">http://software.intel.com/en-us/forums </a>or submit an issue to Intel Premier Support, <a target="_blank" href="https://premier.intel.com">https://premier.intel.com</a>. <br /><br />Checksums for the Intel® Professional Edition Compilers 11.1 can be found <a href="http://software.intel.com/en-us/articles/intel-professional-edition-compilers-111-checksums/">here</a>.<br />
<div id="divHtmlEdMain" ><br /><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 8 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3452755693</td>
<td width="125">1328029303</td>
<td>L_CCOMPXE_2011.8.273.TGZ</td>
</tr>
<tr>
<td width="125">1664613833</td>
<td width="125">706543446</td>
<td>L_CCOMPXE_IA32_2011.8.273.TGZ</td>
</tr>
<tr>
<td width="125">1922100502</td>
<td width="125">792721068</td>
<td>L_CCOMPXE_INTEL64_2011.8.273.TGZ</td>
</tr>
<tr>
<td width="125">3980518005</td>
<td width="125">10805037</td>
<td>L_CCOMPXE_2011.8.273_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">3532852677</td>
<td width="125">93189435</td>
<td>L_GEN_IPP_7.0.6.273.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 8 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1912189551</td>
<td width="125">664473908</td>
<td>L_FCOMPXE_2011.8.273.TGZ</td>
</tr>
<tr>
<td width="125">3598667406</td>
<td width="125">360716665</td>
<td>L_FCOMPXE_IA32_2011.8.273.TGZ</td>
</tr>
<tr>
<td width="125">3054698074</td>
<td width="125">414462130</td>
<td>L_FCOMPXE_INTEL64_2011.8.273.TGZ</td>
</tr>
<tr>
<td width="125">737707631</td>
<td width="125">20584588</td>
<td>L_FCOMPXE_2011.8.273_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 8 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2662884859</td>
<td width="125">892133904</td>
<td>W_CCOMPXE_2011.8.278.EXE</td>
</tr>
<tr>
<td width="125">3611583349</td>
<td width="125">530234728</td>
<td>W_CCOMPXE_IA32_2011.8.278.EXE</td>
</tr>
<tr>
<td width="125">940184909</td>
<td width="125">616983368</td>
<td>W_CCOMPXE_INTEL64_2011.8.278.EXE</td>
</tr>
<tr>
<td width="125">375717236</td>
<td width="125">12503498</td>
<td>W_CCOMPXE_REDIST_MSI_2011.8.278.ZIP</td>
</tr>
<tr>
<td width="125">3691889617</td>
<td width="125">49853622</td>
<td>W_CCOMPXE_GEN_IPP_7.0.6.278.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 8 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">626381966</td>
<td width="125">913209848</td>
<td>W_FCOMPXE_2011.8.278.EXE</td>
</tr>
<tr>
<td width="125">2047515268</td>
<td width="125">927221736</td>
<td>W_FCOMPXE_ALL_JP_2011.8.278.EXE</td>
</tr>
<tr>
<td width="125">2224856071</td>
<td width="125">622960696</td>
<td>W_FCOMPXE_NOVSSHELL_2011.8.278.EXE</td>
</tr>
<tr>
<td width="125">3088232575</td>
<td width="125">374092888</td>
<td>W_FCOMPXE_IA32_2011.8.278.EXE</td>
</tr>
<tr>
<td width="125">3069482429</td>
<td width="125">466452680</td>
<td>W_FCOMPXE_INTEL64_2011.8.278.EXE</td>
</tr>
<tr>
<td width="125">3067984775</td>
<td width="125">23927144</td>
<td>W_FCOMPXE_REDIST_MSI_2011.8.278.ZIP</td>
</tr>
<tr>
<td width="125">2829343584</td>
<td width="125">117269760</td>
<td>W_FCOMPXE_IMSL_2011.0.021.EXE</td>
</tr>
<tr>
<td width="125">3799822416</td>
<td width="125">68716072</td>
<td>W_FCOMPXE_IMSL_IA32_2011.0.021.EXE</td>
</tr>
<tr>
<td width="125">3960196427</td>
<td width="125">68481240</td>
<td>W_FCOMPXE_IMSL_INTEL64_2011.0.021.EXE</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Mac OS* X Update 8 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3474675210</td>
<td width="125">707049185</td>
<td>M_CCOMPXE_2011.8.269.DMG</td>
</tr>
<tr>
<td width="125">3814055007</td>
<td width="125">9740504</td>
<td>M_CCOMPXE_REDIST_2011.8.269.DMG</td>
</tr>
<tr>
<td width="125">3895423890</td>
<td width="125">73435778</td>
<td>M_CCOMPXE_GEN_IPP_2011.8.269.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Mac OS* X Update 8 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1793498028</td>
<td width="125">395039628</td>
<td>M_FCOMPXE_2011.8.269.DMG</td>
</tr>
<tr>
<td width="125">3498845898</td>
<td width="125">11342869</td>
<td>M_FCOMPXE_REDIST_2011.8.269.DMG</td>
</tr>
</tbody>
</table>
<div id="divHtmlEdMain" ><br /><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 7 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2965493760</td>
<td width="125">1309119563</td>
<td>L_CCOMPXE_2011.7.256.TGZ</td>
</tr>
<tr>
<td width="125">214167517</td>
<td width="125">696883302</td>
<td>L_CCOMPXE_IA32_2011.7.256.TGZ</td>
</tr>
<tr>
<td width="125">414039700</td>
<td width="125">784126837</td>
<td>L_CCOMPXE_INTEL64_2011.7.256.TGZ</td>
</tr>
<tr>
<td width="125">233156504</td>
<td width="125">10748774</td>
<td>L_CCOMPXE_2011.7.256_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">4110252954</td>
<td width="125">93187001</td>
<td>L_GEN_IPP_7.0.5.256.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 7 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2202853811</td>
<td width="125">638601683</td>
<td>L_FCOMPXE_2011.7.256.TGZ</td>
</tr>
<tr>
<td width="125">2857599983</td>
<td width="125">345713537</td>
<td>L_FCOMPXE_IA32_2011.7.256.TGZ</td>
</tr>
<tr>
<td width="125">3258937415</td>
<td width="125">400626537</td>
<td>L_FCOMPXE_INTEL64_2011.7.256.TGZ</td>
</tr>
<tr>
<td width="125">991539029</td>
<td width="125">20532445</td>
<td>L_FCOMPXE_2011.7.256_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 7 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">243242044</td>
<td width="125">879025664</td>
<td>W_CCOMPXE_2011.7.258.EXE</td>
</tr>
<tr>
<td width="125">3309672184</td>
<td width="125">525911288</td>
<td>W_CCOMPXE_IA32_2011.7.258.EXE</td>
</tr>
<tr>
<td width="125">3425105656</td>
<td width="125">608003400</td>
<td>W_CCOMPXE_INTEL64_2011.7.258.EXE</td>
</tr>
<tr>
<td width="125">3143084745</td>
<td width="125">13700937</td>
<td>W_CCOMPXE_REDIST_MSI_2011.7.258.ZIP</td>
</tr>
<tr>
<td width="125">3190949066</td>
<td width="125">49880367</td>
<td>W_CCOMPXE_GEN_IPP_7.0.5.258.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 7 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1825913560</td>
<td width="125">899752136</td>
<td>W_FCOMPXE_2011.7.258.EXE</td>
</tr>
<tr>
<td width="125">3991728239</td>
<td width="125">913764032</td>
<td>W_FCOMPXE_ALL_JP_2011.7.258.EXE</td>
</tr>
<tr>
<td width="125">510783892</td>
<td width="125">609499848</td>
<td>W_FCOMPXE_NOVSSHELL_2011.7.258.EXE</td>
</tr>
<tr>
<td width="125">508624589</td>
<td width="125">369326928</td>
<td>W_FCOMPXE_IA32_2011.7.258.EXE</td>
</tr>
<tr>
<td width="125">3127911111</td>
<td width="125">457019544</td>
<td>W_FCOMPXE_INTEL64_2011.7.258.EXE</td>
</tr>
<tr>
<td width="125">2447470474</td>
<td width="125">25088882</td>
<td>W_FCOMPXE_REDIST_MSI_2011.7.258.ZIP</td>
</tr>
<tr>
<td width="125">2829343584</td>
<td width="125">117269760</td>
<td>W_FCOMPXE_IMSL_2011.0.021.EXE</td>
</tr>
<tr>
<td width="125">3799822416</td>
<td width="125">68716072</td>
<td>W_FCOMPXE_IMSL_IA32_2011.0.021.EXE</td>
</tr>
<tr>
<td width="125">3960196427</td>
<td width="125">68481240</td>
<td>W_FCOMPXE_IMSL_INTEL64_2011.0.021.EXE</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Mac OS* X Update 7 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">4192212608</td>
<td width="125">655425298</td>
<td>M_CCOMPXE_2011.7.246.DMG</td>
</tr>
<tr>
<td width="125">3453527509</td>
<td width="125">9672209</td>
<td>M_CCOMPXE_REDIST_2011.7.246.DMG</td>
</tr>
<tr>
<td width="125">3925257563</td>
<td width="125">73410775</td>
<td>M_CCOMPXE_GEN_IPP_2011.7.246.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Mac OS* X Update 7 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1789098758</td>
<td width="125">343854784</td>
<td>M_FCOMPXE_2011.7.246.DMG</td>
</tr>
<tr>
<td width="125">1912146607</td>
<td width="125">11323421</td>
<td>M_FCOMPXE_REDIST_2011.7.246.DMG</td>
</tr>
</tbody>
</table>
<div id="divHtmlEdMain" ><br /><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 6 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1220677855</td>
<td width="125">1249173787</td>
<td>L_CCOMPXE_2011.6.233.TGZ</td>
</tr>
<tr>
<td width="125">3778822865</td>
<td width="125">639973731</td>
<td>L_CCOMPXE_IA32_2011.6.233.TGZ</td>
</tr>
<tr>
<td width="125">2714660683</td>
<td width="125">725011519</td>
<td>L_CCOMPXE_INTEL64_2011.6.233.TGZ</td>
</tr>
<tr>
<td width="125">2821192922</td>
<td width="125">10435871</td>
<td>L_CCOMPXE_2011.6.233_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">3561504853</td>
<td width="125">93189203</td>
<td>L_GEN_IPP_7.0.5.233.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 6 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">44885016</td>
<td width="125">603470889</td>
<td>L_FCOMPXE_2011.6.233.TGZ</td>
</tr>
<tr>
<td width="125">3170152765</td>
<td width="125">313629568</td>
<td>L_FCOMPXE_IA32_2011.6.233.TGZ</td>
</tr>
<tr>
<td width="125">1477721422</td>
<td width="125">366334211</td>
<td>L_FCOMPXE_INTEL64_2011.6.233.TGZ</td>
</tr>
<tr>
<td width="125">1630608339</td>
<td width="125">20223868</td>
<td>L_FCOMPXE_2011.6.233_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 6 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">4216380578</td>
<td width="125">779085328</td>
<td>W_CCOMPXE_2011.6.233.EXE</td>
</tr>
<tr>
<td width="125">40803482</td>
<td width="125">430507264</td>
<td>W_CCOMPXE_IA32_2011.6.233.EXE</td>
</tr>
<tr>
<td width="125">833854017</td>
<td width="125">513598232</td>
<td>W_CCOMPXE_INTEL64_2011.6.233.EXE</td>
</tr>
<tr>
<td width="125">3587057366</td>
<td width="125">12407923</td>
<td>W_CCOMPXE_REDIST_MSI_2011.6.233.ZIP</td>
</tr>
<tr>
<td width="125">2283994366</td>
<td width="125">49861477</td>
<td>W_CCOMPXE_GEN_IPP_7.0.5.233.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 6 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3270654674</td>
<td width="125">770295488</td>
<td>W_FCOMPXE_2011.6.233.EXE</td>
</tr>
<tr>
<td width="125">3647408105</td>
<td width="125">510791208</td>
<td>W_FCOMPXE_NOVSSHELL_2011.6.233.EXE</td>
</tr>
<tr>
<td width="125">3436986340</td>
<td width="125">275078712</td>
<td>W_FCOMPXE_IA32_2011.6.233.EXE</td>
</tr>
<tr>
<td width="125">2431723592</td>
<td width="125">363824240</td>
<td>W_FCOMPXE_INTEL64_2011.6.233.EXE</td>
</tr>
<tr>
<td width="125">4021285003</td>
<td width="125">23808334</td>
<td>W_FCOMPXE_REDIST_MSI_2011.6.233.ZIP</td>
</tr>
<tr>
<td width="125">2829343584</td>
<td width="125">117269760</td>
<td>W_FCOMPXE_IMSL_2011.0.021.EXE</td>
</tr>
<tr>
<td width="125">3799822416</td>
<td width="125">68716072</td>
<td>W_FCOMPXE_IMSL_IA32_2011.0.021.EXE</td>
</tr>
<tr>
<td width="125">3960196427</td>
<td width="125">68481240</td>
<td>W_FCOMPXE_IMSL_INTEL64_2011.0.021.EXE</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Mac OS* X Update 6 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2334630714</td>
<td width="125">648712480</td>
<td>M_CCOMPXE_2011.6.038.DMG</td>
</tr>
<tr>
<td width="125">1436310950</td>
<td width="125">9601592</td>
<td>M_CCOMPXE_REDIST_2011.6.038.DMG</td>
</tr>
<tr>
<td width="125">3519352381</td>
<td width="125">73409063</td>
<td>M_CCOMPXE_GEN_IPP_2011.6.038.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Mac OS* X Update 6 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3267687287</td>
<td width="125">337339792</td>
<td>M_FCOMPXE_2011.6.038.DMG</td>
</tr>
<tr>
<td width="125">1025226976</td>
<td width="125">11262115</td>
<td>M_FCOMPXE_REDIST_2011.6.038.DMG</td>
</tr>
</tbody>
</table>
<div id="divHtmlEdMain" ><br />
<div id="divHtmlEdMain" ><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 5 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">4212113135</td>
<td width="125">1247743421</td>
<td>L_CCOMPXE_2011.5.220.TGZ</td>
</tr>
<tr>
<td width="125">4000121893</td>
<td width="125">635210578</td>
<td>L_CCOMPXE_IA32_2011.5.220.TGZ</td>
</tr>
<tr>
<td width="125">699318970</td>
<td width="125">720529905</td>
<td>L_CCOMPXE_INTEL64_2011.5.220.TGZ</td>
</tr>
<tr>
<td width="125">513686145</td>
<td width="125">9878388</td>
<td>L_CCOMPXE_2011.5.220_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">4071779103</td>
<td width="125">93007731</td>
<td>L_GEN_IPP_7.0.4.220.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 5 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2144300841</td>
<td width="125">609409405</td>
<td>L_FCOMPXE_2011.5.220.TGZ</td>
</tr>
<tr>
<td width="125">3633952404</td>
<td width="125">314181251</td>
<td>L_FCOMPXE_IA32_2011.5.220.TGZ</td>
</tr>
<tr>
<td width="125">2125097673</td>
<td width="125">367675145</td>
<td>L_FCOMPXE_INTEL64_2011.5.220.TGZ</td>
</tr>
<tr>
<td width="125">1393932642</td>
<td width="125">19690020</td>
<td>L_FCOMPXE_2011.5.220_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 5 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">5404439</td>
<td width="125">778855104</td>
<td>W_CCOMPXE_2011.5.221.EXE</td>
</tr>
<tr>
<td width="125">3063620156</td>
<td width="125">424123312</td>
<td>W_CCOMPXE_IA32_2011.5.221.EXE</td>
</tr>
<tr>
<td width="125">1198280674</td>
<td width="125">517465120</td>
<td>W_CCOMPXE_INTEL64_2011.5.221.EXE</td>
</tr>
<tr>
<td width="125">7428034</td>
<td width="125">11519337</td>
<td>W_CCOMPXE_REDIST_MSI_2011.5.221.ZIP</td>
</tr>
<tr>
<td width="125">1000544797</td>
<td width="125">16872416</td>
<td>W_CCOMPXE_REDIST_MSM_2011.5.221.ZIP</td>
</tr>
<tr>
<td width="125">1733336996</td>
<td width="125">49892637</td>
<td>W_CCOMPXE_GEN_IPP_7.0.4.221.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 5 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1021125093</td>
<td width="125">870089208</td>
<td>W_FCOMPXE_2011.5.221.EXE</td>
</tr>
<tr>
<td width="125">3199725305</td>
<td width="125">503497456</td>
<td>W_FCOMPXE_NOVSSHELL_2011.5.221.EXE</td>
</tr>
<tr>
<td width="125">1617222612</td>
<td width="125">265851512</td>
<td>W_FCOMPXE_IA32_2011.5.221.EXE</td>
</tr>
<tr>
<td width="125">175781168</td>
<td width="125">365441416</td>
<td>W_FCOMPXE_INTEL64_2011.5.221.EXE</td>
</tr>
<tr>
<td width="125">3802176791</td>
<td width="125">22877448</td>
<td>W_FCOMPXE_REDIST_MSI_2011.5.221.ZIP</td>
</tr>
<tr>
<td width="125">1036476225</td>
<td width="125">34435250</td>
<td>W_FCOMPXE_REDIST_MSM_2011.5.221.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Mac OS* X Update 5 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">638434366</td>
<td width="125">638180627</td>
<td>M_CCOMPXE_2011.5.209.DMG</td>
</tr>
<tr>
<td width="125">3969019570</td>
<td width="125">8695673</td>
<td>M_CCOMPXE_REDIST_2011.5.209.DMG</td>
</tr>
<tr>
<td width="125">1781440301</td>
<td width="125">73979194</td>
<td>M_CCOMPXE_GEN_IPP_2011.5.209.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Mac OS* X Update 5 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2173526930</td>
<td width="125">327448127</td>
<td>M_FCOMPXE_2011.5.209.DMG</td>
</tr>
<tr>
<td width="125">3592596220</td>
<td width="125">10580337</td>
<td>M_FCOMPXE_REDIST_2011.5.209.DMG</td>
</tr>
</tbody>
</table>
<div id="divHtmlEdMain" ><br /><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 4 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1525871274</td>
<td width="125">1242353135</td>
<td>L_CCOMPXE_2011.4.191.TGZ</td>
</tr>
<tr>
<td width="125">3454173128</td>
<td width="125">633345658</td>
<td>L_CCOMPXE_IA32_2011.4.191.TGZ</td>
</tr>
<tr>
<td width="125">2356196796</td>
<td width="125">717146141</td>
<td>L_CCOMPXE_INTEL64_2011.4.191.TGZ</td>
</tr>
<tr>
<td width="125">1175575785</td>
<td width="125">9900020</td>
<td>L_CCOMPXE_2011.4.191_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">3206646537</td>
<td width="125">93008765</td>
<td>L_GEN_IPP_7.0.4.191.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 4 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2769405097</td>
<td width="125">603950713</td>
<td>L_FCOMPXE_2011.4.191.TGZ</td>
</tr>
<tr>
<td width="125">575774926</td>
<td width="125">312227113</td>
<td>L_FCOMPXE_IA32_2011.4.191.TGZ</td>
</tr>
<tr>
<td width="125">1055964475</td>
<td width="125">364211705</td>
<td>L_FCOMPXE_INTEL64_2011.4.191.TGZ</td>
</tr>
<tr>
<td width="125">2397748013</td>
<td width="125">19711000</td>
<td>L_FCOMPXE_2011.4.191_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 4 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3468480210</td>
<td width="125">775725440</td>
<td>W_CCOMPXE_2011.4.196.EXE</td>
</tr>
<tr>
<td width="125">4259357980</td>
<td width="125">422743744</td>
<td>W_CCOMPXE_IA32_2011.4.196.EXE</td>
</tr>
<tr>
<td width="125">593172535</td>
<td width="125">515145744</td>
<td>W_CCOMPXE_INTEL64_2011.4.196.EXE</td>
</tr>
<tr>
<td width="125">3061871002</td>
<td width="125">11480336</td>
<td>W_CCOMPXE_REDIST_MSI_2011.4.196.ZIP</td>
</tr>
<tr>
<td width="125">3476842084</td>
<td width="125">16841281</td>
<td>W_CCOMPXE_REDIST_MSM_2011.4.196.ZIP</td>
</tr>
<tr>
<td width="125">1655975003</td>
<td width="125">49874308</td>
<td>W_CCOMPXE_GEN_IPP_7.0.4.196.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 4 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">4054073913</td>
<td width="125">865506584</td>
<td>W_FCOMPXE_2011.4.196.EXE</td>
</tr>
<tr>
<td width="125">1139600018</td>
<td width="125">498914856</td>
<td>W_FCOMPXE_NOVSSHELL_2011.4.196.EXE</td>
</tr>
<tr>
<td width="125">1246374802</td>
<td width="125">264276200</td>
<td>W_FCOMPXE_IA32_2011.4.196.EXE</td>
</tr>
<tr>
<td width="125">3723841977</td>
<td width="125">361913504</td>
<td>W_FCOMPXE_INTEL64_2011.4.196.EXE</td>
</tr>
<tr>
<td width="125">230699223</td>
<td width="125">22945862</td>
<td>W_FCOMPXE_REDIST_MSI_2011.4.196.ZIP</td>
</tr>
<tr>
<td width="125">936565886</td>
<td width="125">34396274</td>
<td>W_FCOMPXE_REDIST_MSM_2011.4.196.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Mac OS* X Update 4 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">198275514</td>
<td width="125">634529290</td>
<td>M_CCOMPXE_2011.4.184.DMG</td>
</tr>
<tr>
<td width="125">83366448</td>
<td width="125">8640264</td>
<td>M_CCOMPXE_REDIST_2011.4.184.DMG</td>
</tr>
<tr>
<td width="125">1197831175</td>
<td width="125">73989277</td>
<td>M_CCOMPXE_GEN_IPP_2011.4.184.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Mac OS* X Update 4 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3428275857</td>
<td width="125">323572028</td>
<td>M_FCOMPXE_2011.4.184.DMG</td>
</tr>
<tr>
<td width="125">934355760</td>
<td width="125">10491245</td>
<td>M_FCOMPXE_REDIST_2011.4.184.DMG</td>
</tr>
</tbody>
</table>
<div id="divHtmlEdMain" ><br /><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 3 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2279028007</td>
<td width="125">1242105907</td>
<td>L_CCOMPXE_2011.3.174.TGZ</td>
</tr>
<tr>
<td width="125">1207603164</td>
<td width="125">633322198</td>
<td>L_CCOMPXE_IA32_2011.3.174.TGZ</td>
</tr>
<tr>
<td width="125">1436947020</td>
<td width="125">716892023</td>
<td>L_CCOMPXE_INTEL64_2011.3.174.TGZ</td>
</tr>
<tr>
<td width="125">4184072342</td>
<td width="125">9794715</td>
<td>L_CCOMPXE_2011.3.174_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">2150929982</td>
<td width="125">93006639</td>
<td>L_GEN_IPP_7.0.3.174.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 3 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3195613080</td>
<td width="125">602221871</td>
<td>L_FCOMPXE_2011.3.174.TGZ</td>
</tr>
<tr>
<td width="125">4188704828</td>
<td width="125">311397130</td>
<td>L_FCOMPXE_IA32_2011.3.174.TGZ</td>
</tr>
<tr>
<td width="125">1436607083</td>
<td width="125">363184721</td>
<td>L_FCOMPXE_INTEL64_2011.3.174.TGZ</td>
</tr>
<tr>
<td width="125">81767763</td>
<td width="125">19604184</td>
<td>L_FCOMPXE_2011.3.174_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 3 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">20944023</td>
<td width="125">774257584</td>
<td>W_CCOMPXE_2011.3.175.EXE</td>
</tr>
<tr>
<td width="125">1847500102</td>
<td width="125">422201984</td>
<td>W_CCOMPXE_IA32_2011.3.175.EXE</td>
</tr>
<tr>
<td width="125">1099915848</td>
<td width="125">514158208</td>
<td>W_CCOMPXE_INTEL64_2011.3.175.EXE</td>
</tr>
<tr>
<td width="125">447925265</td>
<td width="125">11430318</td>
<td>W_CCOMPXE_REDIST_MSI_2011.3.175.ZIP</td>
</tr>
<tr>
<td width="125">3421295399</td>
<td width="125">16771944</td>
<td>W_CCOMPXE_REDIST_MSM_2011.3.175.ZIP</td>
</tr>
<tr>
<td width="125">1877139163</td>
<td width="125">49863367</td>
<td>W_CCOMPXE_GEN_IPP_7.0.3.175.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 3 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">232813864</td>
<td width="125">863482600</td>
<td>W_FCOMPXE_2011.3.175.EXE</td>
</tr>
<tr>
<td width="125">4148033724</td>
<td width="125">496890864</td>
<td>W_FCOMPXE_NOVSSHELL_2011.3.175.EXE</td>
</tr>
<tr>
<td width="125">2749047415</td>
<td width="125">263346720</td>
<td>W_FCOMPXE_IA32_2011.3.175.EXE</td>
</tr>
<tr>
<td width="125">2501371479</td>
<td width="125">360430840</td>
<td>W_FCOMPXE_INTEL64_2011.3.175.EXE</td>
</tr>
<tr>
<td width="125">4063481910</td>
<td width="125">22826432</td>
<td>W_FCOMPXE_REDIST_MSI_2011.3.175.ZIP</td>
</tr>
<tr>
<td width="125">2550036339</td>
<td width="125">34323171</td>
<td>W_FCOMPXE_REDIST_MSM_2011.3.175.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Mac OS* X Update 3 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3105640832</td>
<td width="125">634478512</td>
<td>M_CCOMPXE_2011.3.167.DMG</td>
</tr>
<tr>
<td width="125">2705042810</td>
<td width="125">8551731</td>
<td>M_CCOMPXE_REDIST_2011.3.167.DMG</td>
</tr>
<tr>
<td width="125">1506721499</td>
<td width="125">73992542</td>
<td>M_CCOMPXE_GEN_IPP_2011.3.167.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Mac OS* X Update 3 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3301332760</td>
<td width="125">323133016</td>
<td>M_FCOMPXE_2011.3.167.DMG</td>
</tr>
<tr>
<td width="125">2292508498</td>
<td width="125">10406313</td>
<td>M_FCOMPXE_REDIST_2011.3.167.DMG</td>
</tr>
</tbody>
</table>
<div id="divHtmlEdMain" ><br /><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 3, Japanese Edition </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1303753843</td>
<td width="125">1289256440</td>
<td>L_CCOMPXE_2011.3.175.TGZ</td>
</tr>
<tr>
<td width="125">2342594367</td>
<td width="125">680229934</td>
<td>L_CCOMPXE_IA32_2011.3.175.TGZ</td>
</tr>
<tr>
<td width="125">3069286784</td>
<td width="125">763771112</td>
<td>L_CCOMPXE_INTEL64_2011.3.175.TGZ</td>
</tr>
<tr>
<td width="125">258959462</td>
<td width="125">9802315</td>
<td>L_CCOMPXE_2011.3.175_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">2464978191</td>
<td width="125">93005220</td>
<td>L_GEN_IPP_7.0.3.175.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 3, Japanese Edition </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3046093660</td>
<td width="125">624640082</td>
<td>L_FCOMPXE_2011.3.175.TGZ</td>
</tr>
<tr>
<td width="125">3523201305</td>
<td width="125">333549158</td>
<td>L_FCOMPXE_IA32_2011.3.175.TGZ</td>
</tr>
<tr>
<td width="125">1181168605</td>
<td width="125">385324054</td>
<td>L_FCOMPXE_INTEL64_2011.3.175.TGZ</td>
</tr>
<tr>
<td width="125">1167661009</td>
<td width="125">19610926</td>
<td>L_FCOMPXE_2011.3.175_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 3, Japanese Edition </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1079799636</td>
<td width="125">872838160</td>
<td>W_CCOMPXE_2011.3.176.EXE</td>
</tr>
<tr>
<td width="125">4150165562</td>
<td width="125">518255728</td>
<td>W_CCOMPXE_IA32_2011.3.176.EXE</td>
</tr>
<tr>
<td width="125">107595456</td>
<td width="125">611664792</td>
<td>W_CCOMPXE_INTEL64_2011.3.176.EXE</td>
</tr>
<tr>
<td width="125">2650861957</td>
<td width="125">11461042</td>
<td>W_CCOMPXE_REDIST_MSI_2011.3.176.ZIP</td>
</tr>
<tr>
<td width="125">3633308288</td>
<td width="125">16786573</td>
<td>W_CCOMPXE_REDIST_MSM_2011.3.176.ZIP</td>
</tr>
<tr>
<td width="125">2114561040</td>
<td width="125">49863331</td>
<td>W_CCOMPXE_GEN_IPP_7.0.3.176.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 3, Japanese Edition </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2080109675</td>
<td width="125">962096600</td>
<td>W_FCOMPXE_2011.3.176.EXE</td>
</tr>
<tr>
<td width="125">3096465405</td>
<td width="125">1036409000</td>
<td>W_FCOMPXE_ALL_JP_2011.3.176.EXE</td>
</tr>
<tr>
<td width="125">514944316</td>
<td width="125">595499328</td>
<td>W_FCOMPXE_NOVSSHELL_2011.3.176.EXE</td>
</tr>
<tr>
<td width="125">2903092260</td>
<td width="125">360834400</td>
<td>W_FCOMPXE_IA32_2011.3.176.EXE</td>
</tr>
<tr>
<td width="125">1085788717</td>
<td width="125">458000960</td>
<td>W_FCOMPXE_INTEL64_2011.3.176.EXE</td>
</tr>
<tr>
<td width="125">1210901533</td>
<td width="125">22872224</td>
<td>W_FCOMPXE_REDIST_MSI_2011.3.176.ZIP</td>
</tr>
<tr>
<td width="125">2350932098</td>
<td width="125">34384871</td>
<td>W_FCOMPXE_REDIST_MSM_2011.3.176.ZIP</td>
</tr>
</tbody>
</table>
<div id="divHtmlEdMain" ><br /><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 2 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">378898594</td>
<td width="125">1234430253</td>
<td>L_CCOMPXE_2011.2.137.TGZ</td>
</tr>
<tr>
<td width="125">1279962260</td>
<td width="125">626995277</td>
<td>L_CCOMPXE_IA32_2011.2.137.TGZ</td>
</tr>
<tr>
<td width="125">2763987051</td>
<td width="125">710135470</td>
<td>L_CCOMPXE_INTEL64_2011.2.137.TGZ</td>
</tr>
<tr>
<td width="125">3743816460</td>
<td width="125">9784531</td>
<td>L_CCOMPXE_2011.2.137_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">3930620172</td>
<td width="125">93033394</td>
<td>L_GEN_IPP_7.0.2.137.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 2 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3366906729</td>
<td width="125">599386592</td>
<td>L_FCOMPXE_2011.2.137.TGZ</td>
</tr>
<tr>
<td width="125">2395685753</td>
<td width="125">309910751</td>
<td>L_FCOMPXE_IA32_2011.2.137.TGZ</td>
</tr>
<tr>
<td width="125">3017266354</td>
<td width="125">361516678</td>
<td>L_FCOMPXE_INTEL64_2011.2.137.TGZ</td>
</tr>
<tr>
<td width="125">2090748365</td>
<td width="125">19509673</td>
<td>L_FCOMPXE_2011.2.137_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 2 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1364459699</td>
<td width="125">766174896</td>
<td>W_CCOMPXE_2011.2.154.EXE</td>
</tr>
<tr>
<td width="125">3454475371</td>
<td width="125">414311320</td>
<td>W_CCOMPXE_IA32_2011.2.154.EXE</td>
</tr>
<tr>
<td width="125">3996286175</td>
<td width="125">506386744</td>
<td>W_CCOMPXE_INTEL64_2011.2.154.EXE</td>
</tr>
<tr>
<td width="125">3058293068</td>
<td width="125">11436826</td>
<td>W_CCOMPXE_REDIST_MSI_2011.2.154.ZIP</td>
</tr>
<tr>
<td width="125">1775071510</td>
<td width="125">16772823</td>
<td>W_CCOMPXE_REDIST_MSM_2011.2.154.ZIP</td>
</tr>
<tr>
<td width="125">1113339119</td>
<td width="125">49894403</td>
<td>W_CCOMPXE_GEN_IPP_7.0.2.154.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 2 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1987864098</td>
<td width="125">861669360</td>
<td>W_FCOMPXE_2011.2.154.EXE</td>
</tr>
<tr>
<td width="125">3234201683</td>
<td width="125">495077616</td>
<td>W_FCOMPXE_NOVSSHELL_2011.2.154.EXE</td>
</tr>
<tr>
<td width="125">4284394354</td>
<td width="125">262239808</td>
<td>W_FCOMPXE_IA32_2011.2.154.EXE</td>
</tr>
<tr>
<td width="125">3442835518</td>
<td width="125">359426768</td>
<td>W_FCOMPXE_INTEL64_2011.2.154.EXE</td>
</tr>
<tr>
<td width="125">171013451</td>
<td width="125">22839372</td>
<td>W_FCOMPXE_REDIST_MSI_2011.2.154.ZIP</td>
</tr>
<tr>
<td width="125">2756565299</td>
<td width="125">34323693</td>
<td>W_FCOMPXE_REDIST_MSM_2011.2.154.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Mac OS* X Update 2 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2736909659</td>
<td width="125">625324808</td>
<td>M_CCOMPXE_2011.2.142.DMG</td>
</tr>
<tr>
<td width="125">817663229</td>
<td width="125">8444064</td>
<td>M_CCOMPXE_REDIST_2011.2.142.DMG</td>
</tr>
<tr>
<td width="125">2738920729</td>
<td width="125">73696798</td>
<td>M_CCOMPXE_GEN_IPP_2011.2.142.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Mac OS* X Update 2 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1526326951</td>
<td width="125">318472595</td>
<td>M_FCOMPXE_2011.2.142.DMG</td>
</tr>
<tr>
<td width="125">3635325492</td>
<td width="125">10272521</td>
<td>M_FCOMPXE_REDIST_2011.2.142.DMG</td>
</tr>
</tbody>
</table>
<div id="divHtmlEdMain" ><br /><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 1 <span></span></span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1994626103</td>
<td width="125">1182002083</td>
<td>L_CCOMPXE_2011.1.107.TGZ</td>
</tr>
<tr>
<td width="125">401816393</td>
<td width="125">601374143</td>
<td>L_CCOMPXE_IA32_2011.1.107.TGZ</td>
</tr>
<tr>
<td width="125">2974737580</td>
<td width="125">683997833</td>
<td>L_CCOMPXE_INTEL64_2011.1.107.TGZ</td>
</tr>
<tr>
<td width="125">1977436280</td>
<td width="125">146132</td>
<td>L_CCOMPXE_2011.1.107_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">82861479</td>
<td width="125">40428091</td>
<td>L_GEN_IPP_7.0.1.107_IA32.TGZ</td>
</tr>
<tr>
<td width="125">424280942</td>
<td width="125">52659793</td>
<td>L_GEN_IPP_7.0.1.107_INTEL64.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 1 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1456673630</td>
<td width="125">597232889</td>
<td>L_FCOMPXE_2011.1.107.TGZ</td>
</tr>
<tr>
<td width="125">3274352599</td>
<td width="125">308827122</td>
<td>L_FCOMPXE_IA32_2011.1.107.TGZ</td>
</tr>
<tr>
<td width="125">4163533434</td>
<td width="125">360609493</td>
<td>L_FCOMPXE_INTEL64_2011.1.107.TGZ</td>
</tr>
<tr>
<td width="125">2206960671</td>
<td width="125">1845579</td>
<td>L_FCOMPXE_2011.1.107_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 1 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3872644995</td>
<td width="125">759056464</td>
<td>W_CCOMPXE_2011.1.127.EXE</td>
</tr>
<tr>
<td width="125">1983411889</td>
<td width="125">410054864</td>
<td>W_CCOMPXE_IA32_2011.1.127.EXE</td>
</tr>
<tr>
<td width="125">3643847989</td>
<td width="125">503981576</td>
<td>W_CCOMPXE_INTEL64_2011.1.127.EXE</td>
</tr>
<tr>
<td width="125">2275710684</td>
<td width="125">11533228</td>
<td>W_CCOMPXE_REDIST_MSI_2011.1.127.ZIP</td>
</tr>
<tr>
<td width="125">1616296738</td>
<td width="125">16919835</td>
<td>W_CCOMPXE_REDIST_MSM_2011.1.127.ZIP</td>
</tr>
<tr>
<td width="125">3276448032</td>
<td width="125">49897122</td>
<td>W_CCOMPXE_GEN_IPP_7.0.1.127.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 1 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2676618104</td>
<td width="125">861962008</td>
<td>W_FCOMPXE_2011.1.127.EXE</td>
</tr>
<tr>
<td width="125">1284009173</td>
<td width="125">495428264</td>
<td>W_FCOMPXE_NOVSSHELL_2011.1.127.EXE</td>
</tr>
<tr>
<td width="125">2024868465</td>
<td width="125">261436792</td>
<td>W_FCOMPXE_IA32_2011.1.127.EXE</td>
</tr>
<tr>
<td width="125">2003356514</td>
<td width="125">360290272</td>
<td>W_FCOMPXE_INTEL64_2011.1.127.EXE</td>
</tr>
<tr>
<td width="125">1106610640</td>
<td width="125">22987216</td>
<td>W_FCOMPXE_REDIST_MSI_2011.1.127.ZIP</td>
</tr>
<tr>
<td width="125">904383790</td>
<td width="125">34482510</td>
<td>W_FCOMPXE_REDIST_MSM_2011.1.127.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Mac OS* X Update 1 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1682408321</td>
<td width="125">615009572</td>
<td>M_CCOMPXE_2011.1.122.DMG</td>
</tr>
<tr>
<td width="125">2996024752</td>
<td width="125">8302939</td>
<td>M_CCOMPXE_REDIST_2011.1.122.DMG</td>
</tr>
<tr>
<td width="125">3478461364</td>
<td width="125">73731038</td>
<td>M_CCOMPXE_GEN_IPP_2011.1.122.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Mac OS* X Update 1 </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1902355989</td>
<td width="125">316739281</td>
<td>M_FCOMPXE_2011.1.122.DMG</td>
</tr>
<tr>
<td width="125">2411165187</td>
<td width="125">10128435</td>
<td>M_FCOMPXE_REDIST_2011.1.122.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Linux* Update 1, Japanese Edition <span></span></span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2628334681</td>
<td width="125">1227220749</td>
<td>L_CCOMPXE_2011.1.108.TGZ</td>
</tr>
<tr>
<td width="125">2336569783</td>
<td width="125">646350403</td>
<td>L_CCOMPXE_IA32_2011.1.108.TGZ</td>
</tr>
<tr>
<td width="125">1362979772</td>
<td width="125">728987927</td>
<td>L_CCOMPXE_INTEL64_2011.1.108.TGZ</td>
</tr>
<tr>
<td width="125">3092697380</td>
<td width="125">146205</td>
<td>L_CCOMPXE_2011.1.108_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">3884446244</td>
<td width="125">40428469</td>
<td>L_GEN_IPP_7.0.1.108_IA32.TGZ</td>
</tr>
<tr>
<td width="125">589391053</td>
<td width="125">52659313</td>
<td>L_GEN_IPP_7.0.1.108_INTEL64.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* Update 1, Japanese Edition </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2446146840</td>
<td width="125">618914961</td>
<td>L_FCOMPXE_2011.1.108.TGZ</td>
</tr>
<tr>
<td width="125">2445322616</td>
<td width="125">330242462</td>
<td>L_FCOMPXE_IA32_2011.1.108.TGZ</td>
</tr>
<tr>
<td width="125">1001086563</td>
<td width="125">382008448</td>
<td>L_FCOMPXE_INTEL64_2011.1.108.TGZ</td>
</tr>
<tr>
<td width="125">2462845789</td>
<td width="125">1845628</td>
<td>L_FCOMPXE_2011.1.108_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* Update 1, Japanese Edition </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3881835901</td>
<td width="125">855200560</td>
<td>W_CCOMPXE_2011.1.128.EXE</td>
</tr>
<tr>
<td width="125">3040221463</td>
<td width="125">504075680</td>
<td>W_CCOMPXE_IA32_2011.1.128.EXE</td>
</tr>
<tr>
<td width="125">2070025306</td>
<td width="125">599581744</td>
<td>W_CCOMPXE_INTEL64_2011.1.128.EXE</td>
</tr>
<tr>
<td width="125">3780410463</td>
<td width="125">11571028</td>
<td>W_CCOMPXE_REDIST_MSI_2011.1.128.ZIP</td>
</tr>
<tr>
<td width="125">1471223978</td>
<td width="125">16946056</td>
<td>W_CCOMPXE_REDIST_MSM_2011.1.128.ZIP</td>
</tr>
<tr>
<td width="125">1077286242</td>
<td width="125">49897085</td>
<td>W_CCOMPXE_GEN_IPP_7.0.1.128.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* Update 1, Japanese Edition </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1554433242</td>
<td width="125">958369784</td>
<td>W_FCOMPXE_2011.1.128.EXE</td>
</tr>
<tr>
<td width="125">1829411735</td>
<td width="125">1032682184</td>
<td>W_FCOMPXE_ALL_JP_2011.1.128.EXE</td>
</tr>
<tr>
<td width="125">1305716358</td>
<td width="125">591830272</td>
<td>W_FCOMPXE_NOVSSHELL_2011.1.128.EXE</td>
</tr>
<tr>
<td width="125">471095758</td>
<td width="125">356845752</td>
<td>W_FCOMPXE_IA32_2011.1.128.EXE</td>
</tr>
<tr>
<td width="125">3483469307</td>
<td width="125">456294216</td>
<td>W_FCOMPXE_INTEL64_2011.1.128.EXE</td>
</tr>
<tr>
<td width="125">2786702499</td>
<td width="125">22989382</td>
<td>W_FCOMPXE_REDIST_MSI_2011.1.128.ZIP</td>
</tr>
<tr>
<td width="125">3954818572</td>
<td width="125">34534243</td>
<td>W_FCOMPXE_REDIST_MSM_2011.1.128.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Linux* </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">872962658</td>
<td width="125">1182046118</td>
<td>L_CCOMPXE_2011.0.084.TGZ</td>
</tr>
<tr>
<td width="125">733425786</td>
<td width="125">601793427</td>
<td>L_CCOMPXE_IA32_2011.0.084.TGZ</td>
</tr>
<tr>
<td width="125">1043635407</td>
<td width="125">684407043</td>
<td>L_CCOMPXE_INTEL64_2011.0.084.TGZ</td>
</tr>
<tr>
<td width="125">678630125</td>
<td width="125">28184430</td>
<td>L_CCOMPXE_2011.0.084_REDIST.TGZ</td>
</tr>
<tr>
<td width="125">4291810975</td>
<td width="125">40427925</td>
<td>L_GEN_IPP_7.0.1.084_IA32.TGZ</td>
</tr>
<tr>
<td width="125">1425346461</td>
<td width="125">52659616</td>
<td>L_GEN_IPP_7.0.1.084_INTEL64.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Linux* </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1348249595</td>
<td width="125">597438834</td>
<td>L_FCOMPXE_2011.0.084.TGZ</td>
</tr>
<tr>
<td width="125">3459674865</td>
<td width="125">309441361</td>
<td>L_FCOMPXE_IA32_2011.0.084.TGZ</td>
</tr>
<tr>
<td width="125">3562731690</td>
<td width="125">361177372</td>
<td>L_FCOMPXE_INTEL64_2011.0.084.TGZ</td>
</tr>
<tr>
<td width="125">1585968054</td>
<td width="125">36796102</td>
<td>L_FCOMPXE_2011.0.084_REDIST.TGZ</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Windows* </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">3869833915</td>
<td width="125">758262472</td>
<td>W_CCOMPXE_2011.0.104.EXE</td>
</tr>
<tr>
<td width="125">3149207966</td>
<td width="125">409400688</td>
<td>W_CCOMPXE_IA32_2011.0.104.EXE</td>
</tr>
<tr>
<td width="125">2424602611</td>
<td width="125">503377568</td>
<td>W_CCOMPXE_INTEL64_2011.0.104.EXE</td>
</tr>
<tr>
<td width="125">2308584493</td>
<td width="125">11533373</td>
<td>W_CCOMPXE_REDIST_MSI_2011.0.104.ZIP</td>
</tr>
<tr>
<td width="125">1036143037</td>
<td width="125">16891088</td>
<td>W_CCOMPXE_REDIST_MSM_2011.0.104.ZIP</td>
</tr>
<tr>
<td width="125">3944212949</td>
<td width="125">49897751</td>
<td>W_CCOMPXE_GEN_IPP_7.0.1.104.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Visual Fortran Composer XE 2011 for Windows* </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2683997997</td>
<td width="125">860921760</td>
<td>W_FCOMPXE_2011.0.104.EXE</td>
</tr>
<tr>
<td width="125">2475235627</td>
<td width="125">494388024</td>
<td>W_FCOMPXE_NOVSSHELL_2011.0.104.EXE</td>
</tr>
<tr>
<td width="125">42144760</td>
<td width="125">261043624</td>
<td>W_FCOMPXE_IA32_2011.0.104.EXE</td>
</tr>
<tr>
<td width="125">1880115538</td>
<td width="125">359694120</td>
<td>W_FCOMPXE_INTEL64_2011.0.104.EXE</td>
</tr>
<tr>
<td width="125">587725561</td>
<td width="125">22958320</td>
<td>W_FCOMPXE_REDIST_MSI_2011.0.104.ZIP</td>
</tr>
<tr>
<td width="125">3953084101</td>
<td width="125">34451690</td>
<td>W_FCOMPXE_REDIST_MSM_2011.0.104.ZIP</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® C++ Composer XE 2011 for Mac OS* X </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">2250686259</td>
<td width="125">614451986</td>
<td>M_CCOMPXE_2011.0.085.DMG</td>
</tr>
<tr>
<td width="125">1887064224</td>
<td width="125">8295106</td>
<td>M_CCOMPXE_REDIST_2011.0.085.DMG</td>
</tr>
<tr>
<td width="125">2039382099</td>
<td width="125">73737722</td>
<td>M_CCOMPXE_GEN_IPP_2011.0.085.DMG</td>
</tr>
</tbody>
</table>
<br /><strong><span >Intel® Fortran Composer XE 2011 for Mac OS* X </span></strong><br />
<table>
<tbody>
<tr>
<td width="125"><span >Checksum</span></td>
<td width="125"><span >File size</span></td>
<td><span >Filename</span></td>
</tr>
<tr>
<td width="125">1660922623</td>
<td width="125">316157482</td>
<td>M_FCOMPXE_2011.0.085.DMG</td>
</tr>
<tr>
<td width="125">3557364626</td>
<td width="125">10124397</td>
<td>M_FCOMPXE_REDIST_2011.0.085.DMG</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> ]]></description>
      <link>http://software.intel.com/en-us/articles/intel-composer-xe-2011-checksums/</link>
      <pubDate>Sat, 25 Sep 2010 23:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/intel-composer-xe-2011-checksums/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/intel-composer-xe-2011-checksums/</guid>
      <category>Tools</category>
      <category>Intel Software Network communities</category>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® C++ Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® C++ Compiler for Windows* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
      <category>Intel Software Network communities</category>
    </item>
  </channel></rss>
