Introduction

Total Page:16

File Type:pdf, Size:1020Kb

Introduction Introduction Why 64-Bit Computing? The question of why we need 64-bit computing is often asked but rarely answered in a satisfactory manner. There are good reasons for the confusion surrounding the question. That is why first of all; let's look through the list of users who need 64 addressing and 64-bit calculations today: • Users of CAD, designing systems, simulators do need RAM over 4 GB. Although there are ways to avoid this limitation (for example, Intel PAE), it impacts the performance. Thus, the Xeon processors support the 36bit addressing mode where they can address up to 64GB RAM. The idea of this support is that the RAM is divided into segments, and an address consists of the numbers of segment and locations inside the segment. This approach causes almost 30% performance loss in operations with memory. Besides, programming is much simpler and more convenient for a flat memory model in the 64bit address space - due to the large address space a location has a simple address processed at one pass. A lot of design offices use quite expensive workstations on the RISC processors where the 64bit addressing and large memory sizes are used for a long time already. • Users of data bases. Any big company has a huge data base, and extension of the maximum memory size and possibility to address data directly in the data base is very costly. Although in the special modes the 32bit architecture IA32 can address up to 64GB memory, a transition to the flat memory model in the 64bit space is much more advantageous in terms of speed and ease of programming. • Scientific calculations. Memory size, a flat memory model and no limitation for processed data are the key factors here. Besides, some algorithms in the 64bit representation have a much simpler form. • Cryptography and safety ensuring applications get a great benefit from 64bit integer calculations. What is 64-bit computing? The labels "16-bit," "32-bit" or "64-bit," when applied to a microprocessor, characterize the processor's data stream. Although you may have heard the term "64-bit code," this designates code that operates on 64-bit data. In more specific terms, the labels "64-bit," 32-bit," etc. designate the number of bits that each of the processor's general-purpose registers (GPRs) can hold. So when someone uses the term "64-bit processor," what they mean is "a processor with GPRs that store 64-bit numbers." And in the same vein, a "64-bit instruction" is an instruction that operates on 64-bit numbers. In the diagram above black boxes are code, white boxes are data, and gray boxes are results. The instruction and code "sizes" are not to be taken literally, since they're intended to convey a general feel for what it means to "widen" a processor from 32 bits to 64 bits. Not all the data either in memory, the cache, or the registers is 64-bit data. Rather, the data sizes are mixed, with 64 bits being the widest. Note that in the 64-bit CPU pictured above, the width of the code stream has not changed; the same-sized opcode could theoretically represent an instruction that operates on 32-bit numbers or an instruction that operates on 64-bit numbers, depending on what the opcode's default data size is. On the other hand, the width of the data stream has doubled. In order to accommodate the wider data stream, the sizes of the processor's registers and the sizes of the internal data paths that feed those registers must be doubled. Now let's take a look at two programming models, one for a 32-bit processor and another for a 64-bit The registers in the 64-bit CPU pictured above are twice as wide as those in the 32- bit CPU, but the size of the instruction register (IR) that holds the currently executing instruction is the same in both processors. Again, the data stream has doubled in size, but the instruction stream has not. Finally, the program counter (PC) has also doubled in size. For the simple processor pictured above, the two types of data that it can process are integer data and address data. Ultimately, addresses are really just integers that designate a memory address, so address data is just a special type of integer data. Hence, both data types are stored in the GPRs and both integer and address calculations are done by the ALU. Many modern processors support two additional data types: floating-point data and vector data. Each of these two data types has its own set of registers and its own execution unit(s). The following table compares all four data types in 32-bit and 64- bit processors: Data Type Register Type Execution Unit x86 width x86-64 width Integer GPR ALU 32 64 Address GPR ALU OR AGU 32 64 Floating Point* FPR FPU 64 64 Vector VR VPU 128 128 *x87 uses 80-bit registers to do double-precision floating-point. The floats themselves are 64-bit, but the processor converts them to an internal, 80-bit format for increased precision when doing computations. From the table above that the difference the move to 64 bits makes is in the integer and address hardware. The floating-point and vector hardware stays the same. Now that we know what 64-bit computing is, let's take a look at the benefits of increased integer and data sizes. Dynamic range The main thing that a wider integer gives you is increased dynamic range. In the base-10 number system to which we're all accustomed, you can represent a maximum of ten integers (0 to 9) with a single digit. This is because base-10 has ten different symbols with which to represent numbers. To represent more than ten integers you need to add another digit, using a combination of two symbols chosen from among the set of ten to represent any one of 100 integers (00 to 99). The general formula that you can use to compute the number of integers (dynamic range, or DR) that you can represent with an n-digit base-ten number is: DR = 10n So a 1-digit number gives you 101 = 10 possible integers, a 2-digit number 102 = 100 integers, a 3-digit number 103 = 1000 integers, and so on. The base-2, or "binary," number system that computers use has only two symbols with which to represent integers: 0 and 1. Thus, a single-digit binary number allows you to represent only two integers, 0 and 1. With a two-digit (or "2-bit") binary, you can represent four integers by combining the two symbols (0 and 1) in any of the following four ways: 00 = 0 01 = 1 10 = 2 11 = 3 Similarly, a 3-bit binary number gives you eight possible combinations, which you can use to represent eight different integers. As you increase the number of bits, you increase the number of integers you can represent. In general, n bits will allow you to represent 2n integers in binary. So a 4-bit binary number can represent 24 or 16 integers, an 8-bit number gives you 28=256 integers, and so on. So in moving from a 32-bit GPR to a 64-bit GPR, the range of integers that a processor can manipulate goes from 232 = 4.3e9 to 264 = 1.8e19. The dynamic range, then, increases by a factor of 4.3 billion. Thus a 64-bit integer can represent a much larger range of numbers than a 32-bit integer. The benefits of increased dynamic range, Or, how the existing 64-bit computing market uses 64-bit integers? Since addresses are just special-purpose integers, an ALU and register combination that can handle more possible integer values can also handle that many more possible addresses. With all the recent press coverage that 64-bit architectures have garnered, it's fairly common knowledge that a 32-bit processor can address at most 4GB of memory. (Remember our 232 = 4.3 billion number? That 4.3 billion bytes is about 4GB.) A 64-bit architecture could theoretically, by contrast, address up to 18 million terabytes. So, what do you do with over 4GB of memory? Well, caching a very large database in it is a start. Back-end servers for mammoth databases are one place where 64 bits have long been a requirement, so it's no surprise to see upcoming 64-bit offerings billed as capable database platforms. On the media and content creation side of things, folks who work with very large 2D image files also appreciate the extra RAM. And a related, much interesting application domain where large amounts of memory come in handy is in simulation and modeling. Under this heading you could put various CAD tools and 3D rendering programs, as well as things like weather and scientific simulations, and even real- time 3D games. Though the current crop of 3D games wouldn't benefit from greater than 4GB of RAM, it is quite possible that we'll see a game that benefits from greater than 4GB RAM within the next five years. Some applications, mostly in the realm of scientific computing (MATLAB, Mathematica, MAPLE, etc.) and simulations, require 64-bit integers because they work with numbers outside the dynamic range of 32-bit integers. When the result of a calculation exceeds the range of possible integer values, you get a situation called either overflow (i.e. the result was greater than the highest positive integer) or underflow (i.e.
Recommended publications
  • A7N8X Series
    ® A7N8X Series User Manual Motherboard Product Name: A7N8X Checklist Manual Revision: Revised Edition V4 E1292 Release Date: April 2003 Copyright © 2003 ASUSTeK COMPUTER INC. All Rights Reserved. No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language in any form or by any means, except documentation kept by the purchaser for backup purposes, without the express written permission of ASUSTeK COMPUTER INC. (“ASUS”). Product warranty or service will not be extended if: (1) the product is repaired, modified or altered, unless such repair, modification of alteration is authorized in writing by ASUS; or (2) the serial number of the product is defaced or missing. Products and corporate names appearing in this manual may or may not be registered trademarks or copyrights of their respective companies, and are used only for identification or explanation and to the owners’ benefit, without intent to infringe. The product name and revision number are both printed on the product itself. Manual revisions are released for each product design represented by the digit before and after the period of the manual revision number. Manual updates are represented by the third digit in the manual revision number. For previous or updated manuals, BIOS, drivers, or product release information, contact ASUS at: http://www.asus.com or through any of the means indicated on the following page. ASUS PROVIDES THIS MANUAL “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
    [Show full text]
  • Tech Item List B
    PRODUCT TYPE PRODUCT_DESCRIPTION CD ROM AOPEN BLACK CD-ROM PANEL CDRW AOPEN BLACK CD-ROM COVER DVD AOPEN CD ROM, 56K ATAPI CD, CAV, 128K, 10,000KB, BULK ACER 52X CD-ROM COOL GREY COLOR RETAIL BOX ACER 52X24X52X CDRW BULK COOL GREY COLOR W/ACER LOGO BenQ 56X IDE CDROM, BEIGE RETAIL BOX DELTA 52X MAX CD-ROM BULK LITE-ON 52X CD-ROM, BULK, IBM WHITE LITE-ON 52X MAX CD-ROM, RETAIL PACKAGE IBM WHITE LITE-ON 52X CD-ROM, BULK, BLACK LITEON 48X24X48 CDRW RETAIL BOX LITEON 52X32X52 CDRW RETAIL BOX LITE ON CDRW 52X32X52 BULK LITE ON CDRW 52X32X52 BLACK BULK LITEON EXT CDRW 40X24X40X RETAIL BOX MSI 52X24X52 CDRW BEIGE BULK MSI CD-ROM 52X, BULK DRIVE, NO CABLES INCLUDED NEC CD-ROM 52X BULK, NO CABLES, BOOTABLE W/MICROSOFT WINDOWS NEC NTI SOFTWARE FOR NEC CDRW 24X10X40 AND 16X10X40, ONLY FO LITEON DVD COMBO 48X24X48X16X BULK BLACK LITEON DVD COMBO 48X24X48X16X RETAIL BOX LITEON DVD-DUAL DRIVE 4X/4X/2X+40X24X40X DVD+RW/DVD-R/DVD-RW LITEON DVD+RW 4X/4X/12X+40X24X40X DVD+RW DRIVE RETAIL BOX NEC DVD-RW 4X2. 4X4X BULK WITH SOFTWARE LITE ON DVD 16X 48 CDROM BULK SW, & CABLE LITE ON DVD 16X 48 CDROM RETAIL PACK, SOFTWARE, MANUAL LITE-ON 16X48 DVD, BULK, BLACK AMD CPU AMD ATHLON 64 BIT PROCCESSOR, 3200+ BOX AMD DURON 1100MHZ BOX CPU AMD DURON 950MHZ CPU TRAY AMD DURON 1600 MHZ, FSB266 MHZ, 64K CACHE MEM, TRAY AMD ATHLON MP 2000 BOX, FOR SERVER / WORKSTATION AMD ATHLON XP 2000+ THROUGHBRED (1667 MHZ) BOX FSB 266MHZ.
    [Show full text]
  • CHAPTER 4 Motherboards and Buses 05 0789729741 Ch04 7/15/03 4:03 PM Page 196
    05 0789729741 ch04 7/15/03 4:03 PM Page 195 CHAPTER 4 Motherboards and Buses 05 0789729741 ch04 7/15/03 4:03 PM Page 196 196 Chapter 4 Motherboards and Buses Motherboard Form Factors Without a doubt, the most important component in a PC system is the main board or motherboard. Some companies refer to the motherboard as a system board or planar. The terms motherboard, main board, system board, and planar are interchangeable, although I prefer the motherboard designation. This chapter examines the various types of motherboards available and those components typically contained on the motherboard and motherboard interface connectors. Several common form factors are used for PC motherboards. The form factor refers to the physical dimensions (size and shape) as well as certain connector, screw hole, and other positions that dictate into which type of case the board will fit. Some are true standards (meaning that all boards with that form factor are interchangeable), whereas others are not standardized enough to allow for inter- changeability. Unfortunately, these nonstandard form factors preclude any easy upgrade or inexpen- sive replacement, which generally means they should be avoided. The more commonly known PC motherboard form factors include the following: Obsolete Form Factors Modern Form Factors All Others ■ Baby-AT ■ ATX ■ Fully proprietary designs ■ Full-size AT ■ micro-ATX (certain Compaq, Packard Bell, Hewlett-Packard, ■ ■ LPX (semiproprietary) Flex-ATX notebook/portable sys- ■ WTX (no longer in production) ■ Mini-ITX (flex-ATX tems, and so on) ■ ITX (flex-ATX variation, never variation) produced) ■ NLX Motherboards have evolved over the years from the original Baby-AT form factor boards used in the original IBM PC and XT to the current ATX and NLX boards used in most full-size desktop and tower systems.
    [Show full text]
  • View Annual Report
    FORM 10−K/A NVIDIA CORP − NVDA Filed: November 29, 2006 (period: January 29, 2006) Amendment to a previously filed 10−K Table of Contents Part I Item 1 Business as to Forward−Looking Statements and Available Information ; Part II Item 5 Market for Registrant s Common Equity, Related Stockholder Matters and Issuer Purchas Part IV Item 15 Exhibits and Financial Statement Schedules. Item 1. Business 1 ITEM 1. BUSINESS ITEM 1A. RISK FACTORS ITEM 1B. UNRESOLVED STAFF COMMENTS ITEM 2. PROPERTIES ITEM 3. LEGAL PROCEEDINGS ITEM 4. SUBMISSION OF MATTERS TO A VOTE OF SECURITY HOLDERS PART II ITEM 5. MARKET FOR REGISTRANT S COMMON EQUITY, RELATED STOCKHOLDER MATTERS AND ISSUER PURCHASES OF E ITEM 6. SELECTED FINANCIAL DATA ITEM 7. MANAGEMENT S DISCUSSION AND ANALYSIS OF FINANCIAL CONDITION AND RESULTS OF OPERATIONS ITEM 7A. QUANTITATIVE AND QUALITATIVE DISCLOSURES ABOUT MARKET RISK ITEM 8. CONSOLIDATED FINANCIAL STATEMENTS AND SUPPLEMENTARY DATA ITEM 9. CHANGES IN AND DISAGREEMENTS WITH ACCOUNTANTS ON ACCOUNTING AND FINANCIAL DISCLOSURE ITEM 9A. CONTROLS AND PROCEDURES ITEM 9B. OTHER INFORMATION PART III ITEM 10. DIRECTORS AND EXECUTIVE OFFICERS OF THE REGISTRANT ITEM 11. EXECUTIVE COMPENSATION ITEM 12. SECURITY OWNERSHIP OF CERTAIN BENEFICIAL OWNERS AND MANAGEMENT AND RELATED STOCKHOLDER MATT ITEM 13. CERTAIN RELATIONSHIPS AND RELATED TRANSACTIONS ITEM 14. PRINCIPAL ACCOUNTING FEES AND SERVICES PART IV ITEM 15. EXHIBITS, FINANCIAL STATEMENT SCHEDULES SIGNATURES EXHIBIT INDEX EX−23.1 (CONSENT OF PRICEWATERHOUSECOOPERS LLP) EX−23.2 (CONSENT OF KPMG LLP) EX−31.1 (RULE 13A−14(A) CERTIFICATION OF CHIEF EXECUTIVE OFFICER) EX−31.2 (RULE 13A−14(A) CERTIFICATION OF CHIEF FINANCIAL OFFICER) EX−32.1 (STATEMENT OF THE CHIEF EXECUTIVE OFFICER UNDER RULE 13A−14(B)) EX−32.2 (STATEMENT OF THE CHIEF FINANCIAL OFFICER UNDER RULE 13A−14(B)) EX−99.1 (NVIDIA CORPORATION AND SUBSIDIARIES SELECTED CONSOLIDATED FINANCIAL DATA) Table of Contents UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C.
    [Show full text]
  • Technical Brief
    Technical Brief Fast Texture Downloads and Readbacks using Pixel Buffer Objects in OpenGL August 2005 TB-02011-001_v01 Document Change History Version Date Responsible Reason for Change 01 00/00/00 Initial release 02 08/17/05 Ikrima Added Chris, Mark, and Eric’s suggestions Elhassan 03 08/17/05 Ikrima Added perf #s and section about motherboards & Elhassan chipsets DA-00xxx-001_v01 i 9/28/2005 NVIDIA CONFIDENTIAL Preface Bandwidth bottleneck is a common occurrence in many applications. This technical brief discusses how to achieve efficient bandwidth rates in your application, including transfers from and to the graphics processing unit (GPU). Ikrima Elhassan [email protected] NVIDIA Corporation 2701 San Tomas Expressway Santa Clara, CA 95050 August 16, 2005 TB-02011-001_v01 1 08/17/05 Achieving Efficient Bandwidth Rates Graphics applications are often bandwidth bound. To make matters worse, non PCI-e video cards have asymmetric bandwidth rates, with slower readback rates than download rates. Unfortunately, applications often require reading the frame buffer. For example, some applications write intermediary results to the frame buffer and use it as an input to additional rendering or computation passes. This paper aims to discuss ways to achieve fast transfers by: Using an nForce3 or comparable AGP chipset Using pixel sizes that are multiples of 32 bits to avoid data padding. Storing 8-bit textures in a BGRA layout in system memory and use the GL_BGRA as the external format for textures to avoid swizzling. Using a PBO to transfer data to and from the GPU. If possible, using multiple PBOs to implement an asynchronous readback scheme.
    [Show full text]
  • A7N8X-VM Front Matter.P65
    A7N8X-VM/400 User Guide Motherboard E1480 Checklist First Edition V1 December 2003 Copyright © 2003 ASUSTeK COMPUTER INC. All Rights Reserved. No part of this manual, including the products and software described in it, may be reproduced, transmitted, transcribed, stored in a retrieval system, or translated into any language in any form or by any means, except documentation kept by the purchaser for backup purposes, without the express written permission of ASUSTeK COMPUTER INC. (“ASUS”). Product warranty or service will not be extended if: (1) the product is repaired, modified or altered, unless such repair, modification of alteration is authorized in writing by ASUS; or (2) the serial number of the product is defaced or missing. ASUS PROVIDES THIS MANUAL “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL ASUS, ITS DIRECTORS, OFFICERS, EMPLOYEES OR AGENTS BE LIABLE FOR ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES (INCLUDING DAMAGES FOR LOSS OF PROFITS, LOSS OF BUSINESS, LOSS OF USE OR DATA, INTERRUPTION OF BUSINESS AND THE LIKE), EVEN IF ASUS HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES ARISING FROM ANY DEFECT OR ERROR IN THIS MANUAL OR PRODUCT. SPECIFICATIONS AND INFORMATION CONTAINED IN THIS MANUAL ARE FURNISHED FOR INFORMATIONAL USE ONLY, AND ARE SUBJECT TO CHANGE AT ANY TIME WITHOUT NOTICE, AND SHOULD NOT BE CONSTRUED AS A COMMITMENT BY ASUS. ASUS ASSUMES NO RESPONSIBILITY OR LIABILITY FOR ANY ERRORS OR INACCURACIES THAT MAY APPEAR IN THIS MANUAL, INCLUDING THE PRODUCTS AND SOFTWARE DESCRIBED IN IT.
    [Show full text]
  • PROMO Genius Speaker SW-5.1 Home Theater
    Genius Speaker SW-5.1 Home Theater / Lemn 399 439.00 16/8/16/6/4/-/16x Nec DVD±RW ND-3540A DL 149 162.00 Creative Sound Blaster AUDIGY SE 7.1 89 106.60 PROMO 256Mb Corsair DDR 400MHz CL2.5 (3-3-8) 85 99.00 Week 2 / 09.01.2005 – 15.12.2005 410583 Oradea, Nufarului 22 • e-mail: [email protected] • tel.: +4 0259 472113 (2 linii) • RDSTel: +4 0359 401802 (2 linii) • fax: +4 0259 474113 FARA TVA FARA TVA CU TVA FARA TVA CU TVA G PRODUS USD EURO ROL RON RON 36 ASUS MOTHERBOARD / Socket 754 / 3 YEARS 36 ↓ Asus K8U-X / SiS760GX/965L / Socket 754 52.94 44.97 1992000 167.39 199.20 36 ↓ Asus K8V-MX / K8M800 / Socket 754 62.06 52.72 2335000 196.22 233.50 36 ↓ Asus K8V-X SE / K8T800 / Socket 754 60.97 51.79 2294000 192.77 229.40 36 ↓ Asus K8V SE Deluxe / K8T800 / Socket 754 76.49 64.98 2878000 241.85 287.80 36 ↓ Asus K8N / nForce3 250 / Socket 754 66.87 56.81 2516000 211.43 251.60 36 ↓ Asus K8N-E Deluxe / nForce3 250 / Socket 754 83.45 70.89 3140000 263.87 314.00 36 ↓ Asus K8N4-E / nForce4 250 / Socket 754 80.23 68.16 3019000 253.70 301.90 36 ↓ Asus K8N4-E Deluxe / nForce4 250 / Socket 754 90.94 77.26 3422000 287.56 342.20 36 ASUS MOTHERBOARD / Socket 939 / 3 YEARS 36 ↓ Asus A8S-X / SiS756 / Socket 939 79.17 67.26 2979000 250.34 297.90 36 ↓ Asus A8V-MX / K8M800 / Socket 939 73.83 62.72 2778000 233.45 277.80 36 ↓ Asus A8V / K8T800PRO / Socket 939 88.79 75.43 3341000 280.76 334.10 36 ↓ Asus A8V-DELUXE / K8T800PRO / Socket 939 99.50 84.53 3744000 314.62 374.40 36 ↓ Asus A8V DELUXE WiFi / K8T800PRO / Socket 939 116.08 98.62 4368000 367.06 436.80 36 ↓ Asus
    [Show full text]
  • NVIDIA Nforce Mcps Analyst Day 2004 Drew Henry – GM, Platform Processors NVIDIA Focus on Key Technologies of the “Networked Digital Media” Era
    NVIDIA nForce MCPs Analyst Day 2004 Drew Henry – GM, Platform Processors NVIDIA Focus on Key Technologies of the “Networked Digital Media” Era Graphics and Video Network, Media, and Processing Connectivity Processing (GPUs) (MCPs) Digital Media Software ©2004 NVIDIA Corporation. All rights reserved. Worldwide Critical Acclaim For nForce2 ©2004 NVIDIA Corporation. All rights reserved. Highly Regarded by Top Reviewers “We wouldn't recommend a lesser chip set than the NVIDIA nForce2 ….” PC Magazine “Best Innovation in Chipsets” “Best Innovation in Motherboards” Tom’s Hardware Guide “Manufacturer of the Year 2003” PC Games Hardware ©2004 NVIDIA Corporation. All rights reserved. Outstanding Market Share Growth in AMD 45% 40% 35% 30% 25% 20% 15% Share 10% 5% 0% Q1 Q2 Q3 Q4 Q1 Q2 Q3 Q4 2002 2002 2002 2002 2003 2003 2003 2003 Source: Mercury Research and NVIDIA ©2004 NVIDIA Corporation. All rights reserved. Designed for the PC Customer Gamer’s Bedroom Home Office Family Room ©2004 NVIDIA Corporation. All rights reserved. nForce2 Ultra 400 Outstanding Gaming Platform Uncompromised System Performance Unmatched Features Immersive Surround Sound Amazing Online Experiences ©2004 NVIDIA Corporation. All rights reserved. nForce2 with GeForce4 MX Graphics The Media PC for the Family Room Stunning digital audio for movies and music Home Media Server Feature-Rich graphics drive an interactive experience High-Speed networking for fast and easy streaming media ©2004 NVIDIA Corporation. All rights reserved. Solutions for Corporations ©2004 NVIDIA Corporation. All rights reserved. nForce2 with GeForce4 MX Graphics The Perfect Corporate PC Unified Driver Architecture Enterprise Class Networking Low Total Cost of Ownership nView Multi-Monitor ©2004 NVIDIA Corporation.
    [Show full text]
  • Forceware Graphics Driver User's Guide
    nViewGuide_.book Page 1 Tuesday, March 1, 2005 1:00 PM ForceWare Graphics Driver User’s Guide Driver Version: 71.84 for Windows NVIDIA Corporation March 2005 nViewGuide_.book Page 2 Tuesday, March 1, 2005 1:00 PM NVIDIA ForceWare Graphics Drivers User’s Guide Published by NVIDIA Corporation 2701 San Tomas Expressway Santa Clara, CA 95050 Copyright © 2005 NVIDIA Corporation. All rights reserved. This software may not, in whole or in part, be copied through any means, mechanical, electromechanical, or otherwise, without the express permission of NVIDIA Corporation. Information furnished is believed to be accurate and reliable. However, NVIDIA assumes no responsibility for the consequences of use of such information nor for any infringement of patents or other rights of third parties, which may result from its use. No License is granted by implication or otherwise under any patent or patent rights of NVIDIA Corporation. Specifications mentioned in the software are subject to change without notice. NVIDIA Corporation products are not authorized for use as critical components in life support devices or systems without express written approval of NVIDIA Corporation. NVIDIA, the NVIDIA logo, Detonator, Digital Vibrance Control, ForceWare, GeForce, nForce, nView, NVKeystone, NVRotate, Personal Cinema, PowerMizer, Quadro, RIVA, TNT, TNT2, TwinView, and Vanta are registered trademarks or trademarks of NVIDIA Corporation in the United States and/or other countries. International Color Consortium and the ICC logo are registered trademarks of the International Color Consortium. Intel and Pentium are registered trademarks of Intel. DirectX, Microsoft, Microsoft Internet Explorer logo, Outlook, PowerPoint, Windows, Windows logo, Windows NT, and/or other Microsoft products referenced in this guide are either registered trademarks or trademarks of Microsoft Corporation in the U.S.
    [Show full text]
  • INTEL's TOP CPU the Pentium 4 3.4Ghz Extreme Edition Intel
    44> 7625274 81181 Chips and chipsets. They’re the heart of any computing system, and as usual, we have packed this issue of PC Modder with dozens of pos- sible processor and motherboard matchups. Our Case Studies will THE PARTS SHOP help you discover what sort of performance you can expect to 19 AMD’s Top CPU achieve when overclocking various chip and chipset combos. When The Athlon 64 FX53 you’re ready to crank up your own silicon, our Cool It articles will provide tips on keeping excess heat under control. And then when 20 Intel’s Top CPU it’s time to build the ultimate home for your motherboard, our Cut Pentium 4 3.4GHz Extreme Edition It section will give you some case ideas to drool over. Whether you’re a modding novice or master, you’ll find this issue is filled with all the 21 Grantsdale Grants Intel Users’ Wishes tips and tools you need to build faster and more beautiful PCs. New i915 Chipset Adds Many New Technologies 22 Special FX SiS Adds Support For AMD’s FIRST-TIMERS Athlon 64FX CPU 4 The Need For Speed 23 Chipset Entertainment Take Your CPU To Ultimate Heights VIA’s PM880 Chipset One Step At A Time Ready For Media PCs 8 Cutting Holes & Taking Names & HDTV Your First Case Mod 24 May The 12 Water For First-Timers Force Be Tips To Help Watercooling With You Newbies Take The Plunge NVIDIA’s nForce3 Chipset 16 Benchmark Basics A Primer On 25 Essential Overclocking Utilities Measuring Power Modding Is As Much About The Your PC’s Right Software As The Right Hardware Performance 31 Sizing Up Sockets How Your Processor Saddles Up 33 The Mad Modder’s Toolkit Minireviews, Meanderings & Musings Copyright 2004 by Sandhills Publishing Company.
    [Show full text]
  • NVIDIA NFORCE PRODUCT FAMILY Product Linecard 08.02.V08 for AMD® ATHLON™ & DURON™ PROCESSORS
    NVIDIA NFORCE PRODUCT FAMILY Product Linecard 08.02.v08 FOR AMD® ATHLON™ & DURON™ PROCESSORS CHIPSET AUDIO NETWORKING CONNECTIVITY GRAPHICS MEMORY CONTROLLER nForce™ Audio Processing Unit (APU), Choice of DualNet™*, NVIDIA USB 2.0, ATA133 nForce2-GT NVIDIA® SoundStorm™ Compatible Networking and/or 3Com® Networking IEEE1394a/FireWire nForce2-G AC '97 NVIDIA Networking USB 2.0, ATA133 GeForce4™ MX DDR400/333/266 + 8X/4X AGP slot NVIDIA DualDDR Memory Architecture 128-bit Memory Interface nForce2-ST nForce Audio Processing Unit (APU), Choice of DualNet*, NVIDIA USB 2.0, ATA133 NVIDIA SoundStorm Compatible Networking and/or 3Com Networking IEEE1394a/FireWire plus 266 or 333MHz 8X/4X AGP Add-in Card frontside bus nForce2-S AC '97 NVIDIA Networking USB 2.0, ATA133 nForce 430-T nForce Audio Processing Unit (APU), Choice of DualNet*, NVIDIA USB 2.0, ATA133 NVIDIA SoundStorm Compatible Networking and/or 3Com Networking IEEE1394a/FireWire nForce 430 AC '97 USB 2.0, ATA133 nForce Audio Processing Unit (APU), nForce 420-D NVIDIA SoundStorm Compatible GeForce2™ DDR266 + 4X AGP slot TwinBank™ Memory Architecture 128-bit Memory Interface nForce 420 AC '97 NVIDIA Networking USB 1.1, ATA100 nForce Audio Processing Unit (APU), nForce 415-D NVIDIA SoundStorm Compatible 4X AGP Add-in Card nForce 415 AC '97 nForce Audio Processing Unit (APU), Choice of DualNet*, NVIDIA USB 2.0, ATA133 nForce 230-T NVIDIA SoundStorm Compatible Networking and/or 3Com Networking IEEE1394a/FireWire nForce 230 AC '97 USB 2.0, ATA133 DDR266 64-bit Memory Interface nForce Audio Processing Unit (APU), NVIDIA Networking nForce 220-D GeForce2 NVIDIA SoundStorm Compatible USB 1.1, ATA100 + 4X AGP slot nForce 220 AC '97 *DualNet - Two Networking Ports NVIDIA Corporation NVIDIA Corporation Europe 2701 San Tomas Expressway Theale Court, 11-13 High Street, Theale, Santa Clara, CA 95050 Reading, Berkshire, RG7 5AH United Kingdom T +1 (408) 486 2000 F +1 (408) 486 2200 T +44 (118) 903 3000 F +44 (118) 930 5691 www.nvidia.com www.nvidia.com Registered trademark NVIDIA® Corporation, 2002.
    [Show full text]
  • FORM 10−K NVIDIA CORP − NVDA Filed: March 16, 2007 (Period: January 28, 2007)
    FORM 10−K NVIDIA CORP − NVDA Filed: March 16, 2007 (period: January 28, 2007) Annual report which provides a comprehensive overview of the company for the past year Table of Contents PART I Item 1. Business 1 PART I ITEM 1. BUSINESS ITEM RISK FACTORS 1A. ITEM 1B. UNRESOLVED STAFF COMMENTS ITEM 2. PROPERTIES ITEM 3. LEGAL PROCEEDINGS ITEM 4. SUBMISSION OF MATTERS TO A VOTE OF SECURITY HOLDERS PART II ITEM 5. MARKET FOR REGISTRANT S COMMON EQUITY, RELATED STOCKHOLDER MATTERS AND ISSUER PURCHASES OF E ITEM 6. SELECTED FINANCIAL DATA ITEM 7. MANAGEMENT S DISCUSSION AND ANALYSIS OF FINANCIAL CONDITION AND RESULTS OF OPERATIONS ITEM QUANTITATIVE AND QUALITATIVE DISCLOSURES ABOUT MARKET RISK 7A. ITEM 8. CONSOLIDATED FINANCIAL STATEMENTS AND SUPPLEMENTARY DATA ITEM 9. CHANGES IN AND DISAGREEMENTS WITH ACCOUNTANTS ON ACCOUNTING AND FINANCIAL DISCLOSURE ITEM CONTROLS AND PROCEDURES 9A. ITEM 9B. OTHER INFORMATION PART III ITEM 10. DIRECTORS, EXECUTIVE OFFICERS AND CORPORATE GOVERNANCE ITEM 11. EXECUTIVE COMPENSATION ITEM 12. SECURITY OWNERSHIP OF CERTAIN BENEFICIAL OWNERS AND MANAGEMENT AND RELATED STOCKHOLDER MATT ITEM 13. CERTAIN RELATIONSHIPS AND RELATED TRANSACTIONS, AND DIRECTOR INDEPENDENCE ITEM 14. PRINCIPAL ACCOUNTANTS FEES AND SERVICES PART IV ITEM 15. EXHIBITS, FINANCIAL STATEMENT SCHEDULES SIGNATURES EXHIBIT INDEX EX−21.1 (FY 2007 SUBSIDIARIES) EX−23.1 (FY 2007 PWC CONSENT) EX−31.1 (FY 2007 302 CERTIFICATION OF CEO) EX−31.2 (FY 2007 302 CERTIFICATION OF CFO) EX−32.1 (FY 2007 906 CERTIFICATION OF CEO) EX−32.2 (FY2007 906 CERTIFICATION OF CFO) UNITED STATES SECURITIES AND EXCHANGE COMMISSION Washington, D.C. 20549 ________________ FORM 10−K [x] ANNUAL REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934 For the fiscal year ended January 28, 2007 OR [_] TRANSITION REPORT PURSUANT TO SECTION 13 OR 15(d) OF THE SECURITIES EXCHANGE ACT OF 1934 Commission file number: 0−23985 NVIDIA CORPORATION (Exact name of registrant as specified in its charter) Delaware 94−3177549 (State or Other Jurisdiction of (I.R.S.
    [Show full text]