Presented by Leo Pleše ScienceUp.org

Slides:



Advertisements
Similar presentations
COMP2130 Winter 2015 Storing signed numbers in memory.
Advertisements

Tanenbaum, Structured Computer Organization, Fifth Edition, (c) 2006 Pearson Education, Inc. All rights reserved Floating-point Numbers.
CS 447 – Computer Architecture Lecture 3 Computer Arithmetic (2)
Computer ArchitectureFall 2007 © September 5, 2007 Karem Sakallah CS 447 – Computer Architecture.
Floating Point Numbers. CMPE12cCyrus Bazeghi 2 Floating Point Numbers Registers for real numbers usually contain 32 or 64 bits, allowing 2 32 or 2 64.
Booth’s Algorithm.
Lecture 3 Number Representation 2 This week – Recap Addition – Addition circuitry – Subtraction of integers in binary – Representing numbers with fractional.
Chapter 5 Floating Point Numbers. Real Numbers l Floating point representation is used whenever the number to be represented is outside the range of integer.
Representing Real Numbers Using Floating Point Notation Lecture 6 CSCI 1405, CSCI 1301 Introduction to Computer Science Fall 2009.
Quiz 1.1 Convert the following unsigned binary numbers to their decimal equivalent: Number2 Number
Computer ArchitectureFall 2008 © August 27, CS 447 – Computer Architecture Lecture 4 Computer Arithmetic (2)
Floating Point Numbers.  Floating point numbers are real numbers.  In Java, this just means any numbers that aren’t integers (whole numbers)  For example…
The Binary Number System
Binary Real Numbers. Introduction Computers must be able to represent real numbers (numbers w/ fractions) Two different ways:  Fixed-point  Floating-point.
Factional Values What is 0.75 in binary?. How could we represent fractions? In decimal: – As fractions : 1/5.
Introduction to Numerical Analysis I
Floating Point. Agenda  History  Basic Terms  General representation of floating point  Constructing a simple floating point representation  Floating.
Computer Science Engineering B.E.(4 th sem) c omputer system organization Topic-Floating and decimal arithmetic S ubmitted to– Prof. Shweta Agrawal Submitted.
Binary Fractions. Fractions A radix separates the integer part from the fraction part of a number Columns to the right of the radix have negative.
The Teacher CP4 Binary and all that… CP4 Revision.
Using Properties of Exponents
ITEC 1011 Introduction to Information Technologies 4. Floating Point Numbers Chapt. 5.
The Teacher CP4 Binary and all that… CP4 Revision.
1 Number Systems Lecture 10 Digital Design and Computer Architecture Harris & Harris Morgan Kaufmann / Elsevier, 2007.
Fractions in Binary.
CSPP58001 Floating Point Numbers. CSPP58001 Floating vs. fixed point Floating point refers to a binary decimal representation where there is not a fixed.
Floating Point in Binary 1.Place Value Chart:
Data Representation: Floating Point for Real Numbers Computer Organization and Assembly Language: Module 11.
COMPUTER SCIENCE Data Representation and Machine Concepts Section 1.7 Instructor: Lin Chen Sept 2013.
How to write numbers in Scientific Notation Scientific Notation is a standard way of writing very large and small numbers so that they’re easier to use.
10/7/2004Comp 120 Fall October 7 Read 5.1 through 5.3 Register! Questions? Chapter 4 – Floating Point.
Lecture 6: Floating Point Number Representation Information Representation: Floating Point Number Representation Lecture # 7.
Fixed-point and floating-point numbers Ellen Spertus MCS 111 October 4, 2001.
Software Design and Development Storing Data Computing Science.
Chapter 9 Computer Arithmetic
FLOATING-POINT NUMBER REPRESENTATION
CSCI206 - Computer Organization & Programming
Floating Point. Binary Fractions.
Floating Points & IEEE 754.
Floating Point Numbers
Introduction to Numerical Analysis I
Nat 4/5 Computing Science Lesson 1: Binary
Department of Computer Science Georgia State University
Fundamentals of Computer Science
Introduction To Computer Science
Computer Architecture & Operations I
Overview Introduction Data representation Fixed Point Representation
Recap Add these numbers together in binary
Luddy Harrison CS433G Spring 2007
CSCI206 - Computer Organization & Programming
Number Representations
BCD = Binary Coded Decimal
Floating Point Representation
ECEG-3202 Computer Architecture and Organization
Starter Using the fingers on only one hand, what is the highest number you can count to? Rules: You must start at 1 You must count sequentially (i.e.
Numbers representations
Storing Integers and Fractions
Representation of real numbers
COMS 161 Introduction to Computing
CS 286 Computer Architecture & Organization
10-4 Common Logarithms Objective:
Numbers with fractions Could be done in pure binary
Number Representations
Presentation transcript:

Presented by Leo Pleše ScienceUp.org FLOPS Presented by Leo Pleše ScienceUp.org

What is FLOPS? floating-point operations per second FLOP measure of computer performance kFLOPS, MFLOPS, GFLOPS, TFLOPS, PFLOPS, EFLOPS… performance of supercomputers

Where is it used? scientific calculations accuracy (FLOPS better than IPS) kIPS, MIPS, GIPS Fixed-point numbers – integers Floating-point numbers – real numbers

Decimal → binary floating-point −23.65 (10) =− 10111+0.10 1 00 1 2 =− 10111.10 1 00 1 (2)

Floating-point notation (32-bit) - IEEE-754 − 10111.10 1 00 1 2 =− 1.011110 1 00 1 ∙ 2 4 (2) 1 1 1 1 1 1 sign exponent / characteristic mantissa

Thanks for watching!