Advanced Hardware and Software Technologies for Ultra-long FFT s

Size: px
Start display at page:

Download "Advanced Hardware and Software Technologies for Ultra-long FFT s"

Transcription

1 Advanced Hardware and Software Technologies for Ultra-long FFT s Hahn Kim, Jeremy Kepner, M. Michael Vai, Crystal Kahn HPEC September 2005 HPEC This work is sponsored by the Department of the Air Force under contract FA C Opinions, interpretations, conclusions and recommendations are those of the authors and are not necessarily endorsed by the United States Government

2 Outline Background FPGA-Based Hardware Technology Parallel Software Technology Conclusions HPEC

3 Introduction Real-time Embedded ISR 1 Gigapoint complex FFT 150M ops ~1M words Radar ELINT SIGINT 1 Kilopoint complex FFT 50K ops ~1K words Non Real-Time Data Analysis HSI Monte Carlo IMINT HPEC

4 Motivation for Real-time, Ultra-long FFT s Wide-Band Digital Receiver RF Receiver ADC 1 G-pt FFT Signal Processing Application Channelized Narrow-Band Digital Receiver ADC 100 M-pt FFT RF Receiver Analog Channelizer Signal Processing Application ADC 100 M-pt FFT Can use FFT to detect weak signals Reduce noise floor Longer intervals result in higher gain Real-time, ultra-long FFT processor is a critical enabling component HPEC

5 FFT Technology Space 10 GSPS 04 RFEL HyperSpeed IP (FPGA) GSPS Sustained Data Rate 1 GSPS 100 MSPS 10 MSPS 04: LL SYCO (FPGA) GSPS 99: LL Discoverer II (ASIC) GSPS 03: Xilinx IP (FPGA) GSPS OFDM Communication Standards Req. 02: Transtech DSP Quixilica IP (FPGA) GSPS 03: DSP Architectures DSP-24 (ASIC) 64 M-pt GSPS 01: CRI Pathfinder II (ASIC) GSPS 03: Analog Devices ADSP (DSP) GSPS 04 RFEL HyperLength IP (FPGA) GSPS State-of-The-Art FFT Technology 1.2 GSPS GSPS GSPS 04 LL pmatlab (128 Proc. w/ GigE) GSPS HPEC K 1M 100M 10G 1T 100T FFT Length (Points) Objective: Extend state-of-the-art to ultra-long FFT s

6 Outline Background FPGA-Based Hardware Technology Parallel Software Technology Conclusions HPEC

7 80G Ultra-long FFT Implementation Challenges ory Requirement (Bytes) 8G 0.8G 80M 8M 0.8M 80K 8K 8 K-pt FPGA Embedded ory Only 32 K-pt 100 M-pt Off-Chip ory Required 1 G-pt 10K 100K 1M 10M 100M 1G 10G FFT Length (Points) Beyond ~32 K-pt FFT, off-chip memory for FIFO and twiddle factors is required Full duplex memory access is a challenge Lincoln architecture selected for ultra-long FFT A Systolic FFT Architecture for Real Time FPGA Systems, HPEC HPEC

8 Real-Time 1G-Point FFT Architecture MN-pt FFT can be implemented with an M-pt FFT and an N-pt FFT E.g. 1 G-pt FFT M = 32 K-pt, N = 32 K-pt Each 32 K-pt FFT fits into an FPGA Corner Turn 32K FFT Corner Turn Twiddle Factors 32K FFT Corner Turn Corner Turn Example (for an 8-Point FFT): Corner Turn (Matrix Transpose) Lincoln has developed a corner turn architecture that operates at 1 GSPS HPEC

9 Real-Time FFT Architecture 1 Gigapoint FFT Configuration ADC 1 GSPS HOLD DMUX and Switch Cache and MUX FPGA DMUX and Switch Cache and MUX FPGA DMUX and Switch Cache and MUX Real-Time Corner Turn 32K FFT Real-Time Corner Turn 32K FFT Real-Time Corner Turn Reconfigurable architecture allows for multiple implementations: e.g. 1 1 GSPS or MSPS X 10 channels HPEC

10 Real-time Example FFT Implementation Current FFT Capabilities Future Ultra-long FFT Capabilities HPEC Symbiotic Communications (SYCO) real-time processor 8 K-pt FFT Watts 208 FFT butterflies No on-board memory Rapid Prototyping of a Realtime Range Compression Processor, HPEC 2005 Poster Session * Initial estimate based on double-precision operation Processor enhancement Provides on-board memory banks for performing real-time corner turns Performs form-factor optimization Develop a universal FFT architecture 100M-Pt FFT X 10 channels 1G-Pt FFT

11 Outline Background FPGA-Based Hardware Technology Parallel Software Technology Conclusions HPEC

12 Motivation for Out-of-Core Technology Data are often larger than memory on a single processor. ory Disk Can address memory limitation with: 1. Multiple CPUs 2. Using disk as memory Hughes, G.F. Wise Drives. IEEE Spectrum. Aug Out-of-core technology uses memory as a window into data stored on disk. HPEC

13 MatlabMPI & pmatlab Software Layers Application Input Analysis Output Parallel Library Parallel Hardware Vector/Matrix Comp Conduit Library Layer (pmatlab) Messaging (MatlabMPI) Kernel Layer Math (Matlab) Task User Interface Hardware Interface Can build a parallel library with a few messaging primitives MatlabMPI provides this messaging capability: M PI_Send(dest,co m m,tag,x); X = MPI_Recv(source,com m,tag); HPEC Can build a application with a few parallel structures and functions pmatlab provides parallel arrays and functions X = ones(n,mapx); Y = zeros(n,mapy); Y(:,:) = fft(x);

14 Out-of-Core ory Management: pmatlab extreme Virtual ory (XVM) Virtual ory + Transparent to user (ease of use) Disk access patterns are often sub-optimal for most algorithms Out-of-Core + Provides control of disk at object level (performance) Exposes swapping mechanism to user Goal of pmatlab XVM is to add out-ofcore capability to pmatlab that is: 1. Easy to use 2. Has high performance 3. Can transparently distribute data pmatlab + Provides mechanism for transparently distributing data across multiple CPUs HPEC

15 Data Organization 1. Data starts as a vector with length MN MN 2. Divide into M vectors with length N N N 3. Reorganize as a MxN matrix M 4. Distribute rows across processors P0 P1 HPEC

16 Hierarchical Matrices and Maps Matrix Global map Out-of-core map HPEC K P0 P1 P2 P3 32K + + P0 P1 P2 P3 Global matrix Out-of-core matrices 32K Core block (out-of-core) Core block (in-core) 8K 2K Hierarchical matrices span processors and the storage hierarchy User constructs hierarchy by specifying global and out-of-core maps

17 Ultra-long FFT 0 FFT twiddle corner turn FFT Ultra-long FFT Software-based Implementations MATLAB pmatlab C/MPI pmatlab XVM Testbed Lincoln HPC cluster (LLGrid) 80 dual CPU nodes GHz Pentium 4 Xeon 4 GB memory Gigabit Ethernet HPEC

18 Scalability 1 Gigapoint FFT pmatlab XVM supports ultra-long FFT s with little degradation in performance Maximum problem size = size of available disk space 1 TB represents a 64 G-pt double-precision, complex FFT HPEC

19 Outline Background FPGA-Based Hardware Technology Parallel Software Technology Conclusions HPEC

20 System Development Methodologies System Prototyping Modify word size, precision, etc. N Bit-true simulation Satisfy requirements? Y Initial design Architecture Analysis 1 Gigapoint Performance Verification Compare HPEC

21 Summary Presented FPGA architecture for real-time, ultra-long FFT s Can implement 1 G-pt FFT with smaller FFT s Use SYCO processor to implement FFT s Developed real-time corner turn architecture Future Develop a universal ultra-long FFT architecture Allows multiple configurations in same hardware 1 G-Pt FFT 100 M-Pt FFT X 10 channels Application-specific precision and dynamic analysis HPEC

22 Summary Presented parallel software architecture for ultra-long FFT s Added out-of-core capability to pmatlab Supports ultra-long FFT s with little degradation in performance Demonstrated 64 G-pt FFT (1 TB) Future Expand cluster to enable 64 T-pt FFT (1 PB) HPEC

23 Acknowledgements Ken Senne Gerry Banner Leslie Alger Bob Bond Cy Chan Hector Chan Tim Currie Preston Jackson Andy McCabe Peter Michaleas Michael Moore Charles Rader Albert Reuther Jonathan Scalera Nadya Travinin Edmund Wong HPEC

CRUSH: Cognitive Radio Universal Software Hardware

CRUSH: Cognitive Radio Universal Software Hardware CRUSH: Cognitive Radio Universal Software Hardware George F. Eichinger III MIT Lincoln Laboratory Lexington MA Kaushik Chowdhury, Miriam Leeser University Boston, MA USA 1 This work is sponsored by the

More information

An FPGA Spectrum Sensing Accelerator for Cognitive Radio

An FPGA Spectrum Sensing Accelerator for Cognitive Radio An FPGA Spectrum Sensing Accelerator for Cognitive Radio George Eichinger Miriam Leeser Kaushik Chowdhury NEWSDR 11 01 October 2011 This work is sponsored by the Department of the Air Force under Air Force

More information

Implementing Efficient Split-Radix FFTs in FPGAs

Implementing Efficient Split-Radix FFTs in FPGAs Implementing Efficient Split-Radix FFTs in FPGAs Radix-2 and Radix-4 FFTs are common Many applications benefit from other lengths OFDM Transceiver, Digital Video Broadcasts, and software defined radios

More information

CHAPTER 7 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS. Table of Contents

CHAPTER 7 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS. Table of Contents 88 CHAPTER 7 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS Table of Contents Page No. 7.0 APPLICATION OF 128 POINT FFT PROCESSOR FOR MIMO OFDM SYSTEMS 89 7.1 Introduction 89 7.2 Types of

More information

The Cell Processor Computing of Tomorrow or Yesterday?

The Cell Processor Computing of Tomorrow or Yesterday? Computing of Tomorrow or Yesterday? Torsten Höfler Department of Computer Science TU Chemnitz 28th February 2006 Outline 1 The Vision 2 3 4 Cell Applications Conclusion The Researchers started in mid 2000

More information

OpenCL for FPGAs/HPC Case Study in 3D FFT

OpenCL for FPGAs/HPC Case Study in 3D FFT OpenCL for FPGAs/HPC Case Study in 3D FFT Ahmed Sanaullah Martin Herbordt Vipin Sachdeva Boston University Silicon Therapeutics OpenCL for FPGAs/HPC: Case Study in 3D FFT 11/15/2017 What gives FPGAs high

More information

CUG2016. On Enhancing 3D-FFT. Performance in VASP. Florian Wende. Zuse Institute Berlin. Martijn Marsman, Thomas Steinke. London, UK, May 8-12

CUG2016. On Enhancing 3D-FFT. Performance in VASP. Florian Wende. Zuse Institute Berlin. Martijn Marsman, Thomas Steinke. London, UK, May 8-12 CUG2016 London, UK, May 8-12 On Enhancing 3D-FFT Performance in VASP Florian Wende Martijn Marsman, Thomas Steinke Zuse Institute Berlin Outline Many-core Optimizations in VASP From MPI to MPI + (OpenMP)

More information

Floating Point Fast Fourier Transform v2.1. User manual

Floating Point Fast Fourier Transform v2.1. User manual User manual Introduction The Fast Fourier Transform (FFT) is an efficient algorithm for computing the Discrete Fourier Transform (DFT). This Intellectual Property (IP) core was designed to offer very fast

More information

International Journal of Advanced Research in Electronics and Communication Engineering (IJARECE) Volume 6, Issue 6, June 2017

International Journal of Advanced Research in Electronics and Communication Engineering (IJARECE) Volume 6, Issue 6, June 2017 AN EFFICIENT VLSI IMPLEMENTATION OF MULTIPLIER LESS FFT DESIGN Mrs.N.Madhubala and Dr.A.Kavitha,Associate Professor Abstract The proposed system is to implement a novel approach to implement multiplier

More information

Design and Implementation of Pipelined Floating Point Fast Fourier Transform Processor

Design and Implementation of Pipelined Floating Point Fast Fourier Transform Processor IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 11 April 2015 ISSN (online): 2349-6010 Design and Implementation of Pipelined Floating Point Fast Fourier Transform

More information

Implementation of High Throughput Radix-16 FFT Processor

Implementation of High Throughput Radix-16 FFT Processor International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) Implementation of High Throughput Radix-16 FFT Processor K Swetha sree 1, Mr. T. Lakshmi Narayana 2 1, 2 Department of ECE, Andhra

More information

Programming the Cell BE

Programming the Cell BE Programming the Cell BE Max Schneider Chair of Computer Science 3 - Computer Architecture Friedrich-Alexander-University Erlangen-Nuremberg October 26, 2010 Max Schneider (FAU) PParRA October 26, 2010

More information

A 0.75 Million Point Fourier Transform Chip for Frequency Sparse Signals

A 0.75 Million Point Fourier Transform Chip for Frequency Sparse Signals A 0.75 Million Point Fourier Transform Chip for Frequency Sparse Signals Ezz El Din Hamed Omid Abari, Haitham Hassanieh, Abhinav Agarwal, Dina Katabi, Anantha Chandrakasan, Vladimir Stojanović International

More information

Advanced Autoclave Controller with Recording + 4 Channel Mapping + Pressure Indication with PC Software & Printer Module

Advanced Autoclave Controller with Recording + 4 Channel Mapping + Pressure Indication with PC Software & Printer Module Clavex Plus Advanced Autoclave Controller with Recording + 4 Channel Mapping + Pressure Indication with PC Software & Printer Module PC Software Controller with Graphic Display Printer Module Features

More information

Temperature + Humidity (%RH) Control & Recording System with 8 / 16 Channel Mapping. Touch Panel PPI

Temperature + Humidity (%RH) Control & Recording System with 8 / 16 Channel Mapping. Touch Panel PPI HumiTherm Ultra Temperature + Humidity (%RH) Control & Recording System with 8 / 16 Channel Mapping Mapping Unit Micro PLC Control Unit Touch Panel Touch Operation Panel PPI HumiTherm Ultra GSM Module

More information

Zilog s ZMOTION Detection and Control Family. Featuring PIR Technology

Zilog s ZMOTION Detection and Control Family. Featuring PIR Technology S MOTION CONTROL AND LIGHTING SOLUTIONS Zilog s ZMOTION Detection and Control Family PB022504-0112 ZMOTION DETECTION & CONTROL FAMILY ADVANTAGES MCU, PIR SENSOR, AND LENS SOLUTION MOTION DETECTION ALGORITHMS

More information

A Novel VLSI Based Pipelined Radix-4 Single-Path Delay Commutator (R4SDC) FFT

A Novel VLSI Based Pipelined Radix-4 Single-Path Delay Commutator (R4SDC) FFT I J C T A, 9(6), 2016, pp. 2767-2775 International Science Press ISSN: 0974-5572 A Novel VLSI Based Pipelined Radix-4 Single-Path Delay Commutator (R4SDC) FFT Manimaran A.* and S.K. Sudeer** ABSTRACT Fast

More information

AN10943 Decoding DTMF tones using M3 DSP library FFT function

AN10943 Decoding DTMF tones using M3 DSP library FFT function Rev. 1 17 June 2010 Application note Document information Info Content Keywords M3, LPC1300, LPC1700, DSP, DFT, FFT, DTMF Abstract This application note and associated source code example demonstrates

More information

IOT Based Intelligent Bin for Smart Cities

IOT Based Intelligent Bin for Smart Cities IOT Based Intelligent Bin for Smart Cities Meghana K C Department of Electronics & Communication Engineering S. J. B Institute of Technology Bengaluru, India kccmmeghana@gmail.com Dr. K R Nataraj Department

More information

FIMD: Fine-grained Device-free Motion Detection

FIMD: Fine-grained Device-free Motion Detection ICPADS 2012 FIMD: Fine-grained Device-free Motion Detection Jiang Xiao, Kaishun Wu, Youwen Yi, Lu Wang, Lionel M. Ni Department of Computer Science and Engineering Hong Kong University of Science and Technology

More information

CALICE: status of a data acquisition system for the ILC calorimeters. Valeria Bartsch, on behalf of CALICE-UK Collaboration

CALICE: status of a data acquisition system for the ILC calorimeters. Valeria Bartsch, on behalf of CALICE-UK Collaboration 1 CALICE: status of a data acquisition system for the ILC calorimeters Valeria Bartsch, on behalf of CALICE-UK Collaboration ILC Calorimeter with PFA 2 ECAL Prototype use particle flow algorithms to improve

More information

Calcolatori, Internet e il Web

Calcolatori, Internet e il Web Calcolatori, Internet e il Web Refresher on Computer Fundamentals and Networking History of computers Architecture of a computer Data representation within a computer Computer networks and the Internet

More information

ECE 4510/5530 Microcontroller Applications Week 10

ECE 4510/5530 Microcontroller Applications Week 10 ECE 4510/5530 Microcontroller Applications Week 10 Dr. Bradley J. Bazuin Associate Professor Department of Electrical and Computer Engineering College of Engineering and Applied Sciences Lab 9 & 10 Elements

More information

Cell Software Model. Course Code: L2T1H1-11 Cell Ecosystem Solutions Enablement. Systems and Technology Group

Cell Software Model. Course Code: L2T1H1-11 Cell Ecosystem Solutions Enablement. Systems and Technology Group Cell Software Model Course Code: L2T1H1-11 Cell Ecosystem Solutions Enablement Class Objectives Things you will learn Cell software considerations including Two levels of parallelism: SIMD and parallel

More information

International Journal of Engineering Research-Online A Peer Reviewed International Journal

International Journal of Engineering Research-Online A Peer Reviewed International Journal RESEARCH ARTICLE ISSN: 2321-7758 FPGA IMPLEMENTATION OF FFT PROCESSOR USING DIFFERENT ALGORITHMS YOJANA A. JADHAV 1, Prof. A. P. HATKAR 2 1 Student, Dept. of E & TC, SVIT COE, Nasik, India 2 Prof, Dept.

More information

Reconfigurable FPGA-Based FFT Processor for Cognitive Radio Applications

Reconfigurable FPGA-Based FFT Processor for Cognitive Radio Applications Reconfigurable FPGA-Based FFT Processor for Cognitive Radio Applications Mário Lopes Ferreira (B), Amin Barahimi, and João Canas Ferreira INESC TEC and Faculty of Engineering, University of Porto, Rua

More information

Construction of Wireless Fire Alarm System Based on ZigBee Technology

Construction of Wireless Fire Alarm System Based on ZigBee Technology Available online at www.sciencedirect.com Procedia Engineering 11 (2011) 308 313 The 5 th Conference on Performance-based Fire and Fire Protection Engineering Construction of Wireless Fire Alarm System

More information

Di-440 The Modular Analyser

Di-440 The Modular Analyser Di-440 The Modular Analyser Instrument Concept Single tool for a range of service, maintenance and inspection applications: Condition assessment tool highlights state of machinery today NOT for Predictive

More information

First results and developments of the multi-cell SDD for Elettra and SESAME XAFS beam lines

First results and developments of the multi-cell SDD for Elettra and SESAME XAFS beam lines First results and developments of the multi-cell SDD for Elettra and SESAME XAFS beam lines Sergio Fabiani INFN-Ts on the behalf of the INFN R&D project RedSox collaboration and Elettra Synchrotron Trieste

More information

Gas Detection Instrument Based on Wireless Sensor Networks

Gas Detection Instrument Based on Wireless Sensor Networks Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com Gas Detection Instrument Based on Wireless Sensor Networks 1,2,3 ANSONG FENG, 1 HONG WANG, 2 LIFENG WEI 1 Shenyang Institute of Automation,

More information

Flexibility right from the start. PAVIRO Public Address and Voice Evacuation System with Professional Sound Quality. boschsecurity.

Flexibility right from the start. PAVIRO Public Address and Voice Evacuation System with Professional Sound Quality. boschsecurity. Flexibility right from the start. PAVIRO Public Address and Voice Evacuation System with Professional Sound Quality boschsecurity.com 2 PAVIRO Keeping people informed, secure, entertained With more than

More information

ENACTMENT OF SCADA SYSTEM FOR JUDICIOUS DWELLING

ENACTMENT OF SCADA SYSTEM FOR JUDICIOUS DWELLING Int. J. Engg. Res. & Sci. & Tech. 2014 Mohammed Tabrez Ud Doula and G Kalaimagal, 2014 Research Paper ISSN 2319-5991 www.ijerst.com Vol. 3, No. 2, May 2014 2014 IJERST. All Rights Reserved ENACTMENT OF

More information

4/8/12/16 Channel Temperature Scanner with FREE Data Logging PC Software RS485

4/8/12/16 Channel Temperature Scanner with FREE Data Logging PC Software RS485 Select Option Device Wise Device/Group HumiLog Y-Axis Text Show/Hide Ledgends MIN MAX Scale Y Max 08-05-2015 15:17:59 PV_C PV_RH Color default default Graph Refresh Interval 2 Set Interval PV Low Alarm

More information

High Speed Reconfigurable FFT Processor Using Urdhava Thriyambakam

High Speed Reconfigurable FFT Processor Using Urdhava Thriyambakam High Speed Reconfigurable FFT Processor Using Urdhava Thriyambakam P. Mounica M.Tech (VLSI Design), Dept of ECE, B. Rekha Assistant Professor, Dept of ECE, Dr.P.Ram Mohan Rao FIE, CE(I), MISTE,MISH, MISCEE,

More information

Sensor Technology. Summer School: Advanced Microsystems Technologies for Sensor Applications

Sensor Technology. Summer School: Advanced Microsystems Technologies for Sensor Applications Sensor Technology Summer School: Universidade Federal do Rio Grande do Sul (UFRGS) Porto Alegre, Brazil July 12 th 31 st, 2009 1 Outline of the Lecture: Philosophy of Sensing Thermal Sensors Chemical Sensors

More information

Advanced Digital Signal Processing Part 4: DFT and FFT

Advanced Digital Signal Processing Part 4: DFT and FFT Advanced Digital Signal Processing Part 4: DFT and FFT Gerhard Schmidt Christian-Albrechts-Universität zu Kiel Faculty of Engineering Institute of Electrical and Information Engineering Digital Signal

More information

Towards a Detector Control System for the ATLAS Pixeldetector

Towards a Detector Control System for the ATLAS Pixeldetector Towards a Detector Control System for the ATLAS Pixeldetector Pixel2002, Carmel September 2002 Overview of the Detector Control System The Front End System The Back End System Experience with the Testbeam

More information

1 Introduction - The rating level. 3 Subjective or objective analysis? 2 Determination of the adjustment for annoying tones

1 Introduction - The rating level. 3 Subjective or objective analysis? 2 Determination of the adjustment for annoying tones Noise can be said to be tonal if it contains a distinguishable, discrete, continuous note. This may include a whine, hiss, screech, hum, etc., and any such subjective finding is open to discussion when

More information

THE combination of the multiple-input multiple-output

THE combination of the multiple-input multiple-output IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS I: REGULAR PAPERS, VOL. 54, NO. 4, APRIL 2007 807 Design of an FFT/IFFT Processor for MIMO OFDM Systems Yu-Wei Lin and Chen-Yi Lee, Member, IEEE Abstract In this

More information

Laboratory Exercise #6

Laboratory Exercise #6 ECEN4002/5002 Spring 2004 Digital Signal Processing Laboratory Laboratory Exercise #6 Using a Fast Fourier Transform Algorithm Introduction The symmetry and periodicity properties of the discrete Fourier

More information

Cold chain monitoring technologies. Facility monitoring

Cold chain monitoring technologies. Facility monitoring Cold chain monitoring technologies Facility monitoring Advanced wireless data logging system - Cobalt For various controlled environment facilities, equipments and transport conditions, real time monitoring

More information

A Cost Effective Multi-Spectral Scanner for Natural Gas Detection

A Cost Effective Multi-Spectral Scanner for Natural Gas Detection A Cost Effective Multi-Spectral Scanner for Natural Gas Detection Semi-Annual Progress Report No. 1 Reporting Period Start Date: October 1, 2003 Reporting Period End Date: March 31, 2004 Principal Authors:

More information

An Area Efficient 2D Fourier Transform Architecture for FPGA Implementation

An Area Efficient 2D Fourier Transform Architecture for FPGA Implementation 2 Features An Area Efficient 2D Fourier Transform Architecture for FPGA Implementation Atin Mukherjee 1 and Debesh Choudhury 2 1 Department of Electronics and Communication Engineering, Dr. B.C Roy Polytechnic,

More information

A 128-Point FFT/IFFT Processor for MIMO-OFDM Transceivers a Broader Survey

A 128-Point FFT/IFFT Processor for MIMO-OFDM Transceivers a Broader Survey A 128-Point FFT/IFFT Processor for MIMO-OFDM Transceivers a Broader Survey N. Devi Vasumathy #1, T. Vigneswaran *2 # Research Scholar, School of Electronics Engineering, VIT University, Vandalur Kelambakkam

More information

Y-Plant Alert. Alarm Annunciator and Sequence of Event Recording System. BU 04M01A02-01E-A

Y-Plant Alert. Alarm Annunciator and Sequence of Event Recording System.  BU 04M01A02-01E-A Y-Plant Alert Alarm Annunciator and Sequence of Event Recording System BU 04M01A02-01E-A www.yokogawa.com/us Y-Plant Alert TM Alarm Annunciator and Sequence of Event Recording System Mission critical facilities

More information

PORTABLE ISOTOPE IDENTIFIER Search Tool / Sample Counting System

PORTABLE ISOTOPE IDENTIFIER Search Tool / Sample Counting System FEATURES: HIGH GAMMA SENSITIVITY MULTI-CHANNEL ANALYZER (MCA) WORKS WITH VARIETY OF PROBES RADIONUCLIDE LIBRARY TAILORED TO CUSTOMER REQUEST SIMULTANEOUSLY MEASURES ; DISPLAYS; ALARMS 1-3 SEPARATE DETECTORS

More information

Chapter 1 Introduction

Chapter 1 Introduction Chapter 1 Introduction This chapter presents an introductory background to the research work undertaken, the problem statement, research issues involved and objectives of the research work. The contribution

More information

Design and Development of General Purpose Alarm Generator for Automated System

Design and Development of General Purpose Alarm Generator for Automated System Design and Development of General Purpose Alarm Generator for Automated System Amit Pandey 1 1 CSIR-Central Scientific Instruments Organisation India Abstract: This paper presents a model for general purpose

More information

A Novel Architecture for Radix-4 Pipelined FFT Processor using Vedic Mathematics Algorithm

A Novel Architecture for Radix-4 Pipelined FFT Processor using Vedic Mathematics Algorithm IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834,p- ISSN: 2278-8735.Volume 9, Issue 6, Ver. II (Nov - Dec. 2014), PP 23-31 A Novel Architecture for Radix-4 Pipelined

More information

LSM MANUAL PRINCIPLES OF LSM

LSM MANUAL PRINCIPLES OF LSM Page 1 1.0 PRINCIPLES OF LSM 1.1. SYSTEM REQUIREMENTS: LSM 3.1 SP1 OR HIGHER (SUBJECT TO CHANGE) GENERAL Local administrator rights for installation Communication: TCP/IP (NetBios active), LAN (recommended:

More information

For Complete Fire and Gas Solutions

For Complete Fire and Gas Solutions Industrial Fire For Complete Fire and Gas Solutions 2 The Total Package What do you need from an integrated fire and gas system? In industrial fire and gas environments it s important to have a reliable

More information

Enterprise GIS Architecture Deployment Options

Enterprise GIS Architecture Deployment Options 2013 Esri International User Conference July 8 12, 2013 San Diego, California Technical Workshop Enterprise GIS Architecture Deployment Options Andrew Sakowicz Esri UC2013. Technical Workshop op. Introduction

More information

RTD TEMPERATURE SENSING SYSTEM

RTD TEMPERATURE SENSING SYSTEM General Overview RTD TEMPERATURE SENSING SYSTEM The Prime Technology RTD Temperature System 9219-00-0002 is a three-channel temperature measuring system that utilizes two RTD Temperature Sensor inputs

More information

Features of Shinko advanced package and Optical sensor developed with Fraunhofer ENAS. Yuichiro Shimizu SHINKO ELECTRIC INDUSTRIES CO., LTD.

Features of Shinko advanced package and Optical sensor developed with Fraunhofer ENAS. Yuichiro Shimizu SHINKO ELECTRIC INDUSTRIES CO., LTD. Features of Shinko advanced package and Optical sensor developed with Fraunhofer ENAS Yuichiro Shimizu SHINKO ELECTRIC INDUSTRIES CO., LTD. Chemnitzer Seminar, June 13-14, 2017 1 Company's Outline Head

More information

VLSI Design EEC 116. Lecture 1. Bevan M. Baas Thursday, September 28, EEC 116, B. Baas 1

VLSI Design EEC 116. Lecture 1. Bevan M. Baas Thursday, September 28, EEC 116, B. Baas 1 VLSI Design EEC 116 Lecture 1 Bevan M. Baas Thursday, September 28, 2017 EEC 116, B. Baas 1 Today Administrative items Syllabus and course overview Course objective and strategies My background Chapter

More information

How SWIR Imaging contributes to the optimization of automatic quality control in the food industry

How SWIR Imaging contributes to the optimization of automatic quality control in the food industry How SWIR Imaging contributes to the optimization of automatic quality control in the food industry 2013 Overview Xenics in Short New Architecture Products Line Overview Visionlink Infrared Seminar 2013

More information

DeltaV Live. Introduction. Benefits. Modern, built-for-purpose operations experience

DeltaV Live. Introduction. Benefits. Modern, built-for-purpose operations experience DeltaV Distributed Control System Product Data Sheet December 2018 DeltaV Live Modern, built-for-purpose operations experience Easily create intuitive displays, with minimal to no scripting required Robust,

More information

Networked Public Address and Voice Evacuation

Networked Public Address and Voice Evacuation Networked Public Address and Voice Evacuation MANy Stops. ThousANds of Passengers. one Vocia. Whether it s existing stops, new stations or even future lines, Vocia brings them all together and gives you

More information

THERE is significant research activity to minimize energy

THERE is significant research activity to minimize energy 310 IEEE JOURNAL OF SOLID-STATE CIRCUITS, VOL. 40, NO. 1, JANUARY 2005 A 180-mV Subthreshold FFT Processor Using a Minimum Energy Design Methodology Alice Wang, Member, IEEE, and Anantha Chandrakasan,

More information

Praetorian Fibre Optic Sensing

Praetorian Fibre Optic Sensing A Higher Level of Performance Praetorian Fibre Optic Sensing For more information, please visit > www.hawkmeasure.com 1 A Complete Pipeline Performance Monitoring System. Any pipe, anywhere Distance up

More information

Thermal challenges in IC s: Hot spots passive cooling and beyond

Thermal challenges in IC s: Hot spots passive cooling and beyond Thermal challenges in IC s: Hot spots passive cooling and beyond Devesh Mathur, Ph.D. Andy Delano, Ph.D. Honeywell Electronic Materials Spokane, WA, USA February 15, 2007 Overview Motivation Where are

More information

IS-6500 TCP/IP Video Door Phone System

IS-6500 TCP/IP Video Door Phone System IS-6500 TCP/IP Video Door Phone System We are building a world that's safer and more secure... More comfortable and energy efficient... More innovative and productive. We are Honeywell. Refinement everywhere,

More information

USER MANUAL FOR OPERATING SYSTEM

USER MANUAL FOR OPERATING SYSTEM P2262 ALARM PANEL USER MANUAL FOR OPERATING SYSTEM 21765-07 September 1999 Associated Controls (Aust) PTY. LTD. 29 Smith Street, Hillsdale, NSW, 2036. PH (02) 9311 3255, FAX (02) 9311 3779 Page 1 of 177

More information

Intelligent Fire Detection and Visual Guided Evacuation System Using Arduino and GSM

Intelligent Fire Detection and Visual Guided Evacuation System Using Arduino and GSM Intelligent Fire Detection and Visual Guided Evacuation System Using Arduino and GSM Naresh Kumar 1,Poonam Kumari 2 1 M.Tech(Instrumentation), UCIM, Panjab University, Chandigarh, India 2 Assistant Professor,

More information

Praetorian Fibre Optic Sensing

Praetorian Fibre Optic Sensing A Higher Level of Performance Praetorian Fibre Optic Sensing Perimeter Security & Threat Detection For more information, please visit > www.hawkmeasure.com 1 A Complete Perimeter Security and Border Control

More information

Learning from High Energy Physics Data Acquisition Systems Is this the future of Photon Science DAQ?

Learning from High Energy Physics Data Acquisition Systems Is this the future of Photon Science DAQ? DOE BES Neutron & Photon Detectors Workshop, August 1 3, 2012 Learning from High Energy Physics Data Acquisition Systems Is this the future of Photon Science DAQ? Matt Weaver, August 3rd, 2012 Outline

More information

On-chip optical detectors in Standard CMOS SOI

On-chip optical detectors in Standard CMOS SOI On-chip optical detectors in Standard CMOS SOI Dr. Matthias Fertig Project Manager for New Product Development Volvo AG Advisory Engineer Microprocessor Development IBM Research and Development Outline

More information

i.net Engineered system solutions for

i.net Engineered system solutions for i.net Engineered system solutions for Sound Masking, PAGING & AUDIO i.net The Intelligent Network Lencore is committed to providing solutions, products and services that transform environments and change

More information

HB0267 CoreFFT v7.0 Handbook

HB0267 CoreFFT v7.0 Handbook HB0267 CoreFFT v7.0 Handbook 12 2016 Microsemi makes no warranty, representation, or guarantee regarding the information contained herein or the suitability of its products and services for any particular

More information

Driver Assistance Systems and Vehicle Environment Sensing

Driver Assistance Systems and Vehicle Environment Sensing Driver Assistance Systems and Vehicle Environment Sensing Contact: Vehicle Functions: Udo Wehner +49 371 2373-4130 Active Safety Development: Karsten Schulze +49 371 2373-4135 Driver Assistance Development:

More information

US CMS Trigger. DOE-NSF Review Wesley H. Smith, U. Wisconsin CMS Trigger Project Manager April 9, 2003

US CMS Trigger. DOE-NSF Review Wesley H. Smith, U. Wisconsin CMS Trigger Project Manager April 9, 2003 US CMS Trigger DOE-NSF Review Wesley H. Smith, U. Wisconsin CMS Trigger Project Manager April 9, 2003 Outline: Project Completion M&O Upgrades This talk is available on: http://hep.wisc.edu/wsmith/cms/trig_m&o_0403.pdf

More information

Research on Evaluation of Fire Detection Algorithms

Research on Evaluation of Fire Detection Algorithms Research on Evaluation of Fire Detection Algorithms JIAN LI 1,2, WENHUI DONG 1, ZHIBIN MEI 1, and ZHUOFU WANG 1 1 Shenyang Fire Research Institute Ministry of Public Security China, 110031 2 Dalian University

More information

LHCb Rich Detectors Control and High Voltage Systems

LHCb Rich Detectors Control and High Voltage Systems LHCb Rich Detectors Control and High Voltage Systems Mario Sannino On behalf of LHCb RICH Group Rich 2007 Trieste 19.10.2007 1 Rich 2007 Trieste 19.10.2007 LHCb Rich Detectors Control and High Voltage

More information

Performance of Benchmarks on the Cell Processor

Performance of Benchmarks on the Cell Processor Performance of Benchmarks on the Cell Processor Kerry Creeron Michael Smith Dan Perron CS/ECE 752 Advanced Computer Architecture I The University of Wisconsin-Madison ktcreeron at wisc dot edu, masmith27

More information

The ISP Technologies Advantage

The ISP Technologies Advantage The ISP Technologies Advantage The ISP Technologies engineering team has been designing cutting edge audio products for more than 25 years and our engineering technology surpasses even the biggest and

More information

New Seismic Unattended Small Size Module for Foot-Step Detection

New Seismic Unattended Small Size Module for Foot-Step Detection New Seismic Unattended Small Size Module for Foot-Step Detection Alex Pakhomov and Tim Goldburt * General Sensing Systems, LLC, 440 Saw Mill River Road, Ardsley, NY 10502 ABSTRACT General Sensing Systems

More information

Basic Input Data Needed to Develop a High Performance Fan/Blower with Low Noise, Energy Saving and High Efficiency

Basic Input Data Needed to Develop a High Performance Fan/Blower with Low Noise, Energy Saving and High Efficiency Basic Input Data Needed to Develop a High Performance Fan/Blower with Low Noise, Energy Saving and High Efficiency Haiye Lou TurboMoni Applied Dynamics Lab Abstract It is often happened, when a project

More information

Expected needs in Electronics for the CERN Experiments. 5 October 2015

Expected needs in Electronics for the CERN Experiments. 5 October 2015 Expected needs in Electronics for the CERN Experiments 5 October 2015 Philippe.Farthouat@cern.ch 2 The LHC Experiments 3 ATLAS Detector 4 CMS Detector 5 Collaborations Last generation of HEP detectors

More information

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland

The Compact Muon Solenoid Experiment. Conference Report. Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland Available on CMS information server CMS CR -2016/298 The Compact Muon Solenoid Experiment Conference Report Mailing address: CMS CERN, CH-1211 GENEVA 23, Switzerland 28 October 2016 (v2, 25 November 2016)

More information

Oracle Real Application Clusters (RAC) 12c Release 2 What s Next?

Oracle Real Application Clusters (RAC) 12c Release 2 What s Next? Oracle Real Application Clusters (RAC) 12c Release 2 What s Next? Markus Michalewicz Oracle Redwood Shores, CA, USA Keywords: RAC, Cloud, Private Cloud, Storage, Network, Development, Market Trends, Future

More information

An Overview of Procedural Fire. How to model procedurally spreading fire

An Overview of Procedural Fire. How to model procedurally spreading fire An Overview of Procedural Fire How to model procedurally spreading fire Table of Contents How to model procedurally spreading fire...1 1. Introduction...3 2. Simulating Fire...4 3. Implementation...5 3.1.

More information

Experion LX Direct Station Specification

Experion LX Direct Station Specification Technical Information Experion LX Direct Station Specification LX03-210-110 Release 110 January 2014, Version 1 Experion LX Station Specification, LX03-210-110 Revision History Revision Date Description

More information

Packaging in Consumer Goods

Packaging in Consumer Goods Packaging in Consumer Goods From stand-up pouches packed in bliss boxes to plastic clam shells shrink-wrapped together, the size, shape and materials used to package a product are becoming increasingly

More information

Engineering Specification

Engineering Specification Engineering Specification Page 1 of 8 Contents PURPOSE AND SCOPE...3 VERSION HISTORY...3 GENERAL...4 DESCRIPTION OF WORK... 4 VIDEO SMOKE DETECTION CENTRAL EQUIPMENT...5 CENTRAL CONTROL UNIT... 5 SYSTEM

More information

Bench Mark 6SigmaET Thermal Simulation Software

Bench Mark 6SigmaET Thermal Simulation Software Bench Mark 6SigmaET Thermal Simulation Software Pavel Valenta, Wireless Division Stuttgart August 19 th, 2013 OUTLINE SUMMARY AND RECOMMENDATIONS RELIABILITY OF RESULTS CONVERGENCE OF LARGE PROJECTS 2

More information

Smart Sensor in Wide Area Network Environment How can sensors improve your safety? Tadeusz Pietraszek

Smart Sensor in Wide Area Network Environment How can sensors improve your safety? Tadeusz Pietraszek Smart Sensor in Wide Area Network Environment How can sensors improve your safety? Tadeusz Pietraszek April 25, 2003 To feel more is to know more Outline ntroduction Need for monitoring system ssues of

More information

On a GPU Acceleration of the Stochastic Grid Bundling Method

On a GPU Acceleration of the Stochastic Grid Bundling Method On a GPU Acceleration of the Stochastic Grid Bundling Method Álvaro Leitao Rodríguez and Cornelis W. Oosterlee Technische Universiteit Delft (TU Delft) - Centrum Wiskunde & Informatica (CWI) 13/6/2014

More information

Research on the Monitor and Control System of Granary Temperature and Humidity Based on ARM

Research on the Monitor and Control System of Granary Temperature and Humidity Based on ARM Research on the Monitor and Control System of Granary Temperature and Humidity Based on ARM Liu Yang 1, Xinrong Cheng 2, Zhijie Jiang 3, and Zhijun Ren 1 1 Engineering College, China Agricultural University,

More information

Wireless Leak Detector and Inhibitor System. Group 6: Petar Arnaut Olivier Thomas J Chris Fontaine Barry Zou

Wireless Leak Detector and Inhibitor System. Group 6: Petar Arnaut Olivier Thomas J Chris Fontaine Barry Zou Wireless Leak Detector and Inhibitor System Group 6: Petar Arnaut Olivier Thomas J Chris Fontaine Barry Zou December 2, 2013 Presentation Outline 1. Mo&va&on and Background 2. System Overview 3. Project

More information

2 Overview of the Pixel Detector Control System

2 Overview of the Pixel Detector Control System Towards a Detector Control System for the ATLAS Pixel Detector S. Kersten, K.H. Becks, M. Imhäuser, P. Kind, P. Mättig, J. Schultes Fachbereich Physik Bergische Universität D-4097 Wuppertal 1 Abstract

More information

Call stations and extensions

Call stations and extensions Novigo Call stations and extensions PT2001-A1, PT2002-A1, PT2008-A1, PT2009-A1, PTO2001-A1, PTO2002-A1, PTO2003-A1, PTO2004-A1, PTO2005-A1, PTO2006-A1, PTO2008-A1 EN 54-16-certified alarm and business

More information

Before you install ProSeries Express Edition software for network use

Before you install ProSeries Express Edition software for network use Before you install ProSeries Express Edition software for network use The following pages describe system requirements and other information you need to know before installing ProSeries Express Edition

More information

CHAM Case Study Numerical Simulation of a Air-to-air Cross-flow Heat Exchanger

CHAM Case Study Numerical Simulation of a Air-to-air Cross-flow Heat Exchanger CHAM Limited Pioneering CFD Software for Education & Industry CHAM Case Study Numerical Simulation of a Air-to-air Cross-flow Heat Exchanger PHOENICS demonstration case A CFD model of a cross-flow heat

More information

System Description AutroMaster V Presentation System

System Description AutroMaster V Presentation System System Description AutroMaster V Presentation System AMASTERV-SYSTEM/XGB, Rev. B, 2018-05-07, Autronica Fire And Security AS COPYRIGHT This publication, or parts thereof, may not be reproduced in any form,

More information

Application Note 35. Fast Fourier Transforms Using the FFT Instruction. Introduction

Application Note 35. Fast Fourier Transforms Using the FFT Instruction. Introduction Application Note Fast Fourier Transforms Using the FFT Instruction The Fast Fourier Transform (FFT) is used in a variety of digital signal processing applications. This application note describes how to

More information

The SLAC Detector R&D Program

The SLAC Detector R&D Program The SLAC Detector R&D Program David MacFarlane DOE Site Visit September 14, 2010 Detector R&D Program Page 1 Overview of detector R&D program KA15 detector R&D program includes Core engineering and generic

More information

HEUFT SPECTRUM. Modular HEUFT systems of the new generation. Highly automated, self-explanatory and SIMPLY EASY!

HEUFT SPECTRUM. Modular HEUFT systems of the new generation. Highly automated, self-explanatory and SIMPLY EASY! HEUFT SPECTRUM II Modular HEUFT systems of the new generation. Highly automated, self-explanatory and SIMPLY EASY! HEUFT IS SYSTEMTECHNIK Quality, safety and efficiency: this is what matters when filling

More information

Smart Water Networks for Efficiency Gains

Smart Water Networks for Efficiency Gains Smart Water Networks for Efficiency Gains Standards Certification Education & Training Publishing Conferences & Exhibits Speaker: Brian Heimbigner Co-author: Mark Bitto 2013 ISA Water / Wastewater and

More information

CXI Detector Status, Cost & Schedule

CXI Detector Status, Cost & Schedule Status, Cost & Schedule LCLS Detector Physicist June 3, 2009 1 Outline Technical Scope Basic detector module (Cornell) Detector assembly Data acquisition Major Interfaces Design Reviews Cost & Schedule

More information

THERMAL VACUUM TESTS OF A FIVE WATT PSEUDO CHIP SEM-X ELECTRONIC MODULE CLAMPED IN A SATELLITE BOX

THERMAL VACUUM TESTS OF A FIVE WATT PSEUDO CHIP SEM-X ELECTRONIC MODULE CLAMPED IN A SATELLITE BOX IN A THERMAL VACUUM TESTS OF A FIVE WATT PSEUDO CHIP SEM-X ELECTRONIC MODULE CLAMPED IN A SATELLITE BOX William H. Greenwood and Ronald L. Akau Sandia National Laboratories PO Box 5800 Albuquerque, New

More information