Intel® Visual Fortran Composer XE 2011 for Windows* Installation Guide and Release Notes

Total Page:16

File Type:pdf, Size:1020Kb

Intel® Visual Fortran Composer XE 2011 for Windows* Installation Guide and Release Notes Intel® Visual Fortran Composer XE 2011 for Windows* Installation Guide and Release Notes Document number: 321417-003US 14 June 2012 Table of Contents 1 Introduction ......................................................................................................................... 4 1.1 Change History ............................................................................................................ 4 1.2 Product Contents ......................................................................................................... 6 1.3 System Requirements .................................................................................................. 7 1.3.1 IA-64 Architecture (Intel® Itanium®) Development Not Supported ........................ 8 1.3.2 Support Deprecated for Microsoft Visual Studio 2005* .......................................... 8 1.3.3 Support Deprecated for Microsoft Windows Vista* and Microsoft Windows Server 2003* 9 1.4 Documentation ............................................................................................................. 9 1.4.1 Documentation on Creating Windows-based Applications Now on the Web ......... 9 1.4.2 Delay on First Access of Intel® Composer XE Help in Visual Studio 2008* .......... 9 1.5 Samples ....................................................................................................................... 9 1.6 Japanese Language Support ....................................................................................... 9 1.7 Technical Support .......................................................................................................10 2 Installation ..........................................................................................................................10 2.1 Pre-Installation Steps ..................................................................................................10 2.1.1 Install Prerequisite Software ................................................................................10 2.1.2 Configure Visual Studio for 64-bit Applications .....................................................11 2.1.3 Installation on Microsoft Windows Vista* and Windows 7* ...................................11 2.2 Installation ..................................................................................................................11 2.2.1 Cluster Installation ...............................................................................................12 2.2.2 Activation of Purchase after Evaluation Using the Intel Activation Tool ................12 2.2.3 Using a License Server ........................................................................................12 2.2.4 Installing the IMSL* Fortran Numerical Library* ....................................................12 Intel® Visual Fortran Composer XE 2011 for Windows* Installation Guide and Release Notes 1 2.2.5 Additional Steps to Install Documentation for Microsoft Visual Studio 2010 .........12 2.2.6 Prompt for Administrator Permission with Microsoft Visual Studio 2005* .............13 2.3 Changing, Updating and Removing the Product .........................................................13 2.4 Silent Install and Uninstall ...........................................................................................14 2.5 Installation Folders ......................................................................................................14 2.6 Installation Known Issues............................................................................................15 2.6.1 Documentation Issue with Multiple Visual Studio Versions...................................15 3 Intel® Visual Fortran Compiler ...........................................................................................16 3.1 Compatibility ...............................................................................................................16 3.1.1 Stack Alignment Change for REAL(16) and COMPLEX(16) Datatypes (12.0)......16 3.2 New and Changed Compiler Features ........................................................................16 3.2.1 Features from Fortran 2003 .................................................................................16 3.2.2 Features from Fortran 2008 .................................................................................17 3.2.3 Coarrays ..............................................................................................................18 3.2.4 New and Changed Directives (Update 6) .............................................................18 3.2.5 OpenMP Changes (Update 6) ..............................................................................18 3.2.6 New QuickWin Library Routines (Update 6) .........................................................19 3.2.7 Other Changes ....................................................................................................20 3.3 New and Changed Compiler Options ..........................................................................20 3.3.1 New and Changed in Composer XE 2011 Update 6 (and later) ...........................20 3.3.2 New and Changed in Composer XE 2011 (through Update 5) .............................20 3.3.3 /assume:[no]std_intent_in added (Update 9) ........................................................21 3.3.4 Additional Keywords for /Qsox option, default changed (Update 3) ....................21 3.4 Experimental Parallel Build Option (Update 8) ............................................................22 3.5 Source Editor Enhancements for Users of Visual Studio 2010 (Update 6) ..................22 3.5.1 Navigation Bar .....................................................................................................22 3.5.2 Smart Indenting ...................................................................................................22 3.5.3 Code Outlining .....................................................................................................23 3.5.4 Block Delimiter Matching .....................................................................................23 3.5.5 Code Snippets .....................................................................................................23 3.5.6 Go To Definition and Find All References ............................................................23 3.5.7 Find Symbol .........................................................................................................24 3.5.8 Object Browser ....................................................................................................24 Intel® Visual Fortran Composer XE 2011 for Windows* Installation Guide and Release Notes 2 3.5.9 Quick Info for Intrinsic Procedures .......................................................................24 3.5.10 Task List Comments ............................................................................................24 3.6 Other Changes ...........................................................................................................24 3.6.1 Build Environment Command Script Change (12.0) .............................................24 3.6.2 Static Security Analysis Feature (formerly Source Checker) Requires Intel® Inspector XE (12.0) ............................................................................................................25 3.6.3 OpenMP* Legacy Libraries Removed ..................................................................26 3.6.4 OpenMP* Libraries Default to Dynamic Linking ....................................................26 3.6.5 RANF Portability Function Is Now an Intrinsic ......................................................26 3.6.6 Support Deprecated for Intel® Parallel Debugger Extension ................................27 Known Issues .................................................................................................................27 3.7 .........................................................................................................................................27 3.7.1 Coarray Issues .....................................................................................................27 3.7.2 Command-Line Diagnostic Issue for Filenames with Japanese Characters .........27 3.7.3 Allocatable Arrays and OpenMP* PRIVATE or FIRSTPRIVATE ..........................27 3.8 Microsoft Visual Studio 2010* Notes ...........................................................................27 3.8.1 Configuring Microsoft Visual C++ to Reference Intel® Fortran Run-Time Libraries 27 3.8.2 Adjusting Project Dependencies ..........................................................................28 3.9 Fortran 2003 and Fortran 2008 Feature Summary ......................................................29 4 Intel® Math Kernel Library .................................................................................................33 4.1 What’s New in Intel® MKL 10.3 Update 11 .................................................................33 4.2 What’s New in Intel® MKL 10.3 Update 10 .................................................................33 4.3 What’s New in Intel® MKL 10.3 Update 9 ...................................................................33 4.4 What’s New in Intel® MKL 10.3 Update 8 ...................................................................33 4.5 What’s New in Intel® MKL 10.3 Update 7 ...................................................................34 4.6 What’s New in Intel® MKL 10.3 Update 6 ...................................................................34
Recommended publications
  • Practical C Programming, 3Rd Edition
    Practical C Programming, 3rd Edition By Steve Oualline 3rd Edition August 1997 ISBN: 1-56592-306-5 This new edition of "Practical C Programming" teaches users not only the mechanics or programming, but also how to create programs that are easy to read, maintain, and debug. It features more extensive examples and an introduction to graphical development environments. Programs conform to ANSI C. 0 TEAM FLY PRESENTS Table of Contents Preface How This Book is Organized Chapter by Chapter Notes on the Third Edition Font Conventions Obtaining Source Code Comments and Questions Acknowledgments Acknowledgments to the Third Edition I. Basics 1. What Is C? How Programming Works Brief History of C How C Works How to Learn C 2. Basics of Program Writing Programs from Conception to Execution Creating a Real Program Creating a Program Using a Command-Line Compiler Creating a Program Using an Integrated Development Environment Getting Help on UNIX Getting Help in an Integrated Development Environment IDE Cookbooks Programming Exercises 3. Style Common Coding Practices Coding Religion Indentation and Code Format Clarity Simplicity Summary 4. Basic Declarations and Expressions Elements of a Program Basic Program Structure Simple Expressions Variables and Storage 1 TEAM FLY PRESENTS Variable Declarations Integers Assignment Statements printf Function Floating Point Floating Point Versus Integer Divide Characters Answers Programming Exercises 5. Arrays, Qualifiers, and Reading Numbers Arrays Strings Reading Strings Multidimensional Arrays Reading Numbers Initializing Variables Types of Integers Types of Floats Constant Declarations Hexadecimal and Octal Constants Operators for Performing Shortcuts Side Effects ++x or x++ More Side-Effect Problems Answers Programming Exercises 6.
    [Show full text]
  • Development of a Physician Profiling Data Mart Connie Chambers Regis University
    Regis University ePublications at Regis University All Regis University Theses Fall 2008 Development of a Physician Profiling Data Mart Connie Chambers Regis University Follow this and additional works at: https://epublications.regis.edu/theses Part of the Computer Sciences Commons Recommended Citation Chambers, Connie, "Development of a Physician Profiling Data Mart" (2008). All Regis University Theses. 118. https://epublications.regis.edu/theses/118 This Thesis - Open Access is brought to you for free and open access by ePublications at Regis University. It has been accepted for inclusion in All Regis University Theses by an authorized administrator of ePublications at Regis University. For more information, please contact [email protected]. Regis University College for Professional Studies Graduate Programs Final Project/Thesis Disclaimer Use of the materials available in the Regis University Thesis Collection (“Collection”) is limited and restricted to those users who agree to comply with the following terms of use. Regis University reserves the right to deny access to the Collection to any person who violates these terms of use or who seeks to or does alter, avoid or supersede the functional conditions, restrictions and limitations of the Collection. The site may be used only for lawful purposes. The user is solely responsible for knowing and adhering to any and all applicable laws, rules, and regulations relating or pertaining to use of the Collection. All content in this Collection is owned by and subject to the exclusive control of Regis University and the authors of the materials. It is available only for research purposes and may not be used in violation of copyright laws or for unlawful purposes.
    [Show full text]
  • C:\Andrzej\PDF\ABC Nagrywania P³yt CD\1 Strona.Cdr
    IDZ DO PRZYK£ADOWY ROZDZIA£ SPIS TREFCI Wielka encyklopedia komputerów KATALOG KSI¥¯EK Autor: Alan Freedman KATALOG ONLINE T³umaczenie: Micha³ Dadan, Pawe³ Gonera, Pawe³ Koronkiewicz, Rados³aw Meryk, Piotr Pilch ZAMÓW DRUKOWANY KATALOG ISBN: 83-7361-136-3 Tytu³ orygina³u: ComputerDesktop Encyclopedia Format: B5, stron: 1118 TWÓJ KOSZYK DODAJ DO KOSZYKA Wspó³czesna informatyka to nie tylko komputery i oprogramowanie. To setki technologii, narzêdzi i urz¹dzeñ umo¿liwiaj¹cych wykorzystywanie komputerów CENNIK I INFORMACJE w ró¿nych dziedzinach ¿ycia, jak: poligrafia, projektowanie, tworzenie aplikacji, sieci komputerowe, gry, kinowe efekty specjalne i wiele innych. Rozwój technologii ZAMÓW INFORMACJE komputerowych, trwaj¹cy stosunkowo krótko, wniós³ do naszego ¿ycia wiele nowych O NOWOFCIACH mo¿liwoYci. „Wielka encyklopedia komputerów” to kompletne kompendium wiedzy na temat ZAMÓW CENNIK wspó³czesnej informatyki. Jest lektur¹ obowi¹zkow¹ dla ka¿dego, kto chce rozumieæ dynamiczny rozwój elektroniki i technologii informatycznych. Opisuje wszystkie zagadnienia zwi¹zane ze wspó³czesn¹ informatyk¹; przedstawia zarówno jej historiê, CZYTELNIA jak i trendy rozwoju. Zawiera informacje o firmach, których produkty zrewolucjonizowa³y FRAGMENTY KSI¥¯EK ONLINE wspó³czesny Ywiat, oraz opisy technologii, sprzêtu i oprogramowania. Ka¿dy, niezale¿nie od stopnia zaawansowania swojej wiedzy, znajdzie w niej wyczerpuj¹ce wyjaYnienia interesuj¹cych go terminów z ró¿nych bran¿ dzisiejszej informatyki. • Komunikacja pomiêdzy systemami informatycznymi i sieci komputerowe • Grafika komputerowa i technologie multimedialne • Internet, WWW, poczta elektroniczna, grupy dyskusyjne • Komputery osobiste — PC i Macintosh • Komputery typu mainframe i stacje robocze • Tworzenie oprogramowania i systemów komputerowych • Poligrafia i reklama • Komputerowe wspomaganie projektowania • Wirusy komputerowe Wydawnictwo Helion JeYli szukasz ]ród³a informacji o technologiach informatycznych, chcesz poznaæ ul.
    [Show full text]
  • Intel(R) Fortran Compiler Options
    Intel(R) Fortran Compiler Options Document Number: 307780-005US Disclaimer and Legal Information INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL(R) PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY INTELLECTUAL PROPERTY RIGHTS IS GRANTED BY THIS DOCUMENT. EXCEPT AS PROVIDED IN INTEL'S TERMS AND CONDITIONS OF SALE FOR SUCH PRODUCTS, INTEL ASSUMES NO LIABILITY WHATSOEVER, AND INTEL DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY, RELATING TO SALE AND/OR USE OF INTEL PRODUCTS INCLUDING LIABILITY OR WARRANTIES RELATING TO FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR INFRINGEMENT OF ANY PATENT, COPYRIGHT OR OTHER INTELLECTUAL PROPERTY RIGHT. UNLESS OTHERWISE AGREED IN WRITING BY INTEL, THE INTEL PRODUCTS ARE NOT DESIGNED NOR INTENDED FOR ANY APPLICATION IN WHICH THE FAILURE OF THE INTEL PRODUCT COULD CREATE A SITUATION WHERE PERSONAL INJURY OR DEATH MAY OCCUR. Intel may make changes to specifications and product descriptions at any time, without notice. Designers must not rely on the absence or characteristics of any features or instructions marked "reserved" or "undefined." Intel reserves these for future definition and shall have no responsibility whatsoever for conflicts or incompatibilities arising from future changes to them. The information here is subject to change without notice. Do not finalize a design with this information. The products described in this document may contain design defects or errors known as errata which may cause the product to deviate from published specifications. Current characterized errata are available on request. Contact your local Intel sales office or your distributor to obtain the latest specifications and before placing your product order.
    [Show full text]
  • Using Intel® Visual Fortran to Create and Build Windows*-Based Applications
    Using Intel® Visual Fortran to Create and Build Windows*-Based Applications Document Number: 324197-001US www.intel.com Legal Information Using Intel® Visual Fortran to Create and Build Windows*-Based Applications Contents Legal Information................................................................................ 5 Chapter 1: Introduction Overview..................................................................................................6 Notational Conventions...............................................................................6 Related Information................................................................................... 7 Chapter 2: Creating Windowing Applications Creating Windowing Applications Overview....................................................8 Understanding Coding Requirements for Fortran Windowing Applications...........8 Using Menus and Dialogs in SDI and MDI Fortran Windowing Applications........11 Sample Fortran Windows Applications.........................................................13 Advanced Graphics Using OpenGL.............................................................. 13 Chapter 3: Creating and Using DLLs Creating and Using Fortran DLLs Overview.................................................. 15 Coding Requirements for Sharing Procedures in DLLs....................................15 Coding Requirements for Sharing Data in DLLs............................................ 16 Building Dynamic-Link Libraries................................................................. 18
    [Show full text]
  • Front in Instmts
    2–Tier/COM/MTS Installation for Windows This software manual is documentation for Panthert. It is as accurate as possible at this time; however, both this manual and Panther itself are subject to revision. Prolifics and JAM are registered trademarks and JAM/TPi and Panther are trademarks of JYACC, Inc. BEA TUXEDO is a registered trademark and BEA WebLogic Enterprise is a trademark of BEA Systems, Inc. DynaText is a registered trademark of Inso Corporation. FLEXlm is a registered trademark of GLOBEtrotter Software, Inc. HP is a trademark of Hewlett-Packard Company. INFORMIX and C-ISAM are registered trademarks of Informix Software, Inc. IBM, DB2, and RISC System/6000 are registered trademarks and CICS is a trademark of International Business Machines Corporation. Microsoft, MS-DOS, Windows, Windows NT, SQL Server, ActiveX, and Visual C++ are registered trade- marks and Microsoft Windows 95, Authenticode, Microsoft Access, Microsoft Internet Information Server, and Microsoft Open Database Connectivity are trademarks of Microsoft Corporation. Motif is a trademark of the Open Software Foundation, Inc. Oracle and SQL*Net are registered trademarks and Oracle7, Oracle8, PL/SQL, Pro*C, Rdb7, and Rdb8 are trademarks of Oracle Corporation. Netscape and Netscape Navigator, and Netscape Fast Track Server are registered trademarks of Netscape Communications Corporation. Sun, SunOS, Solaris, JavaScript, JDK, and Java are trademarks and Sun Workstation is a registered trade- mark of Sun Microsystems, Inc. SYBASE is a registered trademark and Client-Library and DB-Library are trademarks of Sybase, Inc. UNIX is a registered trademark in the United States and other countries, licensed exclusively through X/Open Company Limited.
    [Show full text]
  • Trident Development Roadmap
    Trident development roadmap Prepared By: Kathleen Svendsen Martec Limited 1888 Brunswick Street, Suite 400 Halifax, Nova Scotia B3J 3J8 PWGSC Contract Number: W7707-145679/001/HAL Contract Scientific Authority: Neil Pegg, Head / Warship Performance, 902-426-3100 x165 The scientific or technical validity of this Contract Report is entirely the responsibility of the Contractor and the contents do not necessarily have the approval or endorsement of the Department of National Defence of Canada. Contract Report DRDC-RDDC-2014-C311 June 2014 © Her Majesty the Queen in Right of Canada, as represented by the Minister of National Defence, 2014 © Sa Majesté la Reine (en droit du Canada), telle que représentée par le ministre de la Défense nationale, 2014 Working together for a safer world Trident Development Roadmap Martec Technical Report # TR-14-59 June 2014 Prepared for: DRDC Atlantic, 9 Grove Street, Dartmouth, Nova Scotia B2Y 3Z7 Martec Limited tel. 902.425.5101 1888 Brunswick Street, Suite 400 fax. 902.421.1923 Halifax, Nova Scotia B3J 3J8 Canada email. [email protected] www.martec.com REVISION CONTROL REVISION REVISION DATE Draft Release March 31/2014 Final Release June 3/2014 PROPRIETARY NOTICE This report was prepared under Contract #W7707-145679/001/HAL, DRDC-Atlantic contains information proprietary to Martec Limited. The information contained herein may be used and/or further developed by DRDC-Atlantic for their purposes only. Complete use and disclosure limitations are contained in Contract #W7707-145679/001/HAL, DRDC-Atlantic. EXECUTIVE SUMMARY The Trident Finite Element Software is a program suite that features capabilities for analysis and modelling of marine structures.
    [Show full text]
  • Syllabus 2017-2018
    B.E-COMPUTER SCIENCE AND ENGINEERING CHOICE BASED CREDIT SYSTEM (CBCS) Syllabus 2017-2018 COMPUTER SCIENCE AND ENGINEERING ENGINEERING KARPAGAM ACADEMY OF HIGHER EDUCATION (Deemed to be University) (Established under section 3 of UGC Act, 1956) Pollachi Main Road, Eachanari (Post), Coimbatore- 641021, Tamil Nadu, India Phone: 0422 – 2980011 – 15 Fax No: 0422 – 2980022-23 Email: [email protected] Web: www. kahedu.edu.in 17BECC101 ENGLISH FOR ENGINEERS-I L T P C 3 0 0 3 COURSE OBJECTIVES: To enable students to attain fluency and accuracy to inculcate proficiency in professional communication to meet the growing demand in the field of Global communication. To help students acquire their ability to speak effectively in real life situations. To inculcate the habit of reading and to develop their effective reading skills. To ensure that students use dictionary to improve their active and passive vocabulary. To enable students to improve their lexical, grammatical and communicative competence. LEARNING OUTCOMES: Students undergoing this course will be able to Use English language for communication: verbal & non –verbal. Enrich comprehension and acquisition of speaking & writing ability. Gain confidence in using English language in real life situations. Improve word power: lexical, grammatical and communication competence. Unit- I LSRW SKILLS & GRAMMAR Receptive Skills (Listening, Reading and Scanning) & Productive Skills (Writing, Speaking and Representing) (9) Listening –Types of listening- Listening to class reading - Video tapes/ Audio tapes. Speaking – Introduction on self. Reading - Reading for comprehension – Reading different kind of passages like descriptive, narrative, objective, conversational and argumentative. Writing – Formal and Informal letters- Letters to the Editor. Grammar & Vocabulary (Function Grammar & Technical Vocabulary) Parts of Speech -Tenses -Articles.
    [Show full text]
  • The RFC Generator HELP.BCFESDE3
    The RFC Generator HELP.BCFESDE3 Release 4.6C The RFC Generator SAP AG Copyright © Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG. The information contained herein may be changed without prior notice. Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors. Microsoft®, WINDOWS®, NT®, EXCEL®, Word®, PowerPoint® and SQL Server® are registered trademarks of Microsoft Corporation. IBM®, DB2®, OS/2®, DB2/6000®, Parallel Sysplex®, MVS/ESA®, RS/6000®, AIX®, S/390®, AS/400®, OS/390®, and OS/400® are registered trademarks of IBM Corporation. ORACLE® is a registered trademark of ORACLE Corporation. TM INFORMIX®-OnLine for SAP and Informix® Dynamic Server are registered trademarks of Informix Software Incorporated. UNIX®, X/Open®, OSF/1®, and Motif® are registered trademarks of the Open Group. HTML, DHTML, XML, XHTML are trademarks or registered trademarks of W3C®, World Wide Web Consortium, Massachusetts Institute of Technology. JAVA® is a registered trademark of Sun Microsystems, Inc. JAVASCRIPT® is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by Netscape. SAP, SAP Logo, R/2, RIVA, R/3, ABAP, SAP ArchiveLink, SAP Business Workflow, WebFlow, SAP EarlyWatch, BAPI, SAPPHIRE, Management Cockpit, mySAP.com Logo and mySAP.com are trademarks or registered trademarks of SAP AG in Germany and in several other countries all over the world. All other products mentioned are trademarks or registered trademarks of their respective companies.
    [Show full text]
  • Compaq Visual Fortran Installing and Getting Started
    Compaq Visual Fortran Installing and Getting Started Order Number: AA-R2PYF-TH August 2001 This guide describes how to install Compaq Visual Fortran (formerly DIGITAL Visual Fortran), provides overview information about it, and shows how to use it with the Microsoft Visual C++ development environment (also known as Microsoft Developer Studio). Revision/Update Information: This revised document supersedes the Version 6.5 Compaq Visual Fortran Installing and Getting Started. Operating System: Microsoft Windows 2000, Windows NT Version 4, Windows Me, Windows 98, or Windows 95 Software Version: Compaq Visual Fortran Version 6.6 (or subsequent minor releases), all editions Compaq Computer Corporation First Printing, April 1997 Revision, August 1997 Revision, September 1998 Revision, September 1999 Revision, September 2000 Revision, August 2001 © 2001 Compaq Computer Corporation Compaq, the Compaq logo, Alpha, Tru64, and VAX are trademarks of Compaq Information Technologies Group, L.P. ActiveX, Microsoft, Developer Studio, FoxPro, SourceSafe, Visual Basic, Visual C++, Visual J++, Visual SourceSafe, Visual Studio, Win32, Windows, and Windows NT are trademarks of Microsoft Corporation. Intel, KAP, and Pentium are trademarks of Intel Corporation. UNIX is a trademark of The Open Group. All other product names mentioned herein may be trademarks of their respective companies. Confidential computer software. Valid license from Compaq required for possession, use or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor’s standard commercial license. Compaq shall not be liable for technical or editorial errors or omissions contained herein. The information in this docu- ment is provided ‘as is’ without warranty of any kind and is subject to change without notice.
    [Show full text]
  • Oracle® Documaker Programmer's Guid
    Oracle® Documaker Programmer’s Guide version 12.1 Part number: E2258 2-01 June 2012 Copyright © 2010, 2012, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompil ation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error -free. If you find any errors, please report them to us in writing. If this software or related documentation is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and tech nical data delivered to U.S. Government customers are “commercial computer software” or “commercial technical data” pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, the use, duplication, discl osure, modification, and adaptation shall be subject to the restrictions and license terms set forth in the applicable Government contract, and, to the extent applicable by the terms of the Government contract, the additional rights set forth in FAR 52.227 -19, Commercial Computer Software License (December 2007). Oracle USA, Inc., 500 Oracle Parkway, Redwood City, CA 94065.
    [Show full text]
  • Intel® Parallel Studio XE 2015 Composer Edition for Fortran Windows* Installation Guide and Release Notes
    Intel® Parallel Studio XE 2015 Composer Edition for Fortran Windows* Installation Guide and Release Notes 6 August 2015 Table of Contents 1 Introduction ............................................................................................................................ 4 1.1 Changes in Update 5 ...................................................................................................... 4 1.2 Changes in Update 4 ...................................................................................................... 4 1.3 Changes in Update 3 ...................................................................................................... 4 1.4 Changes in Update 2 ...................................................................................................... 4 1.5 Changes in Update 1 ...................................................................................................... 5 1.6 Changes since Intel® Visual Fortran Composer XE 2013 SP1 (New in Intel® Parallel Studio XE 2015 Composer Edition) ........................................................................................... 5 1.7 Product Contents ............................................................................................................ 5 1.8 System Requirements .................................................................................................... 6 1.8.1 Visual Studio 2008* is Not Supported ..................................................................... 8 1.8.2 Windows XP* is Not Supported ..............................................................................
    [Show full text]