Out of order execution allows

Size: px
Start display at page:

Download "Out of order execution allows"

Transcription

1 Out of order execution allows Letter A B C D E Answer Requires extra stages in the pipeline The processor to exploit parallelism between instructions. Is used mostly in handheld computers A, B, and C A and B 1

2 CMP is short for Letter A B C D E Answer Compare Common mode parallelism Cache Mostly Programs Chip Multiprocessor Concurrent Machine Programming 2

3 Coherence and consistency affect Letter A B C D E Answer The order in which memory operations take affect How your food tastes. How an OOO processor can execute add instructions The number of cores that can be in a CMP The depth of a processors pipeline. 3

4 The final is Letter A B C D E Answer Only about topics covered on evennumbered days of the course All multiple choice, and the answers are all B Comprehensive Similar in format to the midterm C and D 4

5 CAPEs Letter A B C D E Answer Are for super heroes. Are open until the start of finals week Are very important. All of the above. None of the above. 5

6 TA Evaluations and CAPE Please fill out your TA evaluations You should have received a link to do so. CAPEs are also open. Clicker evaluation: wanson 6

7 Final review Come with questions Next Tuesday (the lecture will probably be brief) Next Thursday The final is comprehensive Look over the slides, homeworks, quizzes, and midterm 6/10/2014 8:00am-11:00am in this room

8 Storage Steven Swanson

9 Humanity processed 9 Zettabytes in 2008* Welcome to the Data Age! * 9

10 Solid State Memories NAND flash Ubiquitous, cheap Sort of slow, idiosyncratic Phase change, Spin torque MRAMs, etc. On the horizon DRAM-like speed DRAM or flash-like density 10

11 Bandwidth Relative to disk x 2.4x/yr PCIe-PCM (2010) PCIe-Flash (2012) DDR Fast NVM (2016?) Hard Drives (2006) PCIe-Flash (2007) PCIe-PCM (2013?) 7200x 2.4x/yr /Latency Relative To Disk 11

12 Disk Density 1 Tb/sqare inch 12 1

13 Hard drive Cost Today at newegg.com: $0.04 GB ($ /MB) Desktop, 2 TB 13 1

14 Why Are Disks Slow? They have moving parts :-( The disk itself and the a head/arm The head can only read at one spot. High end disks spin at 15,000 RPM Data is, on average, 1/2 an revolution away: 2ms Power consumption limits spindle speed Why not run it in a vacuum? The head has to position itself over the right track Currently about 150,000 tracks per inch. Positioning must be accurate with about 175nm Takes 3-13ms 14 1

15 Making Disks Faster Caching Everyone tries to cache disk accesses! The OS The disk controller The disk itself. Access scheduling Reordering accesses can reduce both rotational and seek latencies 15 1

16 RAID! Redundant Array of Independent (Inexpensive) Disks If one disk is not fast enough, use many Multiplicative increase in bandwidth Multiplicative increase in Ops/Sec Not much help for latency. If one disk is not reliable enough, use many. Replicate data across the disks If one of the disks dies, use the replica data to continue running and re-populate a new drive. Historical foot note: RAID was invented by one of the text book authors (Patterson) 16 1

17 RAID Levels There are several ways of ganging together a bunch of disks to form a RAID array. They are called levels Regardless of the RAID level, the array appears to the system as a sequence of disk blocks. The levels differ in how the logical blocks are arranged physically and how the replication occurs. 17 1

18 RAID 0 Double the bandwidth. For an n-disk array, the n- th block lives on the n-th disk. Worse for reliability If one of your drives dies, all your data is corrupt-- you have lost every nth block. 18 1

19 RAID 1 Mirror your data 1/2 the capacity But, you can tolerate a disk failure. Double the bandwidth for reads Same bandwidth for writes. 19 1

20 Stripe your data across a bunch of disks Use one bit to hold parity information The number of 1 s at corresponding locations across the drives is always even. If you lose on drive, you can reconstruct it from the others. Read and write all the disks in parallel. 20 2

21 The Flash Juggernaut

22 Flash is Fast! Hard Drives PCIe-Flash 2007 Lat.: 7.1ms BW: 2.6MB/s 1x 1x 68us 250MB/s 104x 96x Random 4KB Reads from user space

23 Floating Gate Flash Operations Read 0V 1V 5V 0V 20V Program 20V Erase 0V 0V

24 Organizing Flash Cells into Chips

25 Organizing Flash Cells into Chips ~16K blocks/chip ~16-64Gbits/chip

26 Flash Operations Page: n-4 n-3 n-2 n-1 n Block 0 SLC: Single Level Cell Block 1 == 1 bit Block 2 Block n MLC: Multi Level Cell Erase Blocks Program Pages == 2 bits TLC: Triple Level Cell == 3 bits

27 Single-Level Cell Endurance: 100,000 Cycles Data retention: 10 years Read Latency: 25us Program Latency: us == 1 bit

28 Multi-Level Cell (2 bits) Endurance: ,000 Cycles Data retention: 3-10 years Read Latency: 25-37us Program Latency: us == 2 bits

29 Triple-level Cell (3bits) Endurance: ~ Cycles Data retention: 3 years Read Time: us Program Time: us == 3 bits

30 3D Nand SLC, MLC, and TLC NAND cells are 4F 2 devices F 2 per bit Higher densities require 3D designs Samsung has demonstrated 24 layers 2-4x density boost

31 Flash Failure Mechanisms Program/Erase (PE) Wear Permanent damaged to the gate oxide at each flash cell Caused by high program/erase voltages Damage causes charge to leak off the floating gate Program disturb Data corruption caused by interference from programming adjacent cells. No permanent damage

32 Making Disks out Flash Chips Read Pages Write Pages Erase Blocks Hierarchical addresses PE Wear Read Write Flat address space No wear limitations

33 Writing Data SSD Maintain a map between virtual logical block addresses and physical flash locations.

34 Writing more data When you overwrite data, it goes to a new location.

35 Flash Translation Layer (FTL) Software FTL Flash User Logical Block Address Flash Write pages in order Erase/Write granularity Wears out FTL Logical Physical map Wear leveling Power cycle recovery

36 Centralized FTL State Map Write Point LBA Physical Page Address 0 Block 5 Page 7 2k Block 27 Page 0 4k Block 10 Page Block Info Table Next Sequence Number: 12 Block Erased Erase Count Valid Page Count Sequence Number Bad Block Indicator 0 False False 1 True False 2 False False

37 Read Software 1. Read Data at LBA 2k 2. Map FTL Flash LBA Physical Page Address 0 Block 5 Page 7 2k Block 27 Page 0 4k Block 10 Page 2 3. Flash Operation

38 Write Mid Block Write to LBA 2k Write Point = Block 2, Page 5 Map LBA Physical Page Address 0 Block 5 Page 7 2k Block 0 Page 0 4k Block 10 Page Block Info Table Block Erased Erase Count Valid Page Count Next Sequence Number: 12 Sequence Number Bad Block Indicator 0 False False 1 True False 2 False False

39 Write Write to LBA 2k Map LBA Physical Page Address 0 Block 5 Page 7 2k Block 0 2 Page 0 5 4k Block 10 Page 2 Write Point = Block 2, Page 5 Write Point = Block 2, Page Block Info Table Block Erased Erase Count Valid Page Count Next Sequence Number: 12 Sequence Number Bad Block Indicator 0 False False 1 True False 2 False False

40 Block Info Table Block Erased Erase Count Erase Valid Page Count Sequence Number Bad Block Indicator 0 False False 1 False False 2 False False Move Valid Pages Block

41 Block Info Table Block Erased Erase Count Erase Valid Page Count Sequence Number Bad Block Indicator 0 False False 1 False False 2 False False Move Valid Pages Block Update: Map Valid Pg Counts etc

42 Block Info Table Block Erased Erase Count Erase Valid Page Count Sequence Number Bad Block Indicator 0 False False 1 False False 2 F T False Move Valid Pages Block Update: Map Valid Pg Counts etc.

Emerging Memory Technologies

Emerging Memory Technologies Report No. FI-NVM-EMT-1209 By: Josef Willer, Gregory Wong December 2009 2009 Forward Insights. All Rights Reserved. Reproduction and distribution of this publication in any form in whole or in part without

More information

High Performance Microprocessor Design and Automation: Overview, Challenges and Opportunities IBM Corporation

High Performance Microprocessor Design and Automation: Overview, Challenges and Opportunities IBM Corporation High Performance Microprocessor Design and Automation: Overview, Challenges and Opportunities Introduction About Myself What to expect out of this lecture Understand the current trend in the IC Design

More information

CSCI 120 Introduction to Computation Bits... and pieces (draft)

CSCI 120 Introduction to Computation Bits... and pieces (draft) CSCI 120 Introduction to Computation Bits... and pieces (draft) Saad Mneimneh Visiting Professor Hunter College of CUNY 1 Yes No Yes No... I am a Bit You may recall from the previous lecture that the use

More information

Impact of Intermittent Faults on Nanocomputing Devices

Impact of Intermittent Faults on Nanocomputing Devices Impact of Intermittent Faults on Nanocomputing Devices Cristian Constantinescu June 28th, 2007 Dependable Systems and Networks Outline Fault classes Permanent faults Transient faults Intermittent faults

More information

ESE534: Computer Organization. Today. Image Processing. Retiming Demand. Preclass 2. Preclass 2. Retiming Demand. Day 21: April 14, 2014 Retiming

ESE534: Computer Organization. Today. Image Processing. Retiming Demand. Preclass 2. Preclass 2. Retiming Demand. Day 21: April 14, 2014 Retiming ESE534: Computer Organization Today Retiming Demand Folded Computation Day 21: April 14, 2014 Retiming Logical Pipelining Physical Pipelining Retiming Supply Technology Structures Hierarchy 1 2 Image Processing

More information

Day 21: Retiming Requirements. ESE534: Computer Organization. Relative Sizes. Today. State. State Size

Day 21: Retiming Requirements. ESE534: Computer Organization. Relative Sizes. Today. State. State Size ESE534: Computer Organization Day 22: November 16, 2016 Retiming 1 Day 21: Retiming Requirements Retiming requirement depends on parallelism and performance Even with a given amount of parallelism Will

More information

Optimized Magnetic Flip-Flop Combined With Flash Architecture for Memory Unit Based On Sleep Transistor

Optimized Magnetic Flip-Flop Combined With Flash Architecture for Memory Unit Based On Sleep Transistor International Journal of Electrical Engineering. ISSN 0974-2158 Volume 8, Number 1 (2015), pp. 73-79 International Research Publication House http://www.irphouse.com Optimized Magnetic Flip-Flop Combined

More information

Digital Integrated Circuits EECS 312

Digital Integrated Circuits EECS 312 14 12 10 8 6 Fujitsu VP2000 IBM 3090S Pulsar 4 IBM 3090 IBM RY6 CDC Cyber 205 IBM 4381 IBM RY4 2 IBM 3081 Apache Fujitsu M380 IBM 370 Merced IBM 360 IBM 3033 Vacuum Pentium II(DSIP) 0 1950 1960 1970 1980

More information

Modified Generalized Integrated Interleaved Codes for Local Erasure Recovery

Modified Generalized Integrated Interleaved Codes for Local Erasure Recovery Modified Generalized Integrated Interleaved Codes for Local Erasure Recovery Xinmiao Zhang Dept. of Electrical and Computer Engineering The Ohio State University Outline Traditional failure recovery schemes

More information

ESE (ESE534): Computer Organization. Last Time. Today. Last Time. Align Data / Balance Paths. Retiming in the Large

ESE (ESE534): Computer Organization. Last Time. Today. Last Time. Align Data / Balance Paths. Retiming in the Large ESE680-002 (ESE534): Computer Organization Day 20: March 28, 2007 Retiming 2: Structures and Balance Last Time Saw how to formulate and automate retiming: start with network calculate minimum achievable

More information

Spec Sheet R&S SpycerBox family

Spec Sheet R&S SpycerBox family SpycerBox is Rohde & Schwarz DVS s fast and flexible storage solution. Choose one of the the versions that will be perfect for your workflow: Equipped with SSD technology SpycerBox reaches an internal

More information

Digital Integrated Circuits EECS 312. People. Exams. Purpose of Course and Course Objectives I. Grading philosophy. Grading and written feedback

Digital Integrated Circuits EECS 312. People. Exams. Purpose of Course and Course Objectives I. Grading philosophy. Grading and written feedback 14 12 10 8 6 IBM ES9000 Bipolar Fujitsu VP2000 IBM 3090S Pulsar 4 IBM 3090 IBM RY6 CDC Cyber 205 IBM 4381 IBM RY4 2 IBM 3081 Apache Fujitsu M380 IBM 370 Merced IBM 360 IBM 3033 Vacuum Pentium II(DSIP)

More information

Digital Integrated Circuits EECS 312. Review. Remember the ENIAC? IC ENIAC. Trend for one company. First microprocessor

Digital Integrated Circuits EECS 312. Review. Remember the ENIAC? IC ENIAC. Trend for one company. First microprocessor 14 12 10 8 6 IBM ES9000 Bipolar Fujitsu VP2000 IBM 3090S Pulsar 4 IBM 3090 IBM RY6 CDC Cyber 205 IBM 4381 IBM RY4 2 IBM 3081 Apache Fujitsu M380 IBM 370 Merced IBM 360 IBM 3033 Vacuum Pentium II(DSIP)

More information

Chapter 1: Data Storage. Copyright 2015 Pearson Education, Inc.

Chapter 1: Data Storage. Copyright 2015 Pearson Education, Inc. Chapter 1: Data Storage Chapter 1: Data Storage 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representing Information as Bit Patterns 1.5 The Binary System 1-2 Chapter 1: Data Storage

More information

VLSI Design: 3) Explain the various MOSFET Capacitances & their significance. 4) Draw a CMOS Inverter. Explain its transfer characteristics

VLSI Design: 3) Explain the various MOSFET Capacitances & their significance. 4) Draw a CMOS Inverter. Explain its transfer characteristics 1) Explain why & how a MOSFET works VLSI Design: 2) Draw Vds-Ids curve for a MOSFET. Now, show how this curve changes (a) with increasing Vgs (b) with increasing transistor width (c) considering Channel

More information

PRACE Autumn School GPU Programming

PRACE Autumn School GPU Programming PRACE Autumn School 2010 GPU Programming October 25-29, 2010 PRACE Autumn School, Oct 2010 1 Outline GPU Programming Track Tuesday 26th GPGPU: General-purpose GPU Programming CUDA Architecture, Threading

More information

SECONDARY STORAGE DEVICES: MAGNETIC TAPES AND CD-ROM

SECONDARY STORAGE DEVICES: MAGNETIC TAPES AND CD-ROM SECONDARY STORAGE DEVICES: MAGNETIC TAPES AND CD-ROM Contents of today s lecture: Magnetic Tapes Characteristics of magnetic tapes Data organization on 9-track tapes Estimating tape length requirements

More information

EECS150 - Digital Design Lecture 2 - CMOS

EECS150 - Digital Design Lecture 2 - CMOS EECS150 - Digital Design Lecture 2 - CMOS January 23, 2003 John Wawrzynek Spring 2003 EECS150 - Lec02-CMOS Page 1 Outline Overview of Physical Implementations CMOS devices Announcements/Break CMOS transistor

More information

Data Storage and Manipulation

Data Storage and Manipulation Data Storage and Manipulation Data Storage Bits and Their Storage: Gates and Flip-Flops, Other Storage Techniques, Hexadecimal notation Main Memory: Memory Organization, Measuring Memory Capacity Mass

More information

SoC IC Basics. COE838: Systems on Chip Design

SoC IC Basics. COE838: Systems on Chip Design SoC IC Basics COE838: Systems on Chip Design http://www.ee.ryerson.ca/~courses/coe838/ Dr. Gul N. Khan http://www.ee.ryerson.ca/~gnkhan Electrical and Computer Engineering Ryerson University Overview SoC

More information

A Low-Power 0.7-V H p Video Decoder

A Low-Power 0.7-V H p Video Decoder A Low-Power 0.7-V H.264 720p Video Decoder D. Finchelstein, V. Sze, M.E. Sinangil, Y. Koken, A.P. Chandrakasan A-SSCC 2008 Outline Motivation for low-power video decoders Low-power techniques pipelining

More information

Lecture 1: Circuits & Layout

Lecture 1: Circuits & Layout Lecture 1: Circuits & Layout Outline A Brief History CMOS Gate esign Pass Transistors CMOS Latches & Flip-Flops Standard Cell Layouts Stick iagrams 2 A Brief History 1958: First integrated circuit Flip-flop

More information

Hardware Design I Chap. 5 Memory elements

Hardware Design I Chap. 5 Memory elements Hardware Design I Chap. 5 Memory elements E-mail: shimada@is.naist.jp Why memory is required? To hold data which will be processed with designed hardware (for storage) Main memory, cache, register, and

More information

Lossless Compression Algorithms for Direct- Write Lithography Systems

Lossless Compression Algorithms for Direct- Write Lithography Systems Lossless Compression Algorithms for Direct- Write Lithography Systems Hsin-I Liu Video and Image Processing Lab Department of Electrical Engineering and Computer Science University of California at Berkeley

More information

Full Disclosure Monitoring

Full Disclosure Monitoring Full Disclosure Monitoring Power Quality Application Note Full Disclosure monitoring is the ability to measure all aspects of power quality, on every voltage cycle, and record them in appropriate detail

More information

(Refer Slide Time: 2:00)

(Refer Slide Time: 2:00) Digital Circuits and Systems Prof. Dr. S. Srinivasan Department of Electrical Engineering Indian Institute of Technology, Madras Lecture #21 Shift Registers (Refer Slide Time: 2:00) We were discussing

More information

AE16 DIGITAL AUDIO WORKSTATIONS

AE16 DIGITAL AUDIO WORKSTATIONS AE16 DIGITAL AUDIO WORKSTATIONS 1. Storage Requirements In a conventional linear PCM system without data compression the data rate (bits/sec) from one channel of digital audio will depend on the sampling

More information

Joint Rewriting and Error Correction in Flash Memories

Joint Rewriting and Error Correction in Flash Memories Joint Rewriting and Error Correction in Flash Memories Yue Li joint work with Anxiao (Andrew) Jiang, Eyal En Gad, Michael Langberg and Jehoshua Bruck Flash Memory Summit 2013 Santa Clara, CA 1 The Problem

More information

EECS150 - Digital Design Lecture 12 - Video Interfacing. Recap and Outline

EECS150 - Digital Design Lecture 12 - Video Interfacing. Recap and Outline EECS150 - Digital Design Lecture 12 - Video Interfacing Oct. 8, 2013 Prof. Ronald Fearing Electrical Engineering and Computer Sciences University of California, Berkeley (slides courtesy of Prof. John

More information

11. Sequential Elements

11. Sequential Elements 11. Sequential Elements Jacob Abraham Department of Electrical and Computer Engineering The University of Texas at Austin VLSI Design Fall 2017 October 11, 2017 ECE Department, University of Texas at Austin

More information

Video-on-Demand. Nick Caggiano Walter Phillips

Video-on-Demand. Nick Caggiano Walter Phillips Video-on-Demand Nick Caggiano Walter Phillips Video-on-Demand What is Video-on-Demand? Storage, transmission, and display of archived video files in a networked environment Most popularly used to watch

More information

Using Embedded Dynamic Random Access Memory to Reduce Energy Consumption of Magnetic Recording Read Channel

Using Embedded Dynamic Random Access Memory to Reduce Energy Consumption of Magnetic Recording Read Channel IEEE TRANSACTIONS ON MAGNETICS, VOL. 46, NO. 1, JANUARY 2010 87 Using Embedded Dynamic Random Access Memory to Reduce Energy Consumption of Magnetic Recording Read Channel Ningde Xie 1, Tong Zhang 1, and

More information

Register Transfer Level (RTL) Design Cont.

Register Transfer Level (RTL) Design Cont. CSE4: Components and Design Techniques for Digital Systems Register Transfer Level (RTL) Design Cont. Tajana Simunic Rosing Where we are now What we are covering today: RTL design examples, RTL critical

More information

UC Berkeley CS61C : Machine Structures

UC Berkeley CS61C : Machine Structures inst.eecs.berkeley.edu/~cs61c UC Berkeley CS61C : Machine Structures Lecture 21 State Elements : Circuits that Remember 2007-03-07 Mocha sipping TA Valerie Ishida inst.eecs.berkeley.edu/~cs61c-td 161 Exabytes

More information

Wideband Downconverters With Signatec 14-Bit Digitizers

Wideband Downconverters With Signatec 14-Bit Digitizers Product Information Sheet Wideband Downconverters With Signatec 14-Bit Digitizers FEATURES 100 khz 27 GHz Frequency Coverage 3 Standard Selectable IF Bandwidths 100 MHz, 40 MHz, 10 MHz 3 Optional Selectable

More information

Integrated Circuit Design ELCT 701 (Winter 2017) Lecture 1: Introduction

Integrated Circuit Design ELCT 701 (Winter 2017) Lecture 1: Introduction 1 Integrated Circuit Design ELCT 701 (Winter 2017) Lecture 1: Introduction Assistant Professor Office: C3.315 E-mail: eman.azab@guc.edu.eg 2 Course Overview Lecturer Teaching Assistant Course Team E-mail:

More information

Layout Decompression Chip for Maskless Lithography

Layout Decompression Chip for Maskless Lithography Layout Decompression Chip for Maskless Lithography Borivoje Nikolić, Ben Wild, Vito Dai, Yashesh Shroff, Benjamin Warlick, Avideh Zakhor, William G. Oldham Department of Electrical Engineering and Computer

More information

Digital Integrated Circuits EECS 312

Digital Integrated Circuits EECS 312 14 12 10 8 6 Fujitsu VP2000 IBM 3090S Pulsar 4 IBM 3090 IBM RY6 CDC Cyber 205 IBM 4381 IBM RY4 2 IBM 3081 Apache Fujitsu M380 IBM 370 Merced IBM 360 IBM 3033 Vacuum Pentium II(DSIP) 0 1950 1960 1970 1980

More information

Implementation of an MPEG Codec on the Tilera TM 64 Processor

Implementation of an MPEG Codec on the Tilera TM 64 Processor 1 Implementation of an MPEG Codec on the Tilera TM 64 Processor Whitney Flohr Supervisor: Mark Franklin, Ed Richter Department of Electrical and Systems Engineering Washington University in St. Louis Fall

More information

On the Rules of Low-Power Design

On the Rules of Low-Power Design On the Rules of Low-Power Design (and How to Break Them) Prof. Todd Austin Advanced Computer Architecture Lab University of Michigan austin@umich.edu Once upon a time 1 Rules of Low-Power Design P = acv

More information

Spec Sheet R&S SpycerBox Cell

Spec Sheet R&S SpycerBox Cell SpycerBox Cell is the new and distinctive storage solution from Rohde & Schwarz DVS, standing out for its high-density layout and redundant setup. Cascadable thanks to its unique SAS interconnection, the

More information

For Teacher's Use Only Q Total No. Marks. Q No Q No Q No

For Teacher's Use Only Q Total No. Marks. Q No Q No Q No FINALTERM EXAMINATION Spring 2010 CS302- Digital Logic Design (Session - 4) Time: 90 min Marks: 58 For Teacher's Use Only Q 1 2 3 4 5 6 7 8 Total No. Marks Q No. 9 10 11 12 13 14 15 16 Marks Q No. 17 18

More information

Timing Error Detection: An Adaptive Scheme To Combat Variability EE241 Final Report Nathan Narevsky and Richard Ott {nnarevsky,

Timing Error Detection: An Adaptive Scheme To Combat Variability EE241 Final Report Nathan Narevsky and Richard Ott {nnarevsky, Timing Error Detection: An Adaptive Scheme To Combat Variability EE241 Final Report Nathan Narevsky and Richard Ott {nnarevsky, tomott}@berkeley.edu Abstract With the reduction of feature sizes, more sources

More information

MMI: A General Narrow Interface for Memory Devices

MMI: A General Narrow Interface for Memory Devices MMI: A General Narrow Interface for Devices Judy Chen Eric Linstadt Rambus Inc. Session 106 August 12, 2009 August 2009 1 What is MMI? WLAN BT GPS NOR S/M Baseband Processor Apps/Media Processor NAND M

More information

Example: compressing black and white images 2 Say we are trying to compress an image of black and white pixels: CSC310 Information Theory.

Example: compressing black and white images 2 Say we are trying to compress an image of black and white pixels: CSC310 Information Theory. CSC310 Information Theory Lecture 1: Basics of Information Theory September 11, 2006 Sam Roweis Example: compressing black and white images 2 Say we are trying to compress an image of black and white pixels:

More information

SLD100/120/200/220. Solid State Drive based long time delay unit with optional second output and bug inserter ALL RIGHTS RESERVED

SLD100/120/200/220. Solid State Drive based long time delay unit with optional second output and bug inserter ALL RIGHTS RESERVED SLD100/120/200/220 Solid State Drive based long time delay unit with optional second output and bug inserter A Synapse product COPYRIGHT 2013 AXON DIGITAL DESIGN BV ALL RIGHTS RESERVED NO PART OF THIS

More information

Chapter 7 Memory and Programmable Logic

Chapter 7 Memory and Programmable Logic EEA091 - Digital Logic 數位邏輯 Chapter 7 Memory and Programmable Logic 吳俊興國立高雄大學資訊工程學系 2006 Chapter 7 Memory and Programmable Logic 7-1 Introduction 7-2 Random-Access Memory 7-3 Memory Decoding 7-4 Error

More information

Sequencing. Lan-Da Van ( 范倫達 ), Ph. D. Department of Computer Science National Chiao Tung University Taiwan, R.O.C. Fall,

Sequencing. Lan-Da Van ( 范倫達 ), Ph. D. Department of Computer Science National Chiao Tung University Taiwan, R.O.C. Fall, Sequencing ( 范倫達 ), Ph. D. Department of Computer Science National Chiao Tung University Taiwan, R.O.C. Fall, 2013 ldvan@cs.nctu.edu.tw http://www.cs.nctu.edu.tw/~ldvan/ Outlines Introduction Sequencing

More information

LCOS-SLM (Liquid Crystal on Silicon - Spatial Light Modulator)

LCOS-SLM (Liquid Crystal on Silicon - Spatial Light Modulator) POWER LCOS-SLM CONTROLLER RESET POWER OUTPUT ERROR LCOS-SLM (Liquid Crystal on Silicon - Spatial Light Modulator) Control your light! Shape your beam! Improve your image! The devices are a reflective type

More information

Lecture 1: Intro to CMOS Circuits

Lecture 1: Intro to CMOS Circuits Introduction to CMOS VLSI esign Lecture : Intro to CMOS Circuits avid Harris Steven Levitan Fall 28 Harvey Mudd College Spring 24 Outline A Brief History CMOS Gate esign Pass Transistors CMOS Latches &

More information

AN EFFECTIVE CACHE FOR THE ANYWHERE PIXEL ROUTER

AN EFFECTIVE CACHE FOR THE ANYWHERE PIXEL ROUTER University of Kentucky UKnowledge Theses and Dissertations--Electrical and Computer Engineering Electrical and Computer Engineering 2007 AN EFFECTIVE CACHE FOR THE ANYWHERE PIXEL ROUTER Vijai Raghunathan

More information

Timing Error Detection and Correction for Reliable Integrated Circuits in Nanometer Technologies

Timing Error Detection and Correction for Reliable Integrated Circuits in Nanometer Technologies Timing Error Detection and Correction for Reliable Integrated Circuits in Nanometer Technologies Stefanos Valadimas Department of Informatics and Telecommunications National and Kapodistrian University

More information

HD SDI Cameras. = XON Tri-brid NDVR

HD SDI Cameras. = XON Tri-brid NDVR X-ON NDVR Concept The X-ON line up of Recording Server from Versiton is analytic powerhouse, highly-scalable, and IT friendly. The X-ON is designed to meet the complex application and integration requirements

More information

Data Dissemination and Broadcasting Systems Lesson 05 Data Dissemination Broadcast-disk Models

Data Dissemination and Broadcasting Systems Lesson 05 Data Dissemination Broadcast-disk Models Data Dissemination and Broadcasting Systems Lesson 05 Data Dissemination Broadcast-disk Models Oxford University Press 2007. All rights reserved. 1 Disk models for Broadcast Presumed that all the n records

More information

Considerations for Specifying, Installing and Interfacing Rotary Incremental Optical Encoders

Considerations for Specifying, Installing and Interfacing Rotary Incremental Optical Encoders Considerations for Specifying, Installing and Interfacing Rotary Incremental Optical Encoders Scott Hewitt, President SICK STEGMANN, INC. Dayton, OH www.stegmann.com sales@stegmann.com 800-811-9110 The

More information

CDA 4253 FPGA System Design FPGA Architectures. Hao Zheng Dept of Comp Sci & Eng U of South Florida

CDA 4253 FPGA System Design FPGA Architectures. Hao Zheng Dept of Comp Sci & Eng U of South Florida CDA 4253 FPGA System Design FPGA Architectures Hao Zheng Dept of Comp Sci & Eng U of South Florida FPGAs Generic Architecture Also include common fixed logic blocks for higher performance: On-chip mem.

More information

CUFPOS402A. Information Technology for Production. Week Two:

CUFPOS402A. Information Technology for Production. Week Two: CUFPOS402A Information Technology for Production Week Two: File format for video and film production Aspect Ratio and World wide system Progressive Vs. Interlaced Tutorial Creating PDF document CPU - The

More information

The ATLAS Tile Calorimeter, its performance with pp collisions and its upgrades for high luminosity LHC

The ATLAS Tile Calorimeter, its performance with pp collisions and its upgrades for high luminosity LHC The ATLAS Tile Calorimeter, its performance with pp collisions and its upgrades for high luminosity LHC Tomas Davidek (Charles University), on behalf of the ATLAS Collaboration Tile Calorimeter Sampling

More information

THE Collider Detector at Fermilab (CDF) [1] is a general

THE Collider Detector at Fermilab (CDF) [1] is a general The Level-3 Trigger at the CDF Experiment at Tevatron Run II Y.S. Chung 1, G. De Lentdecker 1, S. Demers 1,B.Y.Han 1, B. Kilminster 1,J.Lee 1, K. McFarland 1, A. Vaiciulis 1, F. Azfar 2,T.Huffman 2,T.Akimoto

More information

Compressed-Sensing-Enabled Video Streaming for Wireless Multimedia Sensor Networks Abstract:

Compressed-Sensing-Enabled Video Streaming for Wireless Multimedia Sensor Networks Abstract: Compressed-Sensing-Enabled Video Streaming for Wireless Multimedia Sensor Networks Abstract: This article1 presents the design of a networked system for joint compression, rate control and error correction

More information

IEEE Santa Clara ComSoc/CAS Weekend Workshop Event-based analog sensing

IEEE Santa Clara ComSoc/CAS Weekend Workshop Event-based analog sensing IEEE Santa Clara ComSoc/CAS Weekend Workshop Event-based analog sensing Theodore Yu theodore.yu@ti.com Texas Instruments Kilby Labs, Silicon Valley Labs September 29, 2012 1 Living in an analog world The

More information

Technical Newsletter

Technical Newsletter Technical Newsletter 02 12 By: Technogym After Sales Service No. 115 April/May 2012 Summary VISIO/VISIOWEB VISIO-VISIOWEB Upgrade: Blocked machine IP Radio channel saving problem solved Problem for viewing

More information

Spatial Light Modulators XY Series

Spatial Light Modulators XY Series Spatial Light Modulators XY Series Phase and Amplitude 512x512 and 256x256 A spatial light modulator (SLM) is an electrically programmable device that modulates light according to a fixed spatial (pixel)

More information

Macronix OctaFlash Serial NOR Flash White Paper

Macronix OctaFlash Serial NOR Flash White Paper Macronix OctaFlash Serial NOR Flash White Paper Introduction Macronix, a leading provider of non-volatile memory solutions, is the world s leading supplier of ROM and Serial NOR Flash products. Macronix

More information

VVD: VCR operations for Video on Demand

VVD: VCR operations for Video on Demand VVD: VCR operations for Video on Demand Ravi T. Rao, Charles B. Owen* Michigan State University, 3 1 1 5 Engineering Building, East Lansing, MI 48823 ABSTRACT Current Video on Demand (VoD) systems do not

More information

LH28F320S3TD-L M-bit (2 MB x 8/1 MB x 16 x 2-Bank) Smart 3 Dual Work Flash Memory DESCRIPTION FEATURES LH28F320S3TD-L10

LH28F320S3TD-L M-bit (2 MB x 8/1 MB x 16 x 2-Bank) Smart 3 Dual Work Flash Memory DESCRIPTION FEATURES LH28F320S3TD-L10 DESCRIPTION The LH28F32S3TD-L Dual Work flash memory with Smart 3 technology is a high-density, low-cost, nonvolatile, read/write storage solution for a wide range of applications, having high programming

More information

Combinational vs Sequential

Combinational vs Sequential Combinational vs Sequential inputs X Combinational Circuits outputs Z A combinational circuit: At any time, outputs depends only on inputs Changing inputs changes outputs No regard for previous inputs

More information

Slide Set 8. for ENCM 501 in Winter Term, Steve Norman, PhD, PEng

Slide Set 8. for ENCM 501 in Winter Term, Steve Norman, PhD, PEng Slide Set 8 for ENCM 501 in Winter Term, 2017 Steve Norman, PhD, PEng Electrical & Computer Engineering Schulich School of Engineering University of Calgary Winter Term, 2017 ENCM 501 W17 Lectures: Slide

More information

Network. Decoder. Display

Network. Decoder. Display On the Design of a Low-Cost Video-on-Demand Storage System Banu Ozden Rajeev Rastogi Avi Silberschatz AT&T Bell Laboratories 600 Mountain Avenue Murray Hill NJ 07974-0636 fozden, rastogi, avig@research.att.com

More information

FP 12.4: A CMOS Scheme for 0.5V Supply Voltage with Pico-Ampere Standby Current

FP 12.4: A CMOS Scheme for 0.5V Supply Voltage with Pico-Ampere Standby Current FP 12.4: A CMOS Scheme for 0.5V Supply Voltage with Pico-Ampere Standby Current Hiroshi Kawaguchi, Ko-ichi Nose, Takayasu Sakurai University of Tokyo, Tokyo, Japan Recently, low-power requirements are

More information

Lecture 2: Digi Logic & Bus

Lecture 2: Digi Logic & Bus Lecture 2 http://www.du.edu/~etuttle/electron/elect36.htm Flip-Flop (kiikku) Sequential Circuits, Bus Online Ch 20.1-3 [Sta10] Ch 3 [Sta10] Circuits with memory What moves on Bus? Flip-Flop S-R Latch PCI-bus

More information

CS 152 Computer Architecture and Engineering

CS 152 Computer Architecture and Engineering CS 152 Computer Architecture and Engineering Lecture 12 Memory and Interfaces 2006-10-10 John Lazzaro (www.cs.berkeley.edu/~lazzaro) TAs: Udam Saini and Jue Sun www-inst.eecs.berkeley.edu/~cs152/ Last

More information

8 DIGITAL SIGNAL PROCESSOR IN OPTICAL TOMOGRAPHY SYSTEM

8 DIGITAL SIGNAL PROCESSOR IN OPTICAL TOMOGRAPHY SYSTEM Recent Development in Instrumentation System 99 8 DIGITAL SIGNAL PROCESSOR IN OPTICAL TOMOGRAPHY SYSTEM Siti Zarina Mohd Muji Ruzairi Abdul Rahim Chiam Kok Thiam 8.1 INTRODUCTION Optical tomography involves

More information

Conceps and trends for Front-end chips in Astroparticle physics

Conceps and trends for Front-end chips in Astroparticle physics Conceps and trends for Front-end chips in Astroparticle physics Eric Delagnes Fabrice Feinstein CEA/DAPNIA Saclay LPTA/IN2P3 Montpellier General interest performances Fast pulses : bandwidth > ~ 300 MHz

More information

Achieving 10 Terabytes/Cartridge by 2011

Achieving 10 Terabytes/Cartridge by 2011 Achieving 10 Terabytes/Cartridge by 2011 John Woelbern Sony Electronics Inc. 3300 Zanker Road, San Jose, CA, 95134-1940 Phone: 408-955-5496 FAX: 408-955-5533 E-mail: john.woelbern@am.sony.com Presented

More information

LH28F160S3-L/S3H-L. 16 M-bit (2 MB x 8/1 MB x 16) Smart 3 Flash Memories (Fast Programming) DESCRIPTION FEATURES LH28F160S3-L/S3H-L

LH28F160S3-L/S3H-L. 16 M-bit (2 MB x 8/1 MB x 16) Smart 3 Flash Memories (Fast Programming) DESCRIPTION FEATURES LH28F160S3-L/S3H-L DESCRIPTION The LH28F6S3-L/S3H-L flash memories with Smart 3 technology are high-density, low-cost, nonvolatile, read/write storage solution for a wide range of applications, having high programming performance

More information

M89 FAMILY In-System Programmable (ISP) Multiple-Memory and Logic FLASH+PSD Systems for MCUs

M89 FAMILY In-System Programmable (ISP) Multiple-Memory and Logic FLASH+PSD Systems for MCUs In-System Programmable (ISP) Multiple-Memory and Logic FLASH+PSD Systems for MCUs DATA BRIEFING Single Supply Voltage: 5V±10% for M9xxFxY 3 V (+20/ 10%) for M9xxFxW 1 or 2 Mbit of Primary Flash Memory

More information

LH28F160SGED-L M-bit (512 kb x 16 x 2-Bank) SmartVoltage Dual Work Flash Memory DESCRIPTION FEATURES LH28F160SGED-L10

LH28F160SGED-L M-bit (512 kb x 16 x 2-Bank) SmartVoltage Dual Work Flash Memory DESCRIPTION FEATURES LH28F160SGED-L10 DESCRIPTION The LH28F6SGED-L Dual Work flash memory with SmartVoltage technology is a high-density, low-cost, nonvolatile, read/write storage solution for a wide range of applications. The LH28F6SGED-

More information

SEMICONDUCTOR TECHNOLOGY -CMOS-

SEMICONDUCTOR TECHNOLOGY -CMOS- SEMICONDUCTOR TECHNOLOGY -CMOS- Fire Tom Wada 2011/12/19 1 What is semiconductor and LSIs Huge number of transistors can be integrated in a small Si chip. The size of the chip is roughly the size of nails.

More information

DESIGN OF NOVEL ADDRESS DECODERS AND SENSE AMPLIFIER FOR SRAM BASED memory

DESIGN OF NOVEL ADDRESS DECODERS AND SENSE AMPLIFIER FOR SRAM BASED memory DESIGN OF NOVEL ADDRESS DECODERS AND SENSE AMPLIFIER FOR SRAM BASED memory A Thesis submitted in partial fulfillment of the Requirements for the degree of Master of Technology In Electronics and Communication

More information

SPATIAL LIGHT MODULATORS

SPATIAL LIGHT MODULATORS SPATIAL LIGHT MODULATORS Reflective XY Series Phase and Amplitude 512x512 A spatial light modulator (SLM) is an electrically programmable device that modulates light according to a fixed spatial (pixel)

More information

THE USE OF forward error correction (FEC) in optical networks

THE USE OF forward error correction (FEC) in optical networks IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS II: EXPRESS BRIEFS, VOL. 52, NO. 8, AUGUST 2005 461 A High-Speed Low-Complexity Reed Solomon Decoder for Optical Communications Hanho Lee, Member, IEEE Abstract

More information

Fluke 190-Series II Firmware Upgrade V11.44

Fluke 190-Series II Firmware Upgrade V11.44 Fluke 190-Series II Firmware Upgrade V11.44 Requirements 1. Fluke 190- Series II ScopeMeter with firmware prior to V11.44 2. Supported models are: 190-102, 190-104, 190-062, 190-202, 190-204, 190-502,

More information

Microcontrollers and Interfacing week 7 exercises

Microcontrollers and Interfacing week 7 exercises SERIL TO PRLLEL CONVERSION Serial to parallel conversion Microcontrollers and Interfacing week exercises Using many LEs (e.g., several seven-segment displays or bar graphs) is difficult, because only a

More information

Static Timing Analysis for Nanometer Designs

Static Timing Analysis for Nanometer Designs J. Bhasker Rakesh Chadha Static Timing Analysis for Nanometer Designs A Practical Approach 4y Spri ringer Contents Preface xv CHAPTER 1: Introduction / 1.1 Nanometer Designs 1 1.2 What is Static Timing

More information

Self-Aligned Double Patterning for 3xnm Flash Production

Self-Aligned Double Patterning for 3xnm Flash Production Self-Aligned Double Patterning for 3xnm Flash Production Chris Ngai Dir of Process Engineering & Lithography Maydan Technology Center Group Applied Materials, Inc. July 16 th, 2008 Overview Double Patterning

More information

Description. Kingbright

Description. Kingbright 12 SEGMENT BAR GRAPH ARRAY Part Number: DD-12SYKWB Super Bright Yellow Features Suitable for level indicators. Low current operation. Wide viewing angle. Mechanically rugged. Different colors in one unit

More information

NAS vs. SAN: Storage Considerations for Broadcast and Post- Production Applications

NAS vs. SAN: Storage Considerations for Broadcast and Post- Production Applications NAS vs. SAN: Storage Considerations for Broadcast and Post- Production Applications As more content is created in, and as the industry transitions to, higher resolutions, many broadcast and post-production

More information

An MFA Binary Counter for Low Power Application

An MFA Binary Counter for Low Power Application Volume 118 No. 20 2018, 4947-4954 ISSN: 1314-3395 (on-line version) url: http://www.ijpam.eu ijpam.eu An MFA Binary Counter for Low Power Application Sneha P Department of ECE PSNA CET, Dindigul, India

More information

Co-location of PMP 450 and PMP 100 systems in the 900 MHz band and migration recommendations

Co-location of PMP 450 and PMP 100 systems in the 900 MHz band and migration recommendations Co-location of PMP 450 and PMP 100 systems in the 900 MHz band and migration recommendations Table of Contents 3 Introduction 3 Synchronization and timing 4 Frame start 5 Frame length 5 Frame length configuration

More information

Technical Note. Migrating from Micron M29EW Devices to MT28EW NOR Flash Devices. Introduction. TN-13-37: Migrating M29EW to MT28EW NOR Flash Devices

Technical Note. Migrating from Micron M29EW Devices to MT28EW NOR Flash Devices. Introduction. TN-13-37: Migrating M29EW to MT28EW NOR Flash Devices Technical Note Migrating from Micron M29EW Devices to NOR Flash Devices TN-13-37: Migrating M29EW to NOR Flash Devices Introduction Introduction This technical note describes the process for converting

More information

Optimization of Multi-Channel BCH Error Decoding for Common Cases. Russell Dill Master's Thesis Defense April 20, 2015

Optimization of Multi-Channel BCH Error Decoding for Common Cases. Russell Dill Master's Thesis Defense April 20, 2015 Optimization of Multi-Channel BCH Error Decoding for Common Cases Russell Dill Master's Thesis Defense April 20, 2015 Bose-Chaudhuri-Hocquenghem (BCH) BCH is an Error Correcting Code (ECC) and is used

More information

(51) Int Cl.: H04L 1/00 ( )

(51) Int Cl.: H04L 1/00 ( ) (19) TEPZZ Z4 497A_T (11) EP 3 043 497 A1 (12) EUROPEAN PATENT APPLICATION published in accordance with Art. 153(4) EPC (43) Date of publication: 13.07.2016 Bulletin 2016/28 (21) Application number: 14842584.6

More information

WHAT IS THE FUTURE OF TAPE TECHNOLOGY FOR DATA STORAGE AND MANAGEMENT?

WHAT IS THE FUTURE OF TAPE TECHNOLOGY FOR DATA STORAGE AND MANAGEMENT? WHAT IS THE FUTURE OF TAPE TECHNOLOGY FOR DATA STORAGE AND MANAGEMENT? There is news in the field of tape storage: two new products will be launched in 2018 which will change tape technology s offer in

More information

Status of the X-ray FEL control system at SPring-8

Status of the X-ray FEL control system at SPring-8 Status of the X-ray FEL control system at SPring-8 T.Fukui 1, T.Hirono 2, N.Hosoda 1, M.Ishii 2, M.Kitamura 1 H.Maesaka 1,T.Masuda 2, T.Matsushita 2, T.Ohata 2, Y.Otake 1, K.Shirasawa 1,M.Takeuchi 2, R.Tanaka

More information

Parallelization of Multimedia Applications by Compiler on Multicores for Consumer Electronics

Parallelization of Multimedia Applications by Compiler on Multicores for Consumer Electronics Vol. 0 No. 0 1959 TV MPEG2 MP3 JPEG 2000 OSCAR API VLIW 4 FR1000 SH-4A 4 RP1 FR1000 4 1 4 3.27 RP1 4 1 4 3.31 Parallelization of Multimedia Applications by Compiler on Multicores for Consumer Electronics

More information

SEMICONDUCTOR TECHNOLOGY -CMOS-

SEMICONDUCTOR TECHNOLOGY -CMOS- SEMICONDUCTOR TECHNOLOGY -CMOS- Fire Tom Wada What is semiconductor and LSIs Huge number of transistors can be integrated in a small Si chip. The size of the chip is roughly the size of nails. Currently,

More information

Radiology Physics Lectures: Computers. Associate Professor, Radiology x d

Radiology Physics Lectures: Computers. Associate Professor, Radiology x d COMPUTERS IN MEDICAL IMAGING David Hall, Ph.D. DABR Associate Professor, Radiology x20893 dhll@ djhall@ucsd.edud d 1 introduced into medical imaging in the early 1970 s essential to many modalities X-ray

More information

Optimization of Multi-Channel BCH. Error Decoding for Common Cases. Russell Dill

Optimization of Multi-Channel BCH. Error Decoding for Common Cases. Russell Dill Optimization of Multi-Channel BCH Error Decoding for Common Cases by Russell Dill A Thesis Presented in Partial Fulfillment of the Requirements for the Degree Master of Science Approved April 2015 by the

More information

LH28F800SG-L/SGH-L (FOR TSOP, CSP)

LH28F800SG-L/SGH-L (FOR TSOP, CSP) LH28F8SG-L/SGH-L (FOR TSOP, CSP) DESCRIPTION The LH28F8SG-L/SGH-L flash memories with SmartVoltage technology are high-density, low-cost, nonvolatile, read/write storage solution for a wide range of applications.

More information