SlideShare a Scribd company logo
1 of 4
Download to read offline
Neha Goel Ashutosh Nandi
Dept. of Electronics and Comm. Engg. National Institute of Technology Kurukshetra, India
nehagoel0392@gmail.com, ashutosh.chl@gmail.com
Design of Optimized FIR Filter Using FCSD
Representation
Keywords— FIR Filter, CSA, Barrel shifter, FCSD.
Abstract—This paper presents the design and implementation
of an eight order efficient FIR filter for wireless communication
system. In this work, factored canonical signed digit
representation (FCSD) is used for representing the filter
coefficients in order to reduce the design complexity, area and
delay of the FIR filter. Complexity of the system has been
reduced by replacing binary coefficients with FCSD
representation. Further area and delay has been improved by
replacing multiplication operation with add and shift method
where carry save adder (CSA) is used for addition of two
numbers and barrel shifter is used for shifting the data words.
Representation of coefficient in the FCSD format along with
fastest adder and shifter improves the performance of the system.
FIR filter has been designed using an equiripple method in
MATLAB and further synthesized on Spartan 3E XC3S500E
target FPGA device. Simulation results show that optimized
FCSD based FIR filter offers a less number of slices, look up
tables (LUTs) and flip-flops as compared to CSD and
conventional FCSD based FIR filter, in addition to enhanced
performance.
I. INTRODUCTION
Digital FIR filter is one of the essential components in
Digital Signal Processing (DSP) and communication
system. With an explosive growth in mobile
computing and multimedia applications, demand for low
power and high speed DSP system has seen a tremendous
growth [1]. Digital filters are used to modify the attributes of
signal by removing noise from the original signal and
shape the spectral characteristics of the resulting signal
[2]. Digital filters are very superior in level of performance as
they are highly stable, accurate and versatile as compared
to analog filter [3]. Moreover, Portable applications
require digital filter which operates at high data rate and low
power consumption as high power consumption reduces
battery lifetime, affecting device reliability and increasing
cool cost [4]. Due to this reason, the requirement of a digital
filter with optimized area, power and
delay is a challenging task.
DSP applications require a large order FIR filter. However,
the complexity increases with increase in filter order because of
requirements of larger mathematical computations [5].
Therefore, real time implementation of this filter with
precise value is posing as a serious challenge. In order to
achieve efficient digital filter, order of FIR filter must be as
small as possible. This paper focuses mainly on the FIR filter due to
its absolute stability and linear phase response [6]. On the
basis of hardware implementation, digital filter can be
classified into two categories: multipliers based and
memory based [7].
The main components of digital filter consist of registers to
save the samples of signals, adders to carry out sum operations
and multiplier for multiplication of the filter coefficients with
signal samples [8]. Despite the fact that designing of digital
filter seems simple, but the design bottleneck is its multiplier
block for speed, area and power consumption [9]. Complexity
is mainly dominated by coefficient multiplication operation
[10,11]. In order to reduce complexity, the filter
coefficients are represented in FCSD representation which
requires the least number of adders [12]. The filter can
be further optimized by using CSA and a barrel shifter
to achieve the operation of multiplication [13].
The rest of the paper is organized as follows: an overview of
FIR filter is given in section II. Section III consists of modules
for FIR filter. Section IV describes the proposed work for
filter optimization. In section V, simulation results
are discussed. Finally, section VI concludes the paper
by summarizing the main contributes.
Multipliers based design includes multiple constant
multiplication (MCM) with add and shift
operations.MCM based FIR filter uses
transposed structure which increases the speed of the
system.The area can be further saved by optimizing
coefficient with quantization technique. Memory based
design are divided into two approaches: distributed
arithmetic (DA) and Look Up table (LUT) method. The
DA based approach computes the inner product by
accumulating bit level partial results in the FIR
filter. The LUT based approach stores odd multiple
of input signal in ROM to realize constant
multiplications in MCM [7].
II. FIR FILTER
FIR filter is also known as non-recursive digital filters as they
don’t have feedback [6]. Output of the FIR filter can
be described by the following difference equation
FIR filters are digital filter with finite impulse response
which involves convolution operation given by equation [2]:
Y[n] = X[n]*H [n] (1)
3 NITTTR, Chandigarh EDIT-2015
Int. Journal of Electrical & Electronics Engg. Vol. 2, Spl. Issue 1 (2015) e-ISSN: 1694-2310 | p-ISSN: 1694-2426
Fig.1. Transposed form of FIR filter
Digital filter can be designed by calculating the filter
coefficient on the basis of filter order, sampling frequency,
pass band and stop band frequencies etc.[5]. Generally, power
consumption and the amount of computation are directly
proportional to filter order. Filter coefficient can be found with
the MATLAB FDA tool. Further, the filter can be designed by
different method including window functions, frequency
sampling and equiripple method [9]. Table I lists the
parameters of the low pass FIR filter and the corresponding
magnitude response is shown in Fig. 2.
TABLE I. FIR Filter Design Parameter
Filter Parameter Value
Design method Equiripple
Order 8
Density factor 20
Sampling frequency FS = 48000 Hz
Passband frequency Fpass = 9600Hz
Stopband frequency Fstop = 12000Hz
Passband weight Wpass = 1
Stopband weight Wstop = 1
The calculated coefficients of the proposed FIR filter are [9,
16, 17, 32, 33, 32, 17, 16, 9]. Coefficients are symmetric in
nature which further reduces area and power consumption [5].
Order for FIR filter is N while the length of the filter is N+1
which is similar to the number of the filter coefficients [10].
As the filter order increases, complexity of the system
increases by consuming more amount of time for signal
processing.
Where N and Hk represents the length and coefficients of the
FIR filter respectively [10].Basically FIR filter consists of two
structures, i.e., direct form and transposed form. In direct
form, signal samples are multiplied by filter coefficients and
combined together in adder block [7]. A modification over
direct form is transposed structure as shown in fig 1. In
transposed form, the same input signal is multiplied by several
coefficients. In the present work, transposed form is used
which reduces area and delay as compared to direct form [6].
(2)
k
K knxHnY
N
)()(
0
1




Fig.2. Lowpass FIR filter magnitude response
Three modules are needed for implementation of optimized
FIR filter, i.e., delay, addition and multiplication. Barrel
shifter is used to provide shift operation and CSA is used to
carry out a sum operation. The modules used for
implementation are:
Barrel shifter is an integral component in several
computing devices which is mainly used for shifting and
rotating multiple bits in a single clock. It can be designed with
the help of combinational logic circuits such as logic gates,
multiplexers and decoders. However, the MUX based barrel
shifter provides less delay and power when compared to other
circuits [13]. Therefore, in the present work, BS is designed
using multiplexers architecture. Shifting a data word by a
specific amount of shift is performed in one clock cycle.
Sequences of multiplexers are used to implement the barrel
shifter and the output of one mux is connected to the input of
the next mux that depends on the shift distance [7]. The data
word can be shifted up to 8 bits either in left or right direction.
If the input pin is zero, then the observed output remains same,
i.e., without applying shifting operation. On the other hand,
Int. Journal of Electrical & Electronics Engg. Vol. 2, Spl. Issue 1 (2015) e-ISSN: 1694-2310 | p-ISSN: 1694-2426
NITTTR, Chandigarh EDIT -2015 4
B. Barrel Shiifter
CSA is mainly used for fast arithmetic in a DSP system for
addition of three or more binary numbers. In CSA, there is no
propagation delay as compared to the ripple carry adder and
carry look ahead adder [4]. For sufficient large value of n, it
provides results very quickly and relatively occupies less area
in comparison to normal adders. CSA includes full adders but
the carry output is taken out from each bit to form second
result vector instead of passing it to the next most significant
bit [8]. It consists of three numbers (x, y, z) as the input which
is added together and provides sum (s) and carry (c) as an
output. Hence, this adder is called as 3:2 compressor, where
the operation is performed in one time unit duration. In carry
save operation, the carry is passed until last step whereas
ordinary addition is done in the last step only. When CSA is
implemented on FPGA, then two LUTs are required for
generation of carry and sum bit where as single LUT is
required for the carry propagation adder [11]. Fig.3 represents
CSA that consists of 17 half adders and 15 full adders.
A. Carry Save Adder
III. MODULES FOR FIR FILTER
Fig.3. Block diagram for 16-bit Carry Save Adder
C. Conventional FCSD
Factored Canonical Signed Digit representation is a slight
modification over CSD. It replaces multiplier operation with
add and shift operations on the basis of prime factors of the
coefficients [9]. A combination of effective factorization and
CSD representation of filter coefficient leads to a reduction in
the number of adders which further hardware cost. It provides
a relatively greater reduction in filter area, but at the cost of
decreased clock speed [9].Increase in delay is the major
drawback of this algorithm. The Factored CSD algorithm
provides a trade-off between calculated complexity and
convergence [12]. Following example compares CSD and
FCSD algorithm.
y = 217*x
= (11011001)*x % 217 in binary form
= (1001’001’1’1’) *x % 217 in signed digit
= (256- 32-4-2-1) * x
= (x << 8) –(x << 5) – (x << 2) – (x << 1) – x
Cost of CSD = 4 adders
y = 217*x
= (7*31)* x
= (x << 3– x) *(x << 5 – x)
Cost of FCSD = 2 adders
It is concluded that, the number of adders has been reduced by
using FCSD instead of CSD technique. Therefore, we have
used FCSD formulation for reducing filter complexity.
IV. PROPOSED WORK FOR OPTIMIZED FIR FILTER
FIR filter based on FCSD technique is proposed that use carry
save adder and barrel shifter for addition and shifting
operations. FCSD technique used for coefficient
V. SIMULATION RESULTS
This section presents the simulation results of the proposed
FIR filter. A Low pass FIR Filter is designed using equiripple
method in MATLAB FDA tool box for calculation of
coefficients. The filter can be designed in two structures, i.e.
direct form and transposed form. We have used transposed
form structure which reduces the implementation cost in terms
of area and delay. FIR filter architecture has been designed
and implemented on Xilinx Spartan3E XC3S500E using
VHDL. This results in realizing an FIR filter which can be
operated at maximum frequency of 238.322 MHz by
consuming 79 slices. The characteristics of proposed FPGA
based FIR filter are summarized in table II along with the
comparison of the proposed filter with CSD and FCSD
technique.
TABLE II: Performance Comparison between different approaches
Parameter CSD FCSD Proposed
work
No. of slices 808 789 79
No. of flip-flops 510 512 126
No. of 4 input
LUT’s
1349 1290 146
Frequency (MHz) 43.814 44.911 238.322
Min. Period (ns) 22.824 22.266 4.196
As shown in table II, Number of slices has been reduced
from 789 to 79 in FCSD technique by consuming 126
numbers of flipflops. Proposed FCSD based FIR filter
occupies 146 number of look up tables as compared to FCSD
technique. In comparison to FCSD, this result shows the
enhanced performance in terms of speed and area due to
efficient utilization of embedded multiplier and LUTs inside
the device. Fig. 4 compares the proposed FCSD technique
with CSD and FCSD method in the form of bar graph. The
proposed work offers very less number of slices, LUTs and
flipflops as compared to other two techniques generated by
MATLAB. Simulation results shows that proposed filter
consumes 89.98% less number of slices, 88.682% less number
of LUTs and 75.39 % less number of flipflops as compared to
FCSD technique to provide cost effective filter. Time delay of
if the input is non zero, then output is shifted in either
specified direction. After shifting operation, all the partial
products (PP) are added together to achieve multiplication
operation. Thus, Performance of FIR filter is improved by use
of barrel shifter in terms of area and delay [13].
representation reduces the area of the filter as compared to the
CSD technique, but with the disadvantage of increased delay.
This propagation delay can be improved by using CSA and a
barrel shifter. For multiplication of filter coefficients with the
input signal add and shift method is used. Therefore, the
multiplier consists of one adder unit (CSA) and one shifter
unit (barrel shifter). The filter is processed step by step in
which coefficients are first factored and subsequently
represented in CSD format. CSA is used, when the input
signal is multiplied with filter coefficients and added together
in the last step. Optimization of FIR Filter considering area
and delay constraints has been achieved using FCSD
representation, CSA and barrel shifter. These combinations of
FCSD technique with CSA and BS can target significant
reduction in circuit complexity, area and delay.
Int. Journal of Electrical & Electronics Engg. Vol. 2, Spl. Issue 1 (2015) e-ISSN: 1694-2310 | p-ISSN: 1694-2426
5 NITTTR, Chandigarh EDIT-2015
the proposed filter has been improved considerably which in
turn increases the operational speed of the system. This
reduction in design complexity, area and delay of proposed
FCSD based filter can be viewed as a possible alternative for
circuit designer.
Fig.4. Bar graph representing CSD, FCSD and proposed work comparison
VI. CONCLUSION
The proposed FIR filter has been designed for 8 tap using
FCSD representation of filter coefficients. An optimized FIR
filter has been designed using barrel shifter and CSA in
VHDL which is further simulated on Xilinx Spartan3E based
XC3S500E target FPGA device. The results show that
optimized FCSD based FIR filter can be operated at a
maximum frequency of 238.322 MHz by consuming 79 slices,
126 flip-flops and 146 LUTs. Simulation results shows that
optimized filter occupies 89.98% less number of slices,
88.682% less number of LUTs and 75.39 % less number of
flipflops as compared to FCSD technique. Delay of the
optimized FIR filter has been reduced by 18.071 ns. It is
concluded that, use of FCSD representation in FIR filters
along with fastest adder and shifter can target significant
reduction in design complexity, area and delay when
compared to other approaches.
REFERENCES
[1] D. L. Maskell, “ Design of Efficient Multiplierless FIR filters,” IET
Circuits Device System, vol.1, no. 2, pp. 175-180, May 2007.
[2] M. D. Cilletti, Advance Digital Design with Verilog HDL, PHI learning,
first edition, 2003.
[3] A. Nandi, A. K. Saxena and S. Dasgupta, “Design and Analysis of
Analog Performance of Dual-k Spacer Based Underlap N/P-FinFET at
12nm Gate Length,” IEEE Trans. on Electron Devices, vol. 60, no. 5,
pp. 1529-1535, May 2013.
[4] R. Mahesh and A. P. Vinod,“A New Common Subexpression
Elimination Algorithm for Realizing Low Complexity Higher Order
Digital Filters,” IEEE Trans. On Computer Aided Design of Integreted
Circuits and Sytems, vol. 27, no. 2, pp. 217-229, Feb. 2008.
[5] L. Wu, Y. Cui and J. Huang, “Design and Implemenation of an
Optimized FIR Filter for IF GPS Signal Simulator,” IEEE conf. on
Microelectronics and Electronics, pp. 25-28, Sept. 2010.
[6] J. Proakis and D. Manolakis, Digital Signal Processing, fourth edition,
2008.
[7] S. F. Hsiao and J. H. Z. Jian, “ Low Cost FIR Filter Designs Based on
Faithfully Rounded Truncated Multiple Constant Multiplications,” IEEE
Trans. on Circuits and Systems-II: Expression Briefs, vol. 60, no. 5, pp.
287-291, May 2013.
[8] J. Um and T. Kim, “An Optimal Allocation of Carry Save Adders in
Arithmetic Circuits, ” IIEEE Trans. on computer, vol. 50, no. 3, pp. 215-
230, Mar. 2001.
[9] Mathworks, User Guide Filter Design Toolbox,Version-2, 2007.
[10] L. Litwin, “ FIR and IIR Digital Filters,” IEEE Potentials, vol. 19, no. 4,
pp. 28–31, Oct. i2000.
[11] L. Aksoy, E. Costa, P. Flores and J. Monteiro, “ Exact and Approximate
Algorithms for the Optimization of Area and Delay in Multiple Constant
Multiplications”, IEEE Trans. on Comp. Aided Design of Integreted
Circuits and Sytems, vol. 27, no. 6, pp. 1013-1026, iJune 2008.
[12] K. Priya and R. Mehra, “ FPGA Based Cost Efficient FIR Filter Using
Factored CSD technique ,” International iJournal of Recent Technology
and Engineering,vol. 6, issue 6, pp. 130-134, Jan. 2013.
[13] R. Rajalakshmi and P. ArunaPriya, “ Design and Analysis of A 4-Bit
Low Power Universal Barrel-Shifter in 16nm FINFET Technology,”
IEEE International Conference on Advanced Communication Control
and Computing Technologies, pp. 527-532, May 2014.
0
400
800
1200
slices flip-flops LUT’s Frequency
(MHz)
CSD FCSD Proposed work
Int. Journal of Electrical & Electronics Engg. Vol. 2, Spl. Issue 1 (2015) e-ISSN: 1694-2310 | p-ISSN: 1694-2426
NITTTR, Chandigarh EDIT -2015 6

More Related Content

What's hot

optimazation of standard cell layout
optimazation of standard cell layoutoptimazation of standard cell layout
optimazation of standard cell layoutE ER Yash nagaria
 
Logic synthesis with synopsys design compiler
Logic synthesis with synopsys design compilerLogic synthesis with synopsys design compiler
Logic synthesis with synopsys design compilernaeemtayyab
 
Floorplanning in physical design
Floorplanning in physical designFloorplanning in physical design
Floorplanning in physical designMurali Rai
 
CAD: Layout Extraction
CAD: Layout ExtractionCAD: Layout Extraction
CAD: Layout ExtractionTeam-VLSI-ITMU
 
Define Width and Height of Core and Die (http://www.vlsisystemdesign.com/PD-F...
Define Width and Height of Core and Die (http://www.vlsisystemdesign.com/PD-F...Define Width and Height of Core and Die (http://www.vlsisystemdesign.com/PD-F...
Define Width and Height of Core and Die (http://www.vlsisystemdesign.com/PD-F...VLSI SYSTEM Design
 
Physical Verification Design.pdf
Physical Verification Design.pdfPhysical Verification Design.pdf
Physical Verification Design.pdfAhmed Abdelazeem
 
fpga programming
fpga programmingfpga programming
fpga programmingAnish Gupta
 
Vlsi physical design
Vlsi physical designVlsi physical design
Vlsi physical designI World Tech
 
Timing and Design Closure in Physical Design Flows
Timing and Design Closure in Physical Design Flows Timing and Design Closure in Physical Design Flows
Timing and Design Closure in Physical Design Flows Olivier Coudert
 
ieee projects list
ieee projects listieee projects list
ieee projects list8130809758
 

What's hot (20)

Physical design
Physical design Physical design
Physical design
 
Inputs of physical design
Inputs of physical designInputs of physical design
Inputs of physical design
 
Floor plan & Power Plan
Floor plan & Power Plan Floor plan & Power Plan
Floor plan & Power Plan
 
optimazation of standard cell layout
optimazation of standard cell layoutoptimazation of standard cell layout
optimazation of standard cell layout
 
Routing.pdf
Routing.pdfRouting.pdf
Routing.pdf
 
Logic synthesis with synopsys design compiler
Logic synthesis with synopsys design compilerLogic synthesis with synopsys design compiler
Logic synthesis with synopsys design compiler
 
Floorplanning in physical design
Floorplanning in physical designFloorplanning in physical design
Floorplanning in physical design
 
Eco
EcoEco
Eco
 
CAD: Layout Extraction
CAD: Layout ExtractionCAD: Layout Extraction
CAD: Layout Extraction
 
Define Width and Height of Core and Die (http://www.vlsisystemdesign.com/PD-F...
Define Width and Height of Core and Die (http://www.vlsisystemdesign.com/PD-F...Define Width and Height of Core and Die (http://www.vlsisystemdesign.com/PD-F...
Define Width and Height of Core and Die (http://www.vlsisystemdesign.com/PD-F...
 
Physical Verification Design.pdf
Physical Verification Design.pdfPhysical Verification Design.pdf
Physical Verification Design.pdf
 
fpga programming
fpga programmingfpga programming
fpga programming
 
Powerplanning
PowerplanningPowerplanning
Powerplanning
 
Vlsi physical design
Vlsi physical designVlsi physical design
Vlsi physical design
 
Timing and Design Closure in Physical Design Flows
Timing and Design Closure in Physical Design Flows Timing and Design Closure in Physical Design Flows
Timing and Design Closure in Physical Design Flows
 
Hard ip based SoC design
Hard ip based SoC designHard ip based SoC design
Hard ip based SoC design
 
Calibre
CalibreCalibre
Calibre
 
ieee projects list
ieee projects listieee projects list
ieee projects list
 
ZERO WIRE LOAD MODEL.pptx
ZERO WIRE LOAD MODEL.pptxZERO WIRE LOAD MODEL.pptx
ZERO WIRE LOAD MODEL.pptx
 
Need of Decoupling Capacitor
Need of Decoupling CapacitorNeed of Decoupling Capacitor
Need of Decoupling Capacitor
 

Viewers also liked

Slide garlaschelli
Slide garlaschelliSlide garlaschelli
Slide garlaschelliluigileo1967
 
A survey on various technologies available for Smart lab based on Internet of...
A survey on various technologies available for Smart lab based on Internet of...A survey on various technologies available for Smart lab based on Internet of...
A survey on various technologies available for Smart lab based on Internet of...IJSRD
 
Design of CMOS Inverter for Low Power and High Speed using Mentor Graphics
Design of CMOS Inverter for Low Power and High Speed using Mentor GraphicsDesign of CMOS Inverter for Low Power and High Speed using Mentor Graphics
Design of CMOS Inverter for Low Power and High Speed using Mentor GraphicsIJEEE
 
Milano Fashion Week 2013
Milano Fashion Week 2013Milano Fashion Week 2013
Milano Fashion Week 2013Target Research
 
High Fault Coverage For On Chip Network Using Priority Based Routing Algorithm
High Fault Coverage For On Chip Network Using Priority Based Routing AlgorithmHigh Fault Coverage For On Chip Network Using Priority Based Routing Algorithm
High Fault Coverage For On Chip Network Using Priority Based Routing AlgorithmIJSRD
 
Resume_Ramya_Purohit_
Resume_Ramya_Purohit_Resume_Ramya_Purohit_
Resume_Ramya_Purohit_Ramya Purohit
 
Flexible dsp accelerator architecture exploiting carry save arithmetic
Flexible dsp accelerator architecture exploiting carry save arithmeticFlexible dsp accelerator architecture exploiting carry save arithmetic
Flexible dsp accelerator architecture exploiting carry save arithmeticNexgen Technology
 
Measuring calorie and nutrition from food image
Measuring calorie and nutrition from food imageMeasuring calorie and nutrition from food image
Measuring calorie and nutrition from food imageLogicMindtech Nologies
 
Understanding and building Your Own Docker
Understanding and building Your Own DockerUnderstanding and building Your Own Docker
Understanding and building Your Own DockerMotiejus Jakštys
 
Live Container Migration: OpenStack Summit Barcelona 2016
Live Container Migration: OpenStack Summit Barcelona 2016Live Container Migration: OpenStack Summit Barcelona 2016
Live Container Migration: OpenStack Summit Barcelona 2016Phil Estes
 
SharePlus and launchpads Unity Connect Amsterdam
SharePlus and launchpads Unity Connect AmsterdamSharePlus and launchpads Unity Connect Amsterdam
SharePlus and launchpads Unity Connect AmsterdamDave Bakker
 
Cardiac rehabilitation past and present
Cardiac rehabilitation past and presentCardiac rehabilitation past and present
Cardiac rehabilitation past and presentAlireza Pishgahi
 
Molecular dynamics simulations of ferroelectrics with feram code
Molecular dynamics simulations of ferroelectrics with feram codeMolecular dynamics simulations of ferroelectrics with feram code
Molecular dynamics simulations of ferroelectrics with feram codeTakeshi Nishimatsu
 
Planificacion Estrategica
Planificacion EstrategicaPlanificacion Estrategica
Planificacion EstrategicaRoadmap
 
Nanotechnology And Its Applications
Nanotechnology And Its ApplicationsNanotechnology And Its Applications
Nanotechnology And Its Applicationsmandykhera
 

Viewers also liked (17)

Slide garlaschelli
Slide garlaschelliSlide garlaschelli
Slide garlaschelli
 
A survey on various technologies available for Smart lab based on Internet of...
A survey on various technologies available for Smart lab based on Internet of...A survey on various technologies available for Smart lab based on Internet of...
A survey on various technologies available for Smart lab based on Internet of...
 
Design of CMOS Inverter for Low Power and High Speed using Mentor Graphics
Design of CMOS Inverter for Low Power and High Speed using Mentor GraphicsDesign of CMOS Inverter for Low Power and High Speed using Mentor Graphics
Design of CMOS Inverter for Low Power and High Speed using Mentor Graphics
 
Milano Fashion Week 2013
Milano Fashion Week 2013Milano Fashion Week 2013
Milano Fashion Week 2013
 
High Fault Coverage For On Chip Network Using Priority Based Routing Algorithm
High Fault Coverage For On Chip Network Using Priority Based Routing AlgorithmHigh Fault Coverage For On Chip Network Using Priority Based Routing Algorithm
High Fault Coverage For On Chip Network Using Priority Based Routing Algorithm
 
Resume_Ramya_Purohit_
Resume_Ramya_Purohit_Resume_Ramya_Purohit_
Resume_Ramya_Purohit_
 
Flexible dsp accelerator architecture exploiting carry save arithmetic
Flexible dsp accelerator architecture exploiting carry save arithmeticFlexible dsp accelerator architecture exploiting carry save arithmetic
Flexible dsp accelerator architecture exploiting carry save arithmetic
 
Reversible code converter
Reversible code converterReversible code converter
Reversible code converter
 
Measuring calorie and nutrition from food image
Measuring calorie and nutrition from food imageMeasuring calorie and nutrition from food image
Measuring calorie and nutrition from food image
 
Understanding and building Your Own Docker
Understanding and building Your Own DockerUnderstanding and building Your Own Docker
Understanding and building Your Own Docker
 
Console Next Gen
Console Next GenConsole Next Gen
Console Next Gen
 
Live Container Migration: OpenStack Summit Barcelona 2016
Live Container Migration: OpenStack Summit Barcelona 2016Live Container Migration: OpenStack Summit Barcelona 2016
Live Container Migration: OpenStack Summit Barcelona 2016
 
SharePlus and launchpads Unity Connect Amsterdam
SharePlus and launchpads Unity Connect AmsterdamSharePlus and launchpads Unity Connect Amsterdam
SharePlus and launchpads Unity Connect Amsterdam
 
Cardiac rehabilitation past and present
Cardiac rehabilitation past and presentCardiac rehabilitation past and present
Cardiac rehabilitation past and present
 
Molecular dynamics simulations of ferroelectrics with feram code
Molecular dynamics simulations of ferroelectrics with feram codeMolecular dynamics simulations of ferroelectrics with feram code
Molecular dynamics simulations of ferroelectrics with feram code
 
Planificacion Estrategica
Planificacion EstrategicaPlanificacion Estrategica
Planificacion Estrategica
 
Nanotechnology And Its Applications
Nanotechnology And Its ApplicationsNanotechnology And Its Applications
Nanotechnology And Its Applications
 

Similar to Design of Optimized FIR Filter Using FCSD Representation

Design of Area Efficient Digital FIR Filter using MAC
Design of Area Efficient Digital FIR Filter using MACDesign of Area Efficient Digital FIR Filter using MAC
Design of Area Efficient Digital FIR Filter using MACIRJET Journal
 
Implementation of Low Complex Universal Filtered Multicarrier
Implementation of Low Complex Universal  Filtered MulticarrierImplementation of Low Complex Universal  Filtered Multicarrier
Implementation of Low Complex Universal Filtered MulticarrierIJASRD Journal
 
Area Efficient and high-speed fir filter implementation using divided LUT method
Area Efficient and high-speed fir filter implementation using divided LUT methodArea Efficient and high-speed fir filter implementation using divided LUT method
Area Efficient and high-speed fir filter implementation using divided LUT methodIJMER
 
Design And Implementation of Combined Pipelining and Parallel Processing Arch...
Design And Implementation of Combined Pipelining and Parallel Processing Arch...Design And Implementation of Combined Pipelining and Parallel Processing Arch...
Design And Implementation of Combined Pipelining and Parallel Processing Arch...VLSICS Design
 
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...VLSICS Design
 
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...VLSICS Design
 
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...VLSICS Design
 
Transpose Form Fir Filter Design for Fixed and Reconfigurable Coefficients
Transpose Form Fir Filter Design for Fixed and Reconfigurable CoefficientsTranspose Form Fir Filter Design for Fixed and Reconfigurable Coefficients
Transpose Form Fir Filter Design for Fixed and Reconfigurable CoefficientsIRJET Journal
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
CANONIC SIGNED DIGIT BASED DESIGN OF MULTIPLIER-LESS FIR FILTER USING SELFORG...
CANONIC SIGNED DIGIT BASED DESIGN OF MULTIPLIER-LESS FIR FILTER USING SELFORG...CANONIC SIGNED DIGIT BASED DESIGN OF MULTIPLIER-LESS FIR FILTER USING SELFORG...
CANONIC SIGNED DIGIT BASED DESIGN OF MULTIPLIER-LESS FIR FILTER USING SELFORG...ijaia
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Performance evaluation of efficient structure for fir decimation filters usin...
Performance evaluation of efficient structure for fir decimation filters usin...Performance evaluation of efficient structure for fir decimation filters usin...
Performance evaluation of efficient structure for fir decimation filters usin...IAEME Publication
 
FOLDED ARCHITECTURE FOR NON CANONICAL LEAST MEAN SQUARE ADAPTIVE DIGITAL FILT...
FOLDED ARCHITECTURE FOR NON CANONICAL LEAST MEAN SQUARE ADAPTIVE DIGITAL FILT...FOLDED ARCHITECTURE FOR NON CANONICAL LEAST MEAN SQUARE ADAPTIVE DIGITAL FILT...
FOLDED ARCHITECTURE FOR NON CANONICAL LEAST MEAN SQUARE ADAPTIVE DIGITAL FILT...VLSICS Design
 
Efficient Design of Higher Order Variable Digital Filter for Multi Modulated ...
Efficient Design of Higher Order Variable Digital Filter for Multi Modulated ...Efficient Design of Higher Order Variable Digital Filter for Multi Modulated ...
Efficient Design of Higher Order Variable Digital Filter for Multi Modulated ...IJTET Journal
 
Design and implementation of DA FIR filter for bio-inspired computing archite...
Design and implementation of DA FIR filter for bio-inspired computing archite...Design and implementation of DA FIR filter for bio-inspired computing archite...
Design and implementation of DA FIR filter for bio-inspired computing archite...IJECEIAES
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)ijceronline
 
Efficient FPGA implementation of high speed digital delay for wideband beamfor...
Efficient FPGA implementation of high speed digital delay for wideband beamfor...Efficient FPGA implementation of high speed digital delay for wideband beamfor...
Efficient FPGA implementation of high speed digital delay for wideband beamfor...journalBEEI
 

Similar to Design of Optimized FIR Filter Using FCSD Representation (20)

Design of Area Efficient Digital FIR Filter using MAC
Design of Area Efficient Digital FIR Filter using MACDesign of Area Efficient Digital FIR Filter using MAC
Design of Area Efficient Digital FIR Filter using MAC
 
A05410105
A05410105A05410105
A05410105
 
Implementation of Low Complex Universal Filtered Multicarrier
Implementation of Low Complex Universal  Filtered MulticarrierImplementation of Low Complex Universal  Filtered Multicarrier
Implementation of Low Complex Universal Filtered Multicarrier
 
Area Efficient and high-speed fir filter implementation using divided LUT method
Area Efficient and high-speed fir filter implementation using divided LUT methodArea Efficient and high-speed fir filter implementation using divided LUT method
Area Efficient and high-speed fir filter implementation using divided LUT method
 
Design And Implementation of Combined Pipelining and Parallel Processing Arch...
Design And Implementation of Combined Pipelining and Parallel Processing Arch...Design And Implementation of Combined Pipelining and Parallel Processing Arch...
Design And Implementation of Combined Pipelining and Parallel Processing Arch...
 
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
 
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
 
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
DESIGN AND IMPLEMENTATION OF COMBINED PIPELINING AND PARALLEL PROCESSING ARCH...
 
FPGA Implementation of High Speed FIR Filters and less power consumption stru...
FPGA Implementation of High Speed FIR Filters and less power consumption stru...FPGA Implementation of High Speed FIR Filters and less power consumption stru...
FPGA Implementation of High Speed FIR Filters and less power consumption stru...
 
Transpose Form Fir Filter Design for Fixed and Reconfigurable Coefficients
Transpose Form Fir Filter Design for Fixed and Reconfigurable CoefficientsTranspose Form Fir Filter Design for Fixed and Reconfigurable Coefficients
Transpose Form Fir Filter Design for Fixed and Reconfigurable Coefficients
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
CANONIC SIGNED DIGIT BASED DESIGN OF MULTIPLIER-LESS FIR FILTER USING SELFORG...
CANONIC SIGNED DIGIT BASED DESIGN OF MULTIPLIER-LESS FIR FILTER USING SELFORG...CANONIC SIGNED DIGIT BASED DESIGN OF MULTIPLIER-LESS FIR FILTER USING SELFORG...
CANONIC SIGNED DIGIT BASED DESIGN OF MULTIPLIER-LESS FIR FILTER USING SELFORG...
 
Design Radix-4 64-Point Pipeline FFT/IFFT Processor for Wireless Application
Design Radix-4 64-Point Pipeline FFT/IFFT Processor for Wireless ApplicationDesign Radix-4 64-Point Pipeline FFT/IFFT Processor for Wireless Application
Design Radix-4 64-Point Pipeline FFT/IFFT Processor for Wireless Application
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
Performance evaluation of efficient structure for fir decimation filters usin...
Performance evaluation of efficient structure for fir decimation filters usin...Performance evaluation of efficient structure for fir decimation filters usin...
Performance evaluation of efficient structure for fir decimation filters usin...
 
FOLDED ARCHITECTURE FOR NON CANONICAL LEAST MEAN SQUARE ADAPTIVE DIGITAL FILT...
FOLDED ARCHITECTURE FOR NON CANONICAL LEAST MEAN SQUARE ADAPTIVE DIGITAL FILT...FOLDED ARCHITECTURE FOR NON CANONICAL LEAST MEAN SQUARE ADAPTIVE DIGITAL FILT...
FOLDED ARCHITECTURE FOR NON CANONICAL LEAST MEAN SQUARE ADAPTIVE DIGITAL FILT...
 
Efficient Design of Higher Order Variable Digital Filter for Multi Modulated ...
Efficient Design of Higher Order Variable Digital Filter for Multi Modulated ...Efficient Design of Higher Order Variable Digital Filter for Multi Modulated ...
Efficient Design of Higher Order Variable Digital Filter for Multi Modulated ...
 
Design and implementation of DA FIR filter for bio-inspired computing archite...
Design and implementation of DA FIR filter for bio-inspired computing archite...Design and implementation of DA FIR filter for bio-inspired computing archite...
Design and implementation of DA FIR filter for bio-inspired computing archite...
 
International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)International Journal of Computational Engineering Research(IJCER)
International Journal of Computational Engineering Research(IJCER)
 
Efficient FPGA implementation of high speed digital delay for wideband beamfor...
Efficient FPGA implementation of high speed digital delay for wideband beamfor...Efficient FPGA implementation of high speed digital delay for wideband beamfor...
Efficient FPGA implementation of high speed digital delay for wideband beamfor...
 

More from IJEEE

A survey on Energy Efficient ProtocolsLEACH, Fuzzy-based approach and Neural ...
A survey on Energy Efficient ProtocolsLEACH, Fuzzy-based approach and Neural ...A survey on Energy Efficient ProtocolsLEACH, Fuzzy-based approach and Neural ...
A survey on Energy Efficient ProtocolsLEACH, Fuzzy-based approach and Neural ...IJEEE
 
Implementation of Back-Propagation Neural Network using Scilab and its Conver...
Implementation of Back-Propagation Neural Network using Scilab and its Conver...Implementation of Back-Propagation Neural Network using Scilab and its Conver...
Implementation of Back-Propagation Neural Network using Scilab and its Conver...IJEEE
 
Automated Air Cooled Three Level Inverter system using Arduino
Automated Air Cooled Three Level Inverter system using ArduinoAutomated Air Cooled Three Level Inverter system using Arduino
Automated Air Cooled Three Level Inverter system using ArduinoIJEEE
 
An Approach to Speech and Iris based Multimodal Biometric System
An Approach to Speech and Iris based Multimodal Biometric SystemAn Approach to Speech and Iris based Multimodal Biometric System
An Approach to Speech and Iris based Multimodal Biometric SystemIJEEE
 
An Overview of EDFA Gain Flattening by Using Hybrid Amplifier
An Overview of EDFA Gain Flattening by Using Hybrid AmplifierAn Overview of EDFA Gain Flattening by Using Hybrid Amplifier
An Overview of EDFA Gain Flattening by Using Hybrid AmplifierIJEEE
 
Design and Implementation of FPGA Based Low Power Pipelined 64 Bit Risc Proce...
Design and Implementation of FPGA Based Low Power Pipelined 64 Bit Risc Proce...Design and Implementation of FPGA Based Low Power Pipelined 64 Bit Risc Proce...
Design and Implementation of FPGA Based Low Power Pipelined 64 Bit Risc Proce...IJEEE
 
Design of Image Segmentation Algorithm for Autonomous Vehicle Navigationusing...
Design of Image Segmentation Algorithm for Autonomous Vehicle Navigationusing...Design of Image Segmentation Algorithm for Autonomous Vehicle Navigationusing...
Design of Image Segmentation Algorithm for Autonomous Vehicle Navigationusing...IJEEE
 
Performance Analysis of GSM Network for Different Types of Antennas
Performance Analysis of GSM Network for Different Types of Antennas Performance Analysis of GSM Network for Different Types of Antennas
Performance Analysis of GSM Network for Different Types of Antennas IJEEE
 
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...IJEEE
 
Design Analysis of Delay Register with PTL Logic using 90 nm Technology
Design Analysis of Delay Register with PTL Logic using 90 nm TechnologyDesign Analysis of Delay Register with PTL Logic using 90 nm Technology
Design Analysis of Delay Register with PTL Logic using 90 nm TechnologyIJEEE
 
Carbon Nanotubes Based Sensor for Detection of Traces of Gas Molecules- A Review
Carbon Nanotubes Based Sensor for Detection of Traces of Gas Molecules- A ReviewCarbon Nanotubes Based Sensor for Detection of Traces of Gas Molecules- A Review
Carbon Nanotubes Based Sensor for Detection of Traces of Gas Molecules- A ReviewIJEEE
 
Routing Protocols in Zigbee Based networks: A Survey
Routing Protocols in Zigbee Based networks: A SurveyRouting Protocols in Zigbee Based networks: A Survey
Routing Protocols in Zigbee Based networks: A SurveyIJEEE
 
A Survey of Routing Protocols for Structural Health Monitoring
A Survey of Routing Protocols for Structural Health MonitoringA Survey of Routing Protocols for Structural Health Monitoring
A Survey of Routing Protocols for Structural Health MonitoringIJEEE
 
Layout Design Analysis of SR Flip Flop using CMOS Technology
Layout Design Analysis of SR Flip Flop using CMOS TechnologyLayout Design Analysis of SR Flip Flop using CMOS Technology
Layout Design Analysis of SR Flip Flop using CMOS TechnologyIJEEE
 
Codec Scheme for Power Optimization in VLSI Interconnects
Codec Scheme for Power Optimization in VLSI InterconnectsCodec Scheme for Power Optimization in VLSI Interconnects
Codec Scheme for Power Optimization in VLSI InterconnectsIJEEE
 
Design of Planar Inverted F-Antenna for Multiband Applications
Design of Planar Inverted F-Antenna for Multiband Applications Design of Planar Inverted F-Antenna for Multiband Applications
Design of Planar Inverted F-Antenna for Multiband Applications IJEEE
 
Layout Design Analysis of CMOS Comparator using 180nm Technology
Layout Design Analysis of CMOS Comparator using 180nm TechnologyLayout Design Analysis of CMOS Comparator using 180nm Technology
Layout Design Analysis of CMOS Comparator using 180nm TechnologyIJEEE
 
A Survey on Image Segmentation and its Applications in Image Processing
A Survey on Image Segmentation and its Applications in Image Processing A Survey on Image Segmentation and its Applications in Image Processing
A Survey on Image Segmentation and its Applications in Image Processing IJEEE
 

More from IJEEE (20)

A survey on Energy Efficient ProtocolsLEACH, Fuzzy-based approach and Neural ...
A survey on Energy Efficient ProtocolsLEACH, Fuzzy-based approach and Neural ...A survey on Energy Efficient ProtocolsLEACH, Fuzzy-based approach and Neural ...
A survey on Energy Efficient ProtocolsLEACH, Fuzzy-based approach and Neural ...
 
Implementation of Back-Propagation Neural Network using Scilab and its Conver...
Implementation of Back-Propagation Neural Network using Scilab and its Conver...Implementation of Back-Propagation Neural Network using Scilab and its Conver...
Implementation of Back-Propagation Neural Network using Scilab and its Conver...
 
Automated Air Cooled Three Level Inverter system using Arduino
Automated Air Cooled Three Level Inverter system using ArduinoAutomated Air Cooled Three Level Inverter system using Arduino
Automated Air Cooled Three Level Inverter system using Arduino
 
Id136
Id136Id136
Id136
 
Id135
Id135Id135
Id135
 
An Approach to Speech and Iris based Multimodal Biometric System
An Approach to Speech and Iris based Multimodal Biometric SystemAn Approach to Speech and Iris based Multimodal Biometric System
An Approach to Speech and Iris based Multimodal Biometric System
 
An Overview of EDFA Gain Flattening by Using Hybrid Amplifier
An Overview of EDFA Gain Flattening by Using Hybrid AmplifierAn Overview of EDFA Gain Flattening by Using Hybrid Amplifier
An Overview of EDFA Gain Flattening by Using Hybrid Amplifier
 
Design and Implementation of FPGA Based Low Power Pipelined 64 Bit Risc Proce...
Design and Implementation of FPGA Based Low Power Pipelined 64 Bit Risc Proce...Design and Implementation of FPGA Based Low Power Pipelined 64 Bit Risc Proce...
Design and Implementation of FPGA Based Low Power Pipelined 64 Bit Risc Proce...
 
Design of Image Segmentation Algorithm for Autonomous Vehicle Navigationusing...
Design of Image Segmentation Algorithm for Autonomous Vehicle Navigationusing...Design of Image Segmentation Algorithm for Autonomous Vehicle Navigationusing...
Design of Image Segmentation Algorithm for Autonomous Vehicle Navigationusing...
 
Performance Analysis of GSM Network for Different Types of Antennas
Performance Analysis of GSM Network for Different Types of Antennas Performance Analysis of GSM Network for Different Types of Antennas
Performance Analysis of GSM Network for Different Types of Antennas
 
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
On the Performance Analysis of Composite Multipath/Shadowing (Weibull-Log Nor...
 
Design Analysis of Delay Register with PTL Logic using 90 nm Technology
Design Analysis of Delay Register with PTL Logic using 90 nm TechnologyDesign Analysis of Delay Register with PTL Logic using 90 nm Technology
Design Analysis of Delay Register with PTL Logic using 90 nm Technology
 
Carbon Nanotubes Based Sensor for Detection of Traces of Gas Molecules- A Review
Carbon Nanotubes Based Sensor for Detection of Traces of Gas Molecules- A ReviewCarbon Nanotubes Based Sensor for Detection of Traces of Gas Molecules- A Review
Carbon Nanotubes Based Sensor for Detection of Traces of Gas Molecules- A Review
 
Routing Protocols in Zigbee Based networks: A Survey
Routing Protocols in Zigbee Based networks: A SurveyRouting Protocols in Zigbee Based networks: A Survey
Routing Protocols in Zigbee Based networks: A Survey
 
A Survey of Routing Protocols for Structural Health Monitoring
A Survey of Routing Protocols for Structural Health MonitoringA Survey of Routing Protocols for Structural Health Monitoring
A Survey of Routing Protocols for Structural Health Monitoring
 
Layout Design Analysis of SR Flip Flop using CMOS Technology
Layout Design Analysis of SR Flip Flop using CMOS TechnologyLayout Design Analysis of SR Flip Flop using CMOS Technology
Layout Design Analysis of SR Flip Flop using CMOS Technology
 
Codec Scheme for Power Optimization in VLSI Interconnects
Codec Scheme for Power Optimization in VLSI InterconnectsCodec Scheme for Power Optimization in VLSI Interconnects
Codec Scheme for Power Optimization in VLSI Interconnects
 
Design of Planar Inverted F-Antenna for Multiband Applications
Design of Planar Inverted F-Antenna for Multiband Applications Design of Planar Inverted F-Antenna for Multiband Applications
Design of Planar Inverted F-Antenna for Multiband Applications
 
Layout Design Analysis of CMOS Comparator using 180nm Technology
Layout Design Analysis of CMOS Comparator using 180nm TechnologyLayout Design Analysis of CMOS Comparator using 180nm Technology
Layout Design Analysis of CMOS Comparator using 180nm Technology
 
A Survey on Image Segmentation and its Applications in Image Processing
A Survey on Image Segmentation and its Applications in Image Processing A Survey on Image Segmentation and its Applications in Image Processing
A Survey on Image Segmentation and its Applications in Image Processing
 

Recently uploaded

(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)simmis5
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...roncy bisnoi
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 

Recently uploaded (20)

(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)Java Programming :Event Handling(Types of Events)
Java Programming :Event Handling(Types of Events)
 
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
Call Girls Pimpri Chinchwad Call Me 7737669865 Budget Friendly No Advance Boo...
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 

Design of Optimized FIR Filter Using FCSD Representation

  • 1. Neha Goel Ashutosh Nandi Dept. of Electronics and Comm. Engg. National Institute of Technology Kurukshetra, India nehagoel0392@gmail.com, ashutosh.chl@gmail.com Design of Optimized FIR Filter Using FCSD Representation Keywords— FIR Filter, CSA, Barrel shifter, FCSD. Abstract—This paper presents the design and implementation of an eight order efficient FIR filter for wireless communication system. In this work, factored canonical signed digit representation (FCSD) is used for representing the filter coefficients in order to reduce the design complexity, area and delay of the FIR filter. Complexity of the system has been reduced by replacing binary coefficients with FCSD representation. Further area and delay has been improved by replacing multiplication operation with add and shift method where carry save adder (CSA) is used for addition of two numbers and barrel shifter is used for shifting the data words. Representation of coefficient in the FCSD format along with fastest adder and shifter improves the performance of the system. FIR filter has been designed using an equiripple method in MATLAB and further synthesized on Spartan 3E XC3S500E target FPGA device. Simulation results show that optimized FCSD based FIR filter offers a less number of slices, look up tables (LUTs) and flip-flops as compared to CSD and conventional FCSD based FIR filter, in addition to enhanced performance. I. INTRODUCTION Digital FIR filter is one of the essential components in Digital Signal Processing (DSP) and communication system. With an explosive growth in mobile computing and multimedia applications, demand for low power and high speed DSP system has seen a tremendous growth [1]. Digital filters are used to modify the attributes of signal by removing noise from the original signal and shape the spectral characteristics of the resulting signal [2]. Digital filters are very superior in level of performance as they are highly stable, accurate and versatile as compared to analog filter [3]. Moreover, Portable applications require digital filter which operates at high data rate and low power consumption as high power consumption reduces battery lifetime, affecting device reliability and increasing cool cost [4]. Due to this reason, the requirement of a digital filter with optimized area, power and delay is a challenging task. DSP applications require a large order FIR filter. However, the complexity increases with increase in filter order because of requirements of larger mathematical computations [5]. Therefore, real time implementation of this filter with precise value is posing as a serious challenge. In order to achieve efficient digital filter, order of FIR filter must be as small as possible. This paper focuses mainly on the FIR filter due to its absolute stability and linear phase response [6]. On the basis of hardware implementation, digital filter can be classified into two categories: multipliers based and memory based [7]. The main components of digital filter consist of registers to save the samples of signals, adders to carry out sum operations and multiplier for multiplication of the filter coefficients with signal samples [8]. Despite the fact that designing of digital filter seems simple, but the design bottleneck is its multiplier block for speed, area and power consumption [9]. Complexity is mainly dominated by coefficient multiplication operation [10,11]. In order to reduce complexity, the filter coefficients are represented in FCSD representation which requires the least number of adders [12]. The filter can be further optimized by using CSA and a barrel shifter to achieve the operation of multiplication [13]. The rest of the paper is organized as follows: an overview of FIR filter is given in section II. Section III consists of modules for FIR filter. Section IV describes the proposed work for filter optimization. In section V, simulation results are discussed. Finally, section VI concludes the paper by summarizing the main contributes. Multipliers based design includes multiple constant multiplication (MCM) with add and shift operations.MCM based FIR filter uses transposed structure which increases the speed of the system.The area can be further saved by optimizing coefficient with quantization technique. Memory based design are divided into two approaches: distributed arithmetic (DA) and Look Up table (LUT) method. The DA based approach computes the inner product by accumulating bit level partial results in the FIR filter. The LUT based approach stores odd multiple of input signal in ROM to realize constant multiplications in MCM [7]. II. FIR FILTER FIR filter is also known as non-recursive digital filters as they don’t have feedback [6]. Output of the FIR filter can be described by the following difference equation FIR filters are digital filter with finite impulse response which involves convolution operation given by equation [2]: Y[n] = X[n]*H [n] (1) 3 NITTTR, Chandigarh EDIT-2015 Int. Journal of Electrical & Electronics Engg. Vol. 2, Spl. Issue 1 (2015) e-ISSN: 1694-2310 | p-ISSN: 1694-2426
  • 2. Fig.1. Transposed form of FIR filter Digital filter can be designed by calculating the filter coefficient on the basis of filter order, sampling frequency, pass band and stop band frequencies etc.[5]. Generally, power consumption and the amount of computation are directly proportional to filter order. Filter coefficient can be found with the MATLAB FDA tool. Further, the filter can be designed by different method including window functions, frequency sampling and equiripple method [9]. Table I lists the parameters of the low pass FIR filter and the corresponding magnitude response is shown in Fig. 2. TABLE I. FIR Filter Design Parameter Filter Parameter Value Design method Equiripple Order 8 Density factor 20 Sampling frequency FS = 48000 Hz Passband frequency Fpass = 9600Hz Stopband frequency Fstop = 12000Hz Passband weight Wpass = 1 Stopband weight Wstop = 1 The calculated coefficients of the proposed FIR filter are [9, 16, 17, 32, 33, 32, 17, 16, 9]. Coefficients are symmetric in nature which further reduces area and power consumption [5]. Order for FIR filter is N while the length of the filter is N+1 which is similar to the number of the filter coefficients [10]. As the filter order increases, complexity of the system increases by consuming more amount of time for signal processing. Where N and Hk represents the length and coefficients of the FIR filter respectively [10].Basically FIR filter consists of two structures, i.e., direct form and transposed form. In direct form, signal samples are multiplied by filter coefficients and combined together in adder block [7]. A modification over direct form is transposed structure as shown in fig 1. In transposed form, the same input signal is multiplied by several coefficients. In the present work, transposed form is used which reduces area and delay as compared to direct form [6]. (2) k K knxHnY N )()( 0 1     Fig.2. Lowpass FIR filter magnitude response Three modules are needed for implementation of optimized FIR filter, i.e., delay, addition and multiplication. Barrel shifter is used to provide shift operation and CSA is used to carry out a sum operation. The modules used for implementation are: Barrel shifter is an integral component in several computing devices which is mainly used for shifting and rotating multiple bits in a single clock. It can be designed with the help of combinational logic circuits such as logic gates, multiplexers and decoders. However, the MUX based barrel shifter provides less delay and power when compared to other circuits [13]. Therefore, in the present work, BS is designed using multiplexers architecture. Shifting a data word by a specific amount of shift is performed in one clock cycle. Sequences of multiplexers are used to implement the barrel shifter and the output of one mux is connected to the input of the next mux that depends on the shift distance [7]. The data word can be shifted up to 8 bits either in left or right direction. If the input pin is zero, then the observed output remains same, i.e., without applying shifting operation. On the other hand, Int. Journal of Electrical & Electronics Engg. Vol. 2, Spl. Issue 1 (2015) e-ISSN: 1694-2310 | p-ISSN: 1694-2426 NITTTR, Chandigarh EDIT -2015 4 B. Barrel Shiifter CSA is mainly used for fast arithmetic in a DSP system for addition of three or more binary numbers. In CSA, there is no propagation delay as compared to the ripple carry adder and carry look ahead adder [4]. For sufficient large value of n, it provides results very quickly and relatively occupies less area in comparison to normal adders. CSA includes full adders but the carry output is taken out from each bit to form second result vector instead of passing it to the next most significant bit [8]. It consists of three numbers (x, y, z) as the input which is added together and provides sum (s) and carry (c) as an output. Hence, this adder is called as 3:2 compressor, where the operation is performed in one time unit duration. In carry save operation, the carry is passed until last step whereas ordinary addition is done in the last step only. When CSA is implemented on FPGA, then two LUTs are required for generation of carry and sum bit where as single LUT is required for the carry propagation adder [11]. Fig.3 represents CSA that consists of 17 half adders and 15 full adders. A. Carry Save Adder III. MODULES FOR FIR FILTER
  • 3. Fig.3. Block diagram for 16-bit Carry Save Adder C. Conventional FCSD Factored Canonical Signed Digit representation is a slight modification over CSD. It replaces multiplier operation with add and shift operations on the basis of prime factors of the coefficients [9]. A combination of effective factorization and CSD representation of filter coefficient leads to a reduction in the number of adders which further hardware cost. It provides a relatively greater reduction in filter area, but at the cost of decreased clock speed [9].Increase in delay is the major drawback of this algorithm. The Factored CSD algorithm provides a trade-off between calculated complexity and convergence [12]. Following example compares CSD and FCSD algorithm. y = 217*x = (11011001)*x % 217 in binary form = (1001’001’1’1’) *x % 217 in signed digit = (256- 32-4-2-1) * x = (x << 8) –(x << 5) – (x << 2) – (x << 1) – x Cost of CSD = 4 adders y = 217*x = (7*31)* x = (x << 3– x) *(x << 5 – x) Cost of FCSD = 2 adders It is concluded that, the number of adders has been reduced by using FCSD instead of CSD technique. Therefore, we have used FCSD formulation for reducing filter complexity. IV. PROPOSED WORK FOR OPTIMIZED FIR FILTER FIR filter based on FCSD technique is proposed that use carry save adder and barrel shifter for addition and shifting operations. FCSD technique used for coefficient V. SIMULATION RESULTS This section presents the simulation results of the proposed FIR filter. A Low pass FIR Filter is designed using equiripple method in MATLAB FDA tool box for calculation of coefficients. The filter can be designed in two structures, i.e. direct form and transposed form. We have used transposed form structure which reduces the implementation cost in terms of area and delay. FIR filter architecture has been designed and implemented on Xilinx Spartan3E XC3S500E using VHDL. This results in realizing an FIR filter which can be operated at maximum frequency of 238.322 MHz by consuming 79 slices. The characteristics of proposed FPGA based FIR filter are summarized in table II along with the comparison of the proposed filter with CSD and FCSD technique. TABLE II: Performance Comparison between different approaches Parameter CSD FCSD Proposed work No. of slices 808 789 79 No. of flip-flops 510 512 126 No. of 4 input LUT’s 1349 1290 146 Frequency (MHz) 43.814 44.911 238.322 Min. Period (ns) 22.824 22.266 4.196 As shown in table II, Number of slices has been reduced from 789 to 79 in FCSD technique by consuming 126 numbers of flipflops. Proposed FCSD based FIR filter occupies 146 number of look up tables as compared to FCSD technique. In comparison to FCSD, this result shows the enhanced performance in terms of speed and area due to efficient utilization of embedded multiplier and LUTs inside the device. Fig. 4 compares the proposed FCSD technique with CSD and FCSD method in the form of bar graph. The proposed work offers very less number of slices, LUTs and flipflops as compared to other two techniques generated by MATLAB. Simulation results shows that proposed filter consumes 89.98% less number of slices, 88.682% less number of LUTs and 75.39 % less number of flipflops as compared to FCSD technique to provide cost effective filter. Time delay of if the input is non zero, then output is shifted in either specified direction. After shifting operation, all the partial products (PP) are added together to achieve multiplication operation. Thus, Performance of FIR filter is improved by use of barrel shifter in terms of area and delay [13]. representation reduces the area of the filter as compared to the CSD technique, but with the disadvantage of increased delay. This propagation delay can be improved by using CSA and a barrel shifter. For multiplication of filter coefficients with the input signal add and shift method is used. Therefore, the multiplier consists of one adder unit (CSA) and one shifter unit (barrel shifter). The filter is processed step by step in which coefficients are first factored and subsequently represented in CSD format. CSA is used, when the input signal is multiplied with filter coefficients and added together in the last step. Optimization of FIR Filter considering area and delay constraints has been achieved using FCSD representation, CSA and barrel shifter. These combinations of FCSD technique with CSA and BS can target significant reduction in circuit complexity, area and delay. Int. Journal of Electrical & Electronics Engg. Vol. 2, Spl. Issue 1 (2015) e-ISSN: 1694-2310 | p-ISSN: 1694-2426 5 NITTTR, Chandigarh EDIT-2015
  • 4. the proposed filter has been improved considerably which in turn increases the operational speed of the system. This reduction in design complexity, area and delay of proposed FCSD based filter can be viewed as a possible alternative for circuit designer. Fig.4. Bar graph representing CSD, FCSD and proposed work comparison VI. CONCLUSION The proposed FIR filter has been designed for 8 tap using FCSD representation of filter coefficients. An optimized FIR filter has been designed using barrel shifter and CSA in VHDL which is further simulated on Xilinx Spartan3E based XC3S500E target FPGA device. The results show that optimized FCSD based FIR filter can be operated at a maximum frequency of 238.322 MHz by consuming 79 slices, 126 flip-flops and 146 LUTs. Simulation results shows that optimized filter occupies 89.98% less number of slices, 88.682% less number of LUTs and 75.39 % less number of flipflops as compared to FCSD technique. Delay of the optimized FIR filter has been reduced by 18.071 ns. It is concluded that, use of FCSD representation in FIR filters along with fastest adder and shifter can target significant reduction in design complexity, area and delay when compared to other approaches. REFERENCES [1] D. L. Maskell, “ Design of Efficient Multiplierless FIR filters,” IET Circuits Device System, vol.1, no. 2, pp. 175-180, May 2007. [2] M. D. Cilletti, Advance Digital Design with Verilog HDL, PHI learning, first edition, 2003. [3] A. Nandi, A. K. Saxena and S. Dasgupta, “Design and Analysis of Analog Performance of Dual-k Spacer Based Underlap N/P-FinFET at 12nm Gate Length,” IEEE Trans. on Electron Devices, vol. 60, no. 5, pp. 1529-1535, May 2013. [4] R. Mahesh and A. P. Vinod,“A New Common Subexpression Elimination Algorithm for Realizing Low Complexity Higher Order Digital Filters,” IEEE Trans. On Computer Aided Design of Integreted Circuits and Sytems, vol. 27, no. 2, pp. 217-229, Feb. 2008. [5] L. Wu, Y. Cui and J. Huang, “Design and Implemenation of an Optimized FIR Filter for IF GPS Signal Simulator,” IEEE conf. on Microelectronics and Electronics, pp. 25-28, Sept. 2010. [6] J. Proakis and D. Manolakis, Digital Signal Processing, fourth edition, 2008. [7] S. F. Hsiao and J. H. Z. Jian, “ Low Cost FIR Filter Designs Based on Faithfully Rounded Truncated Multiple Constant Multiplications,” IEEE Trans. on Circuits and Systems-II: Expression Briefs, vol. 60, no. 5, pp. 287-291, May 2013. [8] J. Um and T. Kim, “An Optimal Allocation of Carry Save Adders in Arithmetic Circuits, ” IIEEE Trans. on computer, vol. 50, no. 3, pp. 215- 230, Mar. 2001. [9] Mathworks, User Guide Filter Design Toolbox,Version-2, 2007. [10] L. Litwin, “ FIR and IIR Digital Filters,” IEEE Potentials, vol. 19, no. 4, pp. 28–31, Oct. i2000. [11] L. Aksoy, E. Costa, P. Flores and J. Monteiro, “ Exact and Approximate Algorithms for the Optimization of Area and Delay in Multiple Constant Multiplications”, IEEE Trans. on Comp. Aided Design of Integreted Circuits and Sytems, vol. 27, no. 6, pp. 1013-1026, iJune 2008. [12] K. Priya and R. Mehra, “ FPGA Based Cost Efficient FIR Filter Using Factored CSD technique ,” International iJournal of Recent Technology and Engineering,vol. 6, issue 6, pp. 130-134, Jan. 2013. [13] R. Rajalakshmi and P. ArunaPriya, “ Design and Analysis of A 4-Bit Low Power Universal Barrel-Shifter in 16nm FINFET Technology,” IEEE International Conference on Advanced Communication Control and Computing Technologies, pp. 527-532, May 2014. 0 400 800 1200 slices flip-flops LUT’s Frequency (MHz) CSD FCSD Proposed work Int. Journal of Electrical & Electronics Engg. Vol. 2, Spl. Issue 1 (2015) e-ISSN: 1694-2310 | p-ISSN: 1694-2426 NITTTR, Chandigarh EDIT -2015 6