SlideShare a Scribd company logo
1 of 9
Download to read offline
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
DOI : 10.5121/vlsic.2010.1402 14
A LOW POWER VITERBI DECODER DESIGN WITH
MINIMUM TRANSITION HYBRID REGISTER
EXCHANGE PROCESSING FOR WIRELESS
APPLICATIONS
S. L. Haridas1
and Dr. N. K. Choudhari2
1
Prof. & Head of E&T Engg., B. D. College of Engg., Sevagram (M.S.), India
slhlec@rediffmail.com
2
Principal, Smt. Bhagvati Chaturvedi College of Engg., Nagpur (M.S.), India
drnitinchoudhari@gmail.com
ABSTRACT
This work proposes the low power implementation of Viterbi Decoder. Majority of viterbi decoder
designs in the past use simple Register Exchange or Traceback method to achieve very high speed and
low power decoding respectively, but it suffers from both complex routing and high switching activity.
Here simplification is made in survivor memory unit by storing only m-1 bits to identify previous state in
the survivor path, and by assigning m-1 registers to decision vectors. This approach eliminates
unnecessary shift operations. Also for storing the decoded data only half memory is required than
register exchange method. In this paper Hybrid approach that combines both Traceback and Register
Exchange schemes has been applied to the viterbi decoder design. By using distance properties of
encoder we further modified to minimum transition hybrid register exchange method. It leads to lower
dynamic power consumption because of lower switching activity. Dynamic power estimation obtained
through gate level simulation indicates that the proposed design reduces the power dissipation of a
conventional viterbi decoder design by 30%.
KEYWORDS
Traceback method, Register Exchange method, Hybrid Register Exchange method, Minimum Transition
Register Exchange Method.
1. INTRODUCTION
The Viterbi Algorithm [1], can find the most likely sequence of state transitions, and has been
widely used in digital communication and signal processing, was introduced in 1967 as a
method of decoding convolutional codes [2]. In digital communication systems, convolutional
coding and viterbi decoding are used to enhance the performance of the systems. In recent years
due to battery operated devices, the design of viterbi decoder has been investigated intensively.
Numerous techniques for reducing power dissipation have been proposed. Scarce state transition
architecture [3] has been used to reduce switching activity which incorporates a predecoder and
preencoder to minimize transitions at the input of viterbi decoder. This reduces dynamic power
dissipation. Kang and Wilson [4] suggesting partitioning major blocks at the system level. High
throughput rate can be achieved using the concept of strongly connected trellis which was
introduced by Chang and Yao [5]. Two decoding methods are mainly used, Register exchange
method (REM) and Traceback method (TBM). The TBM is more popular since used for large
number of states and constraint length, therefore continuous modification has been take place in
TBM. While REM is used for small number of states and small constraint length. Very few
attempts to combine the advantages of TBM and REM are takes place in [6] and [7] where they
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
15
proposed Hybrid Traceback and Hybrid Register exchange (HREM) methods. In HREM,
reduces memory, reduces number of data transfer operations and ultimately the switching
activity. In this paper we present the design of low power viterbi decoder in the IS-95 CDMA
environment. We used minimum transition hybrid register exchange method (MTHREM) [8],
which further reduces the switching activity by minimizing the data transfer operations using a
free distance property of encoder.
The following sections are organised as follows. We first briefly review the viterbi algorithm
with all components in section 2. In section 3 explains the system architecture. Section 4
devotes to various decoding schemes, while in section 5 we proposed detail implementation of
MTHREM with free distance and error correcting capability of viterbi decoder and few low
power techniques. Finally in section 6 remaining design steps and results of the actual
implementation are reported.
2. VITERBI ALGORITHM
The Viterbi algorithm is an optimal algorithm for estimating the state sequence of a finite state
process observed in the presence of memory less noise.
2.1 Convolutional Encoder
A Viterbi decoder and a convolutional encoder operate by finding the most likely decoding
sequences for an input code symbol stream. A convolutional encoder is selected for error-
correction with digital mobile communication. We consider a convolutional code (3, 1, 2) which
has a code rate r of 1/3 and constraint length K of 3 and number of memory element m is 2,
depicted in figure 1. The encoder shown contains a shift registers tapped at various positions.
The shift register taps terminate at modulo-2 adders forming generator function (g2 = 101, g1 =
111, g0 = 111). Input bit enter the shift register by one bit at a time. The outputs of the generator
functions produce an output of three symbols for each input bit, which corresponds to a code
rate 1/3. As an example of how the encoding process operates, consider the binary sequence
110110. The resulting output sequence of the encoder will be 111, 100, 100, 000, 100 and 100.
2.2 Trellis Diagram
Since there are 2m
= 4 states in the encoder, we have four states, e.g., S0 = (00), S1 = (01), S2 =
(10), and S3 = (11). The trellis diagram of figure 1 is depicted in figure 2, where the solid line
represents the transition branch when the input bit is 0, whereas the dashed line represents
the transition branch when the input bit is 1, and the two bits marked on the transition branch
Figure 1. A (3, 1, 2) convolutional encoder
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
denotes the output codeword.
entering each node, and two possible branches leavi
If we assume a code sequence {c
received sequence then the branch metric S
Where ║rt-1 – ci,j║ denotes the hamming distance between received word and transmitted
word of the transition branch. The path metric PMj of state Sj at time t can be expressed as
PM
Figure
2.3 Viterbi Decoding Algorithm
We can view the Viterbi algorithm as a dynamic programming algorithm for finding the shortest
path through a trellis, and the algorithm can be broken down into the
1. Calculate the branch metrics by comparing the received code symbol and expected
symbols.
2. Recursively computes the shortest paths to time n, in terms of the shortest paths to time
n-1. In this step, decisions are used to recursively u
known as add-compare-select (ACS) recursion.
3. Recursively find the shortest path leading to each trellis state using the decisions from
Step 2. The shortest path is called the survivor path for that state and
survivor path decode. Finally, if all survivor paths are traced back in time, they merge into a
unique path, which is the most likely signal path that we are trying to find.
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
denotes the output codeword. For all convolution encoders, there are two possible branches
entering each node, and two possible branches leaving the node, regardless of the code rate.
If we assume a code sequence {c0, c1, c2….) is transmitted over a channel and {r0, r1, r
received sequence then the branch metric Si at time t-1 to state Sj at time t is defined by []
BM = dt-1,t(Si,Sj) = ║rt-1 – ci,j║
hamming distance between received word and transmitted
The path metric PMj of state Sj at time t can be expressed as
PMj
t
= min{PMi
t-1
+ dt-1,t(Si,Sj)}
Figure 2. Trellis diagram of Encoder
Viterbi Decoding Algorithm
We can view the Viterbi algorithm as a dynamic programming algorithm for finding the shortest
path through a trellis, and the algorithm can be broken down into the following three steps.
Calculate the branch metrics by comparing the received code symbol and expected
Recursively computes the shortest paths to time n, in terms of the shortest paths to time
1. In this step, decisions are used to recursively update the survivor path of the signal. This is
select (ACS) recursion.
Recursively find the shortest path leading to each trellis state using the decisions from
Step 2. The shortest path is called the survivor path for that state and the process is referred to as
survivor path decode. Finally, if all survivor paths are traced back in time, they merge into a
unique path, which is the most likely signal path that we are trying to find.
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
16
For all convolution encoders, there are two possible branches
ng the node, regardless of the code rate.
, r2…} is the
at time t is defined by []
hamming distance between received word and transmitted code
The path metric PMj of state Sj at time t can be expressed as
We can view the Viterbi algorithm as a dynamic programming algorithm for finding the shortest
following three steps.
Calculate the branch metrics by comparing the received code symbol and expected
Recursively computes the shortest paths to time n, in terms of the shortest paths to time
pdate the survivor path of the signal. This is
Recursively find the shortest path leading to each trellis state using the decisions from
the process is referred to as
survivor path decode. Finally, if all survivor paths are traced back in time, they merge into a
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
17
From the Fig. 3, associated with each trellis state S at time t is a state metric SMp and SMq
which is the accumulated metric along the shortest path leading to that state. The state metrics at
time t can be recursively calculated in terms of the state metrics of the previous iteration as
follows:
For state metric SMt
PMp
= min (PMi
+ BMil
, PMj
+ BMj1
)
PMq
= min (PMi
+ BMi0
, PMj
+ BMj0
)
In order that the input sequence can be decoded, the survivor path (shortest path) or signal
through the trellis must be traced and decode.
3. SYSTEM ARCHITECTURE
The implementation of the viterbi algorithm, referred to as the viterbi decoder. The major blocks
of a viterbi decoder are shown in Fig. 4. The role of each block is described briefly below.
Branch Metric Unit: This unit computes the branch metric of each transition, which is a
hamming distance between the received symbol and expected symbol.
Figure 4. Block Diagram of Viterbi decoder
ACSU: The Add-compare-select unit is a collection of ACS units. For a single state, an ACS
unit receives two branch metric and two path metrics. It adds each incoming branch metric to
the corresponding path metric and compares the two results to select a smaller one. The path
metric of the state is updated with the selected one.
PM storage: This unit stores the path metric of each state at the current stage.
Survivor path storage: It stores the survivor sequence of each state selected by the ACSU.
Output generator: It generates the decoded output sequence. In the traceback method, this
block incorporates combinational logic, which traces back along the survivor path starting from
Figure 3. Butterfly structure of encoder
BMU ACSU PM STORAGE
SURVIVOR PATH STORAGE
OUTPUT SEQUENCE GENERATOR
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
18
the final state to the initial state and generates the decoded output. For the register exchange
method the decoded output is the content of the register of the final state.
In this paper, we consider the 16 state, rate 1/3 convolutional encoder. We limit the number of
symbols to 20 for our Viterbi decoder. The tail sequence in each frame is fixed to ‘0’ and resets
the convolutional encoder to its initial state.
4. DECODING METHODS
4.1 Register Exchange Method
In Register Exchange Method, Figure 5, a register is assigned to each state contains information
bits for the survivor path throughout the trellis. The register keeps the partially decoded output
sequence along the path. The register exchange method eliminates the need to traceback since
the register of final state contains the decoded output. This approach results in complex
hardware and high switching activity due to the need to copy the content of all the registers
from state to state.
4.2 Hybrid Register Exchange Method
In this method register exchange and traceback method is combined, therefore the name Hybrid
register exchange method [7], which reduces further the switching activity and power. Here we
are using a property of trellis is that, if we go forward for m cycles then the data bits will be the
corresponding state bits irrespective of the initial state from where the data gets transferred. To
find the initial state we have to traceback through an m cycles by observing the survivor
memory. And then transfer the partial decoded data from initial state to the next state which is m
cycle later and not a subsequent cycle. Again consider the previous (3, 1, 2) encoder and trellis
diagram as shown in figure 1 and figure 2 respectively. Now if the trellis is strongly connected,
then the states on survivor path will correspond to the input bits. We define survivor state as a
state at time t1 that is traced from initial state Si at time t2 (t2 > t1). It is noted that survivor path
memory is the output of ACSU at time t. For instance, in fig. 6 the survivor state at time t = 2,
traced from S3 at time t = 4 is 10 i.e.S2.
SUR(S3;2,4) = 10,
SUR(S2;2,4) = 11
SUR(S1,2,4) = 11
SUR(S0;2,4) = 11
Figure 5. Register exchange method
101
11 111
0
1
0
110 111
101 1101 11011
10
01
100
110
110
1101
1100
1100
11011
110101
11000
1101011
1101100 11011000
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
19
Figure 6. Survivor states for t = 2 to 4
The corresponding nature of lines indicates the corresponding data inputs which are equivalent
to the current state. For if current state S3, the survivor state is S2 and data input is 11. So the
previous data from state S2 will get transfer to state S3 and new data is added as 11. Here in the
Fig. 7 survivor state at t = 4 is 11 for state S1 therefore the content of S1 state register at t = 4 is
the data of S3 at t = 2 and the state S1 01 itself i.e. 1101. And at t = 6 the survivor information of
state S2 is 01, therefore the content of S2 state register at t = 6 is the data of S1 at t = 4 and the
state S2 itself i.e. 110110. This process goes continue, the final state register of S0contains the
decoded output. The memory operation is not at every cycle, and it gets reduced by a factor of
m. Also the shifting of data from one register to another is reduced that is the switching activity
will reduce.
5. PROPOSED LOW POWER DESIGN
From the state diagram we can obtain a closed form expression whose expansion yields all
distant information directly. In figure 8, labeling the branches D2
, D and D0
= 1, where the
exponent corresponds to the distance of particular branch from the corresponding branch of all
zero path. Also we split the node S0, since circulation around this self loop simply corresponds
to branches of the all zero path. Adding branch exponents we see that path S0-S1-S2-S0 is at
distance 8 from the correct path, and S0-S1-S3-S2-S0 and S0-S1-S2-S1-S2-S0 has distance 8 and 10
respectively. S0-S1-S2-S0 Differ in one input bit from all zero paths and other are two and more.
S0
t 2 3 4
S1
S2
S3
Figure 7. Hybrid Register Exchange Method
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
20
So the free distance will be 8. This implies that three bit of errors over the channel can be
corrected. For three or fewer errors will cause the received sequence to be at most distance three
from transmitted sequence but it will be at least, distance 5 from any other possible code
sequence.
5.1 MINIMUM TRANSITION HYBRID REGISTER EXCHANGE METHOD
In Register Exchange method the data has to be transfer from one register (2m
) to other at every
instant, and therefore the switching activity is much more. While in Hybrid register exchange
method data transfer is taking place at alternate instant of time therefore switching activity is
less. One of the solutions to reduce the switching activity further is to avoid unwanted data
transfer from one register to other at alternate time interval. Since the path metric at every time
interval describes the how much bits they are differ from the transmitted sequence. In our fig. 5
the metric at time t = 8 for final state S0 is ‘0’; since the transmitted and receive sequence is
same. Every decoder has error correcting capability depending on free distance. Here for our
encoder free distance are 8 and therefore error correction ability is three. The path metric less
than or equal to three leads to correct path and the state which has path metric more than three
may lead to wrong detection. For the encoder maximum half the state has less or less than three
path metrics and half the state has path metric more than three. Hence there is absolute no need
to trace the path which has higher path metric than three. So memory requirement will get
reduced. Earlier for register exchange and hybrid register exchange method the 2m
registers are
required to save decoded data while in this approach it reduces to 2m
/2, so the data transfer
operations will reduces and ultimately the switching activity will get reduced. Therefore as
shown in Figure 9, we can avoid these states or path from calculation and data transfer, so that
the data bit transitions could not takes place and avoid undesirable switching.
Figure 8. Distance properties of encoder
Figure 9. Minimum Transition Hybrid Register Exchange Method
S1 S2 S0
S0
S3
D3
D3
D2
D D
D2
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
21
Clock gating: Here register holds the survivor path information of all states. The five bit
counter keeps the track of the current stage. When the code symbol is received, the particular
register clock is enabled, and the survivor path information of that stage is recorded in that
register. All other registers hold their state, since the clock of other registers is disabled.
Therefore the survivor path storage reduces switching activity.
Toggle-filtering: If signals arriving at the inputs of a combinational block at different times, the
block may go through several intermediate transitions before it settle down. By blocking early
signals until all input signals arrive, intermediate transitions and ultimately dynamic power
dissipation can be reduced. In the viterbi decoder, when trace back path is constructed
information of this path is read from the survivor memory, and then fed to the output generator
block.
6. EXPERIMENTAL RESULT
We measured the power dissipation of the three different implementations of rate 1/3, constraint
length 5 (scale down version), viterbi decoder; the register exchange, hybrid register exchange;
and the proposed low power minimum transition hybrid register exchange method.
Our proposed design, viterbi decoder using Minimum Transition Hybrid Register Exchange
Method, is coded in VHDL and synthesized with synopsys tools using the TSMC 150 nm
technology library for which supply voltage is 1.65V. Circuit is simulated with a representative
set of input vectors. Transitions in different nodes are recorded in an output file which is read by
synopsys power estimation tool that is power compiler. This information besides the power
attributes of each gate which is extracted from synopsys library is used to estimate power
consumption of the circuit.
Experimental results of our design and some references are shown in Table I. All references
have the same configuration of viterbi decoder (rate = 1/3, K = 5) and they are recently only
available, therefore we are considering here. Our design that is viterbi decoder using Minimum
Transition Hybrid Register Exchange Method has require less power than the register exchange
and Hybrid register exchange designs. The proposed method reduces the power dissipation by
30% than our designed register exchange method, 15% than our designed hybrid register
exchange method, and 73% and 53.75% compared with the design mentioned in [9] and [10]
respectively.
Table I. Result of power measurement
Method/References Our
REM
Our
HREM
[9] [10] Proposed
design
Power dissipation (µW) 264.79 214.97 683 400 185.84
7. CONCLUSION
Viterbi decoders employed in digital wireless communication are complex and dissipate high
power. In this paper, a novel decoding scheme based on minimum transition hybrid register
exchange approach has been implemented for the viterbi decoder of rate 1/3 and constraint
length of 5. We achieve this low power implementation by algorithmic modification with some
low power design techniques. Resulting architecture will lead to low power consumption among
the entire configuration available. The same technique can be applicable to higher constraint
length viterbi decoder such as K = 7, 9... Table I compares the proposed design with other
implementation shown in the literature. Also the memory requirement for decoding is reduced
International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010
22
by half. So this is one of the alternatives for register exchange method for decoding in viterbi
algorithm for low power applications.
REFERENCES
[1] A. Viterbi, “Error bounds for convolutional codes and asymptotically optimum decoding
algorithm” IEEE Trans. Info. Theory, Vol. IT 13, no.2, pp 260-269, Apr 1967.
[2] G. Forney, “The Viterbi Algorithm” Proc. IEEE, vol61, no. 3, pp 268-278, Mar. 1973.
[3] K. Seki; S. Kubota; “Very Low Power Consumption Viterbi Decoder LSIC Employing the SST
(Scarce State Transition) Scheme for Multimedia Mobile Communications,” Electronics-Letter,
IEE , Vol.30, no. 8, pp.637-639, April 1994.
[4] Kang and A. N. Willson Jr., “Low-power Viterbi decoder for CDMA Mobile Terminals,” IEEE-
journal of Solid- State-Circuits. Vol.33, no.3, pp473-82, March 1998.
[5] C. Y. Chang and K. Yao “Systolic Array Processing of the Viterbi Algorithm,” IEEE Trans.
Inform. Theory, Vol. IT-35, no.1, pp 76-86, Jan. 1989.
[6] Yun-Nan Chang “Design of Soft Output Viterbi Decoders with Hybrid Traceback Processing,”
IEEE Int. Conf. ISCAS(2) 2003.
[7] S. L. Haridas and Dr. N. K. Choudhari “Design of Viterbi Decoder with Modified Traceback and
Hybrid Register Exchange Processing,” ACM Int. Conf. ICAC3’09, pp 223-226, Jan 2009.
[8] S. L. Haridas and Dr. N. K. Choudhari “Design of Viterbi Decoder with Minimum Transition
Hybrid Register Exchange Processing,” ACM Int. Conf. ICWET’10, Feb.26-27, 2010.
[9] S. Ranpara and Dong Sam Ha, ”A low power Viterbi Decoder design for wireless
communications applications” Int. ASIC conference, Sept. 1999.
[10] Jing-ling Yang, Alfred, K.K. Wong, “Designing of Precomputational based low power viterbi
decoder” IEEE 6th
CAS Symp. On Emerging Technologies: Mobile and Wireless Comm.,
Shanghai, China, May 31 – June 2, 2004.
Authors
S. L. Haridas received Bachelor of Engineering and Master of
Engineering degrees from Nagpur University, M.S., India in 1988 and
1995 respectively. Currently he is pursuing the Ph. D. degree at R. T. M.
Nagpur University. He is a Professor and Head of Electronics and
Telecommunication Engineering department at B. D. College of
Engineering, Sevagram, M. S., India.
Dr. N. K. Choudhari received Bachelor of Engineering and Master of
Engineering degrees from Nagpur University, M.S., India in 1987 and
1993 respectively. He received Ph. D. degree from J. M. University,
New Delhi, India. Presently he is working as a Principal at Smt.
Bhagvati Chaturvedi College of Engineering, Nagpur, M. S., India. He
published almost 30 research papers in various conferences and reputed
journals. He held different positions on various committees and bodies
at university level. He guided nearly 10 research scholars in electroncs
engineering.

More Related Content

What's hot

Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...Iaetsd Iaetsd
 
Joint Fixed Power Allocation and Partial Relay Selection Schemes for Cooperat...
Joint Fixed Power Allocation and Partial Relay Selection Schemes for Cooperat...Joint Fixed Power Allocation and Partial Relay Selection Schemes for Cooperat...
Joint Fixed Power Allocation and Partial Relay Selection Schemes for Cooperat...TELKOMNIKA JOURNAL
 
Simulation of Turbo Convolutional Codes for Deep Space Mission
Simulation of Turbo Convolutional Codes for Deep Space MissionSimulation of Turbo Convolutional Codes for Deep Space Mission
Simulation of Turbo Convolutional Codes for Deep Space MissionIJERA Editor
 
Analysis of LDPC Codes under Wi-Max IEEE 802.16e
Analysis of LDPC Codes under Wi-Max IEEE 802.16eAnalysis of LDPC Codes under Wi-Max IEEE 802.16e
Analysis of LDPC Codes under Wi-Max IEEE 802.16eIJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
Performance Study of RS (255, 239) and RS (255.233) Used Respectively in DVB-...
Performance Study of RS (255, 239) and RS (255.233) Used Respectively in DVB-...Performance Study of RS (255, 239) and RS (255.233) Used Respectively in DVB-...
Performance Study of RS (255, 239) and RS (255.233) Used Respectively in DVB-...IJERA Editor
 
NON-STATISTICAL EUCLIDEAN-DISTANCE SISO DECODING OF ERROR-CORRECTING CODES OV...
NON-STATISTICAL EUCLIDEAN-DISTANCE SISO DECODING OF ERROR-CORRECTING CODES OV...NON-STATISTICAL EUCLIDEAN-DISTANCE SISO DECODING OF ERROR-CORRECTING CODES OV...
NON-STATISTICAL EUCLIDEAN-DISTANCE SISO DECODING OF ERROR-CORRECTING CODES OV...IJCSEA Journal
 
BCH Decoder Implemented On CMOS/Nano Device Digital Memories for Fault Tolera...
BCH Decoder Implemented On CMOS/Nano Device Digital Memories for Fault Tolera...BCH Decoder Implemented On CMOS/Nano Device Digital Memories for Fault Tolera...
BCH Decoder Implemented On CMOS/Nano Device Digital Memories for Fault Tolera...inventy
 
Reduced Complexity Maximum Likelihood Decoding Algorithm for LDPC Code Correc...
Reduced Complexity Maximum Likelihood Decoding Algorithm for LDPC Code Correc...Reduced Complexity Maximum Likelihood Decoding Algorithm for LDPC Code Correc...
Reduced Complexity Maximum Likelihood Decoding Algorithm for LDPC Code Correc...Associate Professor in VSB Coimbatore
 
Estimation of bitlength of transformed quantized residue
Estimation of bitlength of transformed quantized residueEstimation of bitlength of transformed quantized residue
Estimation of bitlength of transformed quantized residueIAEME Publication
 
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...vtunotesbysree
 
Design, Analysis and Implementation of Modified Luby Transform Code
Design, Analysis and Implementation of Modified Luby Transform CodeDesign, Analysis and Implementation of Modified Luby Transform Code
Design, Analysis and Implementation of Modified Luby Transform CodeIOSR Journals
 
An Efficient Fault Tolerance System Design for Cmos/Nanodevice Digital Memories
An Efficient Fault Tolerance System Design for Cmos/Nanodevice Digital MemoriesAn Efficient Fault Tolerance System Design for Cmos/Nanodevice Digital Memories
An Efficient Fault Tolerance System Design for Cmos/Nanodevice Digital MemoriesIJERA Editor
 
High Speed Decoding of Non-Binary Irregular LDPC Codes Using GPUs (Paper)
High Speed Decoding of Non-Binary Irregular LDPC Codes Using GPUs (Paper)High Speed Decoding of Non-Binary Irregular LDPC Codes Using GPUs (Paper)
High Speed Decoding of Non-Binary Irregular LDPC Codes Using GPUs (Paper)Enrique Monzo Solves
 
Iterative network channel decoding with cooperative space-time transmission
Iterative network channel decoding with cooperative space-time transmissionIterative network channel decoding with cooperative space-time transmission
Iterative network channel decoding with cooperative space-time transmissionijasuc
 
Combating Bit Losses in Computer Networks using Modified Luby Transform Code
Combating Bit Losses in Computer Networks using Modified Luby Transform CodeCombating Bit Losses in Computer Networks using Modified Luby Transform Code
Combating Bit Losses in Computer Networks using Modified Luby Transform CodeIJMER
 
Study of the operational SNR while constructing polar codes
Study of the operational SNR while constructing polar codes Study of the operational SNR while constructing polar codes
Study of the operational SNR while constructing polar codes IJECEIAES
 

What's hot (20)

Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
Iaetsd implementation of power efficient iterative logarithmic multiplier usi...
 
Joint Fixed Power Allocation and Partial Relay Selection Schemes for Cooperat...
Joint Fixed Power Allocation and Partial Relay Selection Schemes for Cooperat...Joint Fixed Power Allocation and Partial Relay Selection Schemes for Cooperat...
Joint Fixed Power Allocation and Partial Relay Selection Schemes for Cooperat...
 
Simulation of Turbo Convolutional Codes for Deep Space Mission
Simulation of Turbo Convolutional Codes for Deep Space MissionSimulation of Turbo Convolutional Codes for Deep Space Mission
Simulation of Turbo Convolutional Codes for Deep Space Mission
 
Analysis of LDPC Codes under Wi-Max IEEE 802.16e
Analysis of LDPC Codes under Wi-Max IEEE 802.16eAnalysis of LDPC Codes under Wi-Max IEEE 802.16e
Analysis of LDPC Codes under Wi-Max IEEE 802.16e
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
G364246
G364246G364246
G364246
 
Performance Study of RS (255, 239) and RS (255.233) Used Respectively in DVB-...
Performance Study of RS (255, 239) and RS (255.233) Used Respectively in DVB-...Performance Study of RS (255, 239) and RS (255.233) Used Respectively in DVB-...
Performance Study of RS (255, 239) and RS (255.233) Used Respectively in DVB-...
 
NON-STATISTICAL EUCLIDEAN-DISTANCE SISO DECODING OF ERROR-CORRECTING CODES OV...
NON-STATISTICAL EUCLIDEAN-DISTANCE SISO DECODING OF ERROR-CORRECTING CODES OV...NON-STATISTICAL EUCLIDEAN-DISTANCE SISO DECODING OF ERROR-CORRECTING CODES OV...
NON-STATISTICAL EUCLIDEAN-DISTANCE SISO DECODING OF ERROR-CORRECTING CODES OV...
 
BCH Decoder Implemented On CMOS/Nano Device Digital Memories for Fault Tolera...
BCH Decoder Implemented On CMOS/Nano Device Digital Memories for Fault Tolera...BCH Decoder Implemented On CMOS/Nano Device Digital Memories for Fault Tolera...
BCH Decoder Implemented On CMOS/Nano Device Digital Memories for Fault Tolera...
 
Reduced Complexity Maximum Likelihood Decoding Algorithm for LDPC Code Correc...
Reduced Complexity Maximum Likelihood Decoding Algorithm for LDPC Code Correc...Reduced Complexity Maximum Likelihood Decoding Algorithm for LDPC Code Correc...
Reduced Complexity Maximum Likelihood Decoding Algorithm for LDPC Code Correc...
 
Estimation of bitlength of transformed quantized residue
Estimation of bitlength of transformed quantized residueEstimation of bitlength of transformed quantized residue
Estimation of bitlength of transformed quantized residue
 
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
VTU 6TH SEM CSE COMPUTER NETWORKS 2 SOLVED PAPERS OF JUNE-2013 JUNE-14 & JUNE...
 
Design, Analysis and Implementation of Modified Luby Transform Code
Design, Analysis and Implementation of Modified Luby Transform CodeDesign, Analysis and Implementation of Modified Luby Transform Code
Design, Analysis and Implementation of Modified Luby Transform Code
 
MC-cdma
MC-cdmaMC-cdma
MC-cdma
 
An Efficient Fault Tolerance System Design for Cmos/Nanodevice Digital Memories
An Efficient Fault Tolerance System Design for Cmos/Nanodevice Digital MemoriesAn Efficient Fault Tolerance System Design for Cmos/Nanodevice Digital Memories
An Efficient Fault Tolerance System Design for Cmos/Nanodevice Digital Memories
 
High Speed Decoding of Non-Binary Irregular LDPC Codes Using GPUs (Paper)
High Speed Decoding of Non-Binary Irregular LDPC Codes Using GPUs (Paper)High Speed Decoding of Non-Binary Irregular LDPC Codes Using GPUs (Paper)
High Speed Decoding of Non-Binary Irregular LDPC Codes Using GPUs (Paper)
 
Iterative network channel decoding with cooperative space-time transmission
Iterative network channel decoding with cooperative space-time transmissionIterative network channel decoding with cooperative space-time transmission
Iterative network channel decoding with cooperative space-time transmission
 
79 83
79 8379 83
79 83
 
Combating Bit Losses in Computer Networks using Modified Luby Transform Code
Combating Bit Losses in Computer Networks using Modified Luby Transform CodeCombating Bit Losses in Computer Networks using Modified Luby Transform Code
Combating Bit Losses in Computer Networks using Modified Luby Transform Code
 
Study of the operational SNR while constructing polar codes
Study of the operational SNR while constructing polar codes Study of the operational SNR while constructing polar codes
Study of the operational SNR while constructing polar codes
 

Similar to Low Power Viterbi Decoder Design with MTHREM

Implementation of Viterbi Decoder on FPGA to Improve Design
Implementation of Viterbi Decoder on FPGA to Improve DesignImplementation of Viterbi Decoder on FPGA to Improve Design
Implementation of Viterbi Decoder on FPGA to Improve Designijsrd.com
 
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...IJERA Editor
 
Design and implementation of log domain decoder
Design and implementation of log domain decoder Design and implementation of log domain decoder
Design and implementation of log domain decoder IJECEIAES
 
Performances Concatenated LDPC based STBC-OFDM System and MRC Receivers
Performances Concatenated LDPC based STBC-OFDM System and MRC Receivers  Performances Concatenated LDPC based STBC-OFDM System and MRC Receivers
Performances Concatenated LDPC based STBC-OFDM System and MRC Receivers IJECEIAES
 
Improving The Performance of Viterbi Decoder using Window System
Improving The Performance of Viterbi Decoder using Window System Improving The Performance of Viterbi Decoder using Window System
Improving The Performance of Viterbi Decoder using Window System IJECEIAES
 
Data detection with a progressive parallel ici canceller in mimo ofdm
Data detection with a progressive parallel ici canceller in mimo ofdmData detection with a progressive parallel ici canceller in mimo ofdm
Data detection with a progressive parallel ici canceller in mimo ofdmeSAT Publishing House
 
A NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEM
A NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEMA NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEM
A NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEMVLSICS Design
 
Non-binary codes approach on the performance of short-packet full-duplex tran...
Non-binary codes approach on the performance of short-packet full-duplex tran...Non-binary codes approach on the performance of short-packet full-duplex tran...
Non-binary codes approach on the performance of short-packet full-duplex tran...IJECEIAES
 
Viterbi Decoder Plain Sailing Design for TCM Decoders
Viterbi Decoder Plain Sailing Design for TCM DecodersViterbi Decoder Plain Sailing Design for TCM Decoders
Viterbi Decoder Plain Sailing Design for TCM Decodersijtsrd
 
AN EFFICIENT VITERBI DECODER
AN EFFICIENT VITERBI DECODERAN EFFICIENT VITERBI DECODER
AN EFFICIENT VITERBI DECODERIJCSEA Journal
 
BLOCK CODES,STBCs & STTCs.pptx
BLOCK CODES,STBCs & STTCs.pptxBLOCK CODES,STBCs & STTCs.pptx
BLOCK CODES,STBCs & STTCs.pptxFAIZAN SHAFI
 

Similar to Low Power Viterbi Decoder Design with MTHREM (20)

Implementation of Viterbi Decoder on FPGA to Improve Design
Implementation of Viterbi Decoder on FPGA to Improve DesignImplementation of Viterbi Decoder on FPGA to Improve Design
Implementation of Viterbi Decoder on FPGA to Improve Design
 
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
Design and Performance Analysis of Convolutional Encoder and Viterbi Decoder ...
 
Ff34970973
Ff34970973Ff34970973
Ff34970973
 
Design and implementation of log domain decoder
Design and implementation of log domain decoder Design and implementation of log domain decoder
Design and implementation of log domain decoder
 
Performances Concatenated LDPC based STBC-OFDM System and MRC Receivers
Performances Concatenated LDPC based STBC-OFDM System and MRC Receivers  Performances Concatenated LDPC based STBC-OFDM System and MRC Receivers
Performances Concatenated LDPC based STBC-OFDM System and MRC Receivers
 
K0216571
K0216571K0216571
K0216571
 
40120140505011
4012014050501140120140505011
40120140505011
 
srivastava2018.pdf
srivastava2018.pdfsrivastava2018.pdf
srivastava2018.pdf
 
Improving The Performance of Viterbi Decoder using Window System
Improving The Performance of Viterbi Decoder using Window System Improving The Performance of Viterbi Decoder using Window System
Improving The Performance of Viterbi Decoder using Window System
 
Data detection with a progressive parallel ici canceller in mimo ofdm
Data detection with a progressive parallel ici canceller in mimo ofdmData detection with a progressive parallel ici canceller in mimo ofdm
Data detection with a progressive parallel ici canceller in mimo ofdm
 
A NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEM
A NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEMA NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEM
A NOVEL APPROACH FOR LOWER POWER DESIGN IN TURBO CODING SYSTEM
 
E010224043
E010224043E010224043
E010224043
 
Channel estimation
Channel estimationChannel estimation
Channel estimation
 
Turbocode
TurbocodeTurbocode
Turbocode
 
Non-binary codes approach on the performance of short-packet full-duplex tran...
Non-binary codes approach on the performance of short-packet full-duplex tran...Non-binary codes approach on the performance of short-packet full-duplex tran...
Non-binary codes approach on the performance of short-packet full-duplex tran...
 
Viterbi Decoder Plain Sailing Design for TCM Decoders
Viterbi Decoder Plain Sailing Design for TCM DecodersViterbi Decoder Plain Sailing Design for TCM Decoders
Viterbi Decoder Plain Sailing Design for TCM Decoders
 
AN EFFICIENT VITERBI DECODER
AN EFFICIENT VITERBI DECODERAN EFFICIENT VITERBI DECODER
AN EFFICIENT VITERBI DECODER
 
Ijetcas14 378
Ijetcas14 378Ijetcas14 378
Ijetcas14 378
 
www.ijerd.com
www.ijerd.comwww.ijerd.com
www.ijerd.com
 
BLOCK CODES,STBCs & STTCs.pptx
BLOCK CODES,STBCs & STTCs.pptxBLOCK CODES,STBCs & STTCs.pptx
BLOCK CODES,STBCs & STTCs.pptx
 

Recently uploaded

Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
(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
 
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
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
(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
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
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
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 

Recently uploaded (20)

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
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
(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
 
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
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
(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...
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
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, ...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 

Low Power Viterbi Decoder Design with MTHREM

  • 1. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 DOI : 10.5121/vlsic.2010.1402 14 A LOW POWER VITERBI DECODER DESIGN WITH MINIMUM TRANSITION HYBRID REGISTER EXCHANGE PROCESSING FOR WIRELESS APPLICATIONS S. L. Haridas1 and Dr. N. K. Choudhari2 1 Prof. & Head of E&T Engg., B. D. College of Engg., Sevagram (M.S.), India slhlec@rediffmail.com 2 Principal, Smt. Bhagvati Chaturvedi College of Engg., Nagpur (M.S.), India drnitinchoudhari@gmail.com ABSTRACT This work proposes the low power implementation of Viterbi Decoder. Majority of viterbi decoder designs in the past use simple Register Exchange or Traceback method to achieve very high speed and low power decoding respectively, but it suffers from both complex routing and high switching activity. Here simplification is made in survivor memory unit by storing only m-1 bits to identify previous state in the survivor path, and by assigning m-1 registers to decision vectors. This approach eliminates unnecessary shift operations. Also for storing the decoded data only half memory is required than register exchange method. In this paper Hybrid approach that combines both Traceback and Register Exchange schemes has been applied to the viterbi decoder design. By using distance properties of encoder we further modified to minimum transition hybrid register exchange method. It leads to lower dynamic power consumption because of lower switching activity. Dynamic power estimation obtained through gate level simulation indicates that the proposed design reduces the power dissipation of a conventional viterbi decoder design by 30%. KEYWORDS Traceback method, Register Exchange method, Hybrid Register Exchange method, Minimum Transition Register Exchange Method. 1. INTRODUCTION The Viterbi Algorithm [1], can find the most likely sequence of state transitions, and has been widely used in digital communication and signal processing, was introduced in 1967 as a method of decoding convolutional codes [2]. In digital communication systems, convolutional coding and viterbi decoding are used to enhance the performance of the systems. In recent years due to battery operated devices, the design of viterbi decoder has been investigated intensively. Numerous techniques for reducing power dissipation have been proposed. Scarce state transition architecture [3] has been used to reduce switching activity which incorporates a predecoder and preencoder to minimize transitions at the input of viterbi decoder. This reduces dynamic power dissipation. Kang and Wilson [4] suggesting partitioning major blocks at the system level. High throughput rate can be achieved using the concept of strongly connected trellis which was introduced by Chang and Yao [5]. Two decoding methods are mainly used, Register exchange method (REM) and Traceback method (TBM). The TBM is more popular since used for large number of states and constraint length, therefore continuous modification has been take place in TBM. While REM is used for small number of states and small constraint length. Very few attempts to combine the advantages of TBM and REM are takes place in [6] and [7] where they
  • 2. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 15 proposed Hybrid Traceback and Hybrid Register exchange (HREM) methods. In HREM, reduces memory, reduces number of data transfer operations and ultimately the switching activity. In this paper we present the design of low power viterbi decoder in the IS-95 CDMA environment. We used minimum transition hybrid register exchange method (MTHREM) [8], which further reduces the switching activity by minimizing the data transfer operations using a free distance property of encoder. The following sections are organised as follows. We first briefly review the viterbi algorithm with all components in section 2. In section 3 explains the system architecture. Section 4 devotes to various decoding schemes, while in section 5 we proposed detail implementation of MTHREM with free distance and error correcting capability of viterbi decoder and few low power techniques. Finally in section 6 remaining design steps and results of the actual implementation are reported. 2. VITERBI ALGORITHM The Viterbi algorithm is an optimal algorithm for estimating the state sequence of a finite state process observed in the presence of memory less noise. 2.1 Convolutional Encoder A Viterbi decoder and a convolutional encoder operate by finding the most likely decoding sequences for an input code symbol stream. A convolutional encoder is selected for error- correction with digital mobile communication. We consider a convolutional code (3, 1, 2) which has a code rate r of 1/3 and constraint length K of 3 and number of memory element m is 2, depicted in figure 1. The encoder shown contains a shift registers tapped at various positions. The shift register taps terminate at modulo-2 adders forming generator function (g2 = 101, g1 = 111, g0 = 111). Input bit enter the shift register by one bit at a time. The outputs of the generator functions produce an output of three symbols for each input bit, which corresponds to a code rate 1/3. As an example of how the encoding process operates, consider the binary sequence 110110. The resulting output sequence of the encoder will be 111, 100, 100, 000, 100 and 100. 2.2 Trellis Diagram Since there are 2m = 4 states in the encoder, we have four states, e.g., S0 = (00), S1 = (01), S2 = (10), and S3 = (11). The trellis diagram of figure 1 is depicted in figure 2, where the solid line represents the transition branch when the input bit is 0, whereas the dashed line represents the transition branch when the input bit is 1, and the two bits marked on the transition branch Figure 1. A (3, 1, 2) convolutional encoder
  • 3. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 denotes the output codeword. entering each node, and two possible branches leavi If we assume a code sequence {c received sequence then the branch metric S Where ║rt-1 – ci,j║ denotes the hamming distance between received word and transmitted word of the transition branch. The path metric PMj of state Sj at time t can be expressed as PM Figure 2.3 Viterbi Decoding Algorithm We can view the Viterbi algorithm as a dynamic programming algorithm for finding the shortest path through a trellis, and the algorithm can be broken down into the 1. Calculate the branch metrics by comparing the received code symbol and expected symbols. 2. Recursively computes the shortest paths to time n, in terms of the shortest paths to time n-1. In this step, decisions are used to recursively u known as add-compare-select (ACS) recursion. 3. Recursively find the shortest path leading to each trellis state using the decisions from Step 2. The shortest path is called the survivor path for that state and survivor path decode. Finally, if all survivor paths are traced back in time, they merge into a unique path, which is the most likely signal path that we are trying to find. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 denotes the output codeword. For all convolution encoders, there are two possible branches entering each node, and two possible branches leaving the node, regardless of the code rate. If we assume a code sequence {c0, c1, c2….) is transmitted over a channel and {r0, r1, r received sequence then the branch metric Si at time t-1 to state Sj at time t is defined by [] BM = dt-1,t(Si,Sj) = ║rt-1 – ci,j║ hamming distance between received word and transmitted The path metric PMj of state Sj at time t can be expressed as PMj t = min{PMi t-1 + dt-1,t(Si,Sj)} Figure 2. Trellis diagram of Encoder Viterbi Decoding Algorithm We can view the Viterbi algorithm as a dynamic programming algorithm for finding the shortest path through a trellis, and the algorithm can be broken down into the following three steps. Calculate the branch metrics by comparing the received code symbol and expected Recursively computes the shortest paths to time n, in terms of the shortest paths to time 1. In this step, decisions are used to recursively update the survivor path of the signal. This is select (ACS) recursion. Recursively find the shortest path leading to each trellis state using the decisions from Step 2. The shortest path is called the survivor path for that state and the process is referred to as survivor path decode. Finally, if all survivor paths are traced back in time, they merge into a unique path, which is the most likely signal path that we are trying to find. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 16 For all convolution encoders, there are two possible branches ng the node, regardless of the code rate. , r2…} is the at time t is defined by [] hamming distance between received word and transmitted code The path metric PMj of state Sj at time t can be expressed as We can view the Viterbi algorithm as a dynamic programming algorithm for finding the shortest following three steps. Calculate the branch metrics by comparing the received code symbol and expected Recursively computes the shortest paths to time n, in terms of the shortest paths to time pdate the survivor path of the signal. This is Recursively find the shortest path leading to each trellis state using the decisions from the process is referred to as survivor path decode. Finally, if all survivor paths are traced back in time, they merge into a
  • 4. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 17 From the Fig. 3, associated with each trellis state S at time t is a state metric SMp and SMq which is the accumulated metric along the shortest path leading to that state. The state metrics at time t can be recursively calculated in terms of the state metrics of the previous iteration as follows: For state metric SMt PMp = min (PMi + BMil , PMj + BMj1 ) PMq = min (PMi + BMi0 , PMj + BMj0 ) In order that the input sequence can be decoded, the survivor path (shortest path) or signal through the trellis must be traced and decode. 3. SYSTEM ARCHITECTURE The implementation of the viterbi algorithm, referred to as the viterbi decoder. The major blocks of a viterbi decoder are shown in Fig. 4. The role of each block is described briefly below. Branch Metric Unit: This unit computes the branch metric of each transition, which is a hamming distance between the received symbol and expected symbol. Figure 4. Block Diagram of Viterbi decoder ACSU: The Add-compare-select unit is a collection of ACS units. For a single state, an ACS unit receives two branch metric and two path metrics. It adds each incoming branch metric to the corresponding path metric and compares the two results to select a smaller one. The path metric of the state is updated with the selected one. PM storage: This unit stores the path metric of each state at the current stage. Survivor path storage: It stores the survivor sequence of each state selected by the ACSU. Output generator: It generates the decoded output sequence. In the traceback method, this block incorporates combinational logic, which traces back along the survivor path starting from Figure 3. Butterfly structure of encoder BMU ACSU PM STORAGE SURVIVOR PATH STORAGE OUTPUT SEQUENCE GENERATOR
  • 5. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 18 the final state to the initial state and generates the decoded output. For the register exchange method the decoded output is the content of the register of the final state. In this paper, we consider the 16 state, rate 1/3 convolutional encoder. We limit the number of symbols to 20 for our Viterbi decoder. The tail sequence in each frame is fixed to ‘0’ and resets the convolutional encoder to its initial state. 4. DECODING METHODS 4.1 Register Exchange Method In Register Exchange Method, Figure 5, a register is assigned to each state contains information bits for the survivor path throughout the trellis. The register keeps the partially decoded output sequence along the path. The register exchange method eliminates the need to traceback since the register of final state contains the decoded output. This approach results in complex hardware and high switching activity due to the need to copy the content of all the registers from state to state. 4.2 Hybrid Register Exchange Method In this method register exchange and traceback method is combined, therefore the name Hybrid register exchange method [7], which reduces further the switching activity and power. Here we are using a property of trellis is that, if we go forward for m cycles then the data bits will be the corresponding state bits irrespective of the initial state from where the data gets transferred. To find the initial state we have to traceback through an m cycles by observing the survivor memory. And then transfer the partial decoded data from initial state to the next state which is m cycle later and not a subsequent cycle. Again consider the previous (3, 1, 2) encoder and trellis diagram as shown in figure 1 and figure 2 respectively. Now if the trellis is strongly connected, then the states on survivor path will correspond to the input bits. We define survivor state as a state at time t1 that is traced from initial state Si at time t2 (t2 > t1). It is noted that survivor path memory is the output of ACSU at time t. For instance, in fig. 6 the survivor state at time t = 2, traced from S3 at time t = 4 is 10 i.e.S2. SUR(S3;2,4) = 10, SUR(S2;2,4) = 11 SUR(S1,2,4) = 11 SUR(S0;2,4) = 11 Figure 5. Register exchange method 101 11 111 0 1 0 110 111 101 1101 11011 10 01 100 110 110 1101 1100 1100 11011 110101 11000 1101011 1101100 11011000
  • 6. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 19 Figure 6. Survivor states for t = 2 to 4 The corresponding nature of lines indicates the corresponding data inputs which are equivalent to the current state. For if current state S3, the survivor state is S2 and data input is 11. So the previous data from state S2 will get transfer to state S3 and new data is added as 11. Here in the Fig. 7 survivor state at t = 4 is 11 for state S1 therefore the content of S1 state register at t = 4 is the data of S3 at t = 2 and the state S1 01 itself i.e. 1101. And at t = 6 the survivor information of state S2 is 01, therefore the content of S2 state register at t = 6 is the data of S1 at t = 4 and the state S2 itself i.e. 110110. This process goes continue, the final state register of S0contains the decoded output. The memory operation is not at every cycle, and it gets reduced by a factor of m. Also the shifting of data from one register to another is reduced that is the switching activity will reduce. 5. PROPOSED LOW POWER DESIGN From the state diagram we can obtain a closed form expression whose expansion yields all distant information directly. In figure 8, labeling the branches D2 , D and D0 = 1, where the exponent corresponds to the distance of particular branch from the corresponding branch of all zero path. Also we split the node S0, since circulation around this self loop simply corresponds to branches of the all zero path. Adding branch exponents we see that path S0-S1-S2-S0 is at distance 8 from the correct path, and S0-S1-S3-S2-S0 and S0-S1-S2-S1-S2-S0 has distance 8 and 10 respectively. S0-S1-S2-S0 Differ in one input bit from all zero paths and other are two and more. S0 t 2 3 4 S1 S2 S3 Figure 7. Hybrid Register Exchange Method
  • 7. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 20 So the free distance will be 8. This implies that three bit of errors over the channel can be corrected. For three or fewer errors will cause the received sequence to be at most distance three from transmitted sequence but it will be at least, distance 5 from any other possible code sequence. 5.1 MINIMUM TRANSITION HYBRID REGISTER EXCHANGE METHOD In Register Exchange method the data has to be transfer from one register (2m ) to other at every instant, and therefore the switching activity is much more. While in Hybrid register exchange method data transfer is taking place at alternate instant of time therefore switching activity is less. One of the solutions to reduce the switching activity further is to avoid unwanted data transfer from one register to other at alternate time interval. Since the path metric at every time interval describes the how much bits they are differ from the transmitted sequence. In our fig. 5 the metric at time t = 8 for final state S0 is ‘0’; since the transmitted and receive sequence is same. Every decoder has error correcting capability depending on free distance. Here for our encoder free distance are 8 and therefore error correction ability is three. The path metric less than or equal to three leads to correct path and the state which has path metric more than three may lead to wrong detection. For the encoder maximum half the state has less or less than three path metrics and half the state has path metric more than three. Hence there is absolute no need to trace the path which has higher path metric than three. So memory requirement will get reduced. Earlier for register exchange and hybrid register exchange method the 2m registers are required to save decoded data while in this approach it reduces to 2m /2, so the data transfer operations will reduces and ultimately the switching activity will get reduced. Therefore as shown in Figure 9, we can avoid these states or path from calculation and data transfer, so that the data bit transitions could not takes place and avoid undesirable switching. Figure 8. Distance properties of encoder Figure 9. Minimum Transition Hybrid Register Exchange Method S1 S2 S0 S0 S3 D3 D3 D2 D D D2
  • 8. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 21 Clock gating: Here register holds the survivor path information of all states. The five bit counter keeps the track of the current stage. When the code symbol is received, the particular register clock is enabled, and the survivor path information of that stage is recorded in that register. All other registers hold their state, since the clock of other registers is disabled. Therefore the survivor path storage reduces switching activity. Toggle-filtering: If signals arriving at the inputs of a combinational block at different times, the block may go through several intermediate transitions before it settle down. By blocking early signals until all input signals arrive, intermediate transitions and ultimately dynamic power dissipation can be reduced. In the viterbi decoder, when trace back path is constructed information of this path is read from the survivor memory, and then fed to the output generator block. 6. EXPERIMENTAL RESULT We measured the power dissipation of the three different implementations of rate 1/3, constraint length 5 (scale down version), viterbi decoder; the register exchange, hybrid register exchange; and the proposed low power minimum transition hybrid register exchange method. Our proposed design, viterbi decoder using Minimum Transition Hybrid Register Exchange Method, is coded in VHDL and synthesized with synopsys tools using the TSMC 150 nm technology library for which supply voltage is 1.65V. Circuit is simulated with a representative set of input vectors. Transitions in different nodes are recorded in an output file which is read by synopsys power estimation tool that is power compiler. This information besides the power attributes of each gate which is extracted from synopsys library is used to estimate power consumption of the circuit. Experimental results of our design and some references are shown in Table I. All references have the same configuration of viterbi decoder (rate = 1/3, K = 5) and they are recently only available, therefore we are considering here. Our design that is viterbi decoder using Minimum Transition Hybrid Register Exchange Method has require less power than the register exchange and Hybrid register exchange designs. The proposed method reduces the power dissipation by 30% than our designed register exchange method, 15% than our designed hybrid register exchange method, and 73% and 53.75% compared with the design mentioned in [9] and [10] respectively. Table I. Result of power measurement Method/References Our REM Our HREM [9] [10] Proposed design Power dissipation (µW) 264.79 214.97 683 400 185.84 7. CONCLUSION Viterbi decoders employed in digital wireless communication are complex and dissipate high power. In this paper, a novel decoding scheme based on minimum transition hybrid register exchange approach has been implemented for the viterbi decoder of rate 1/3 and constraint length of 5. We achieve this low power implementation by algorithmic modification with some low power design techniques. Resulting architecture will lead to low power consumption among the entire configuration available. The same technique can be applicable to higher constraint length viterbi decoder such as K = 7, 9... Table I compares the proposed design with other implementation shown in the literature. Also the memory requirement for decoding is reduced
  • 9. International journal of VLSI design & Communication Systems (VLSICS) Vol.1, No.4, December 2010 22 by half. So this is one of the alternatives for register exchange method for decoding in viterbi algorithm for low power applications. REFERENCES [1] A. Viterbi, “Error bounds for convolutional codes and asymptotically optimum decoding algorithm” IEEE Trans. Info. Theory, Vol. IT 13, no.2, pp 260-269, Apr 1967. [2] G. Forney, “The Viterbi Algorithm” Proc. IEEE, vol61, no. 3, pp 268-278, Mar. 1973. [3] K. Seki; S. Kubota; “Very Low Power Consumption Viterbi Decoder LSIC Employing the SST (Scarce State Transition) Scheme for Multimedia Mobile Communications,” Electronics-Letter, IEE , Vol.30, no. 8, pp.637-639, April 1994. [4] Kang and A. N. Willson Jr., “Low-power Viterbi decoder for CDMA Mobile Terminals,” IEEE- journal of Solid- State-Circuits. Vol.33, no.3, pp473-82, March 1998. [5] C. Y. Chang and K. Yao “Systolic Array Processing of the Viterbi Algorithm,” IEEE Trans. Inform. Theory, Vol. IT-35, no.1, pp 76-86, Jan. 1989. [6] Yun-Nan Chang “Design of Soft Output Viterbi Decoders with Hybrid Traceback Processing,” IEEE Int. Conf. ISCAS(2) 2003. [7] S. L. Haridas and Dr. N. K. Choudhari “Design of Viterbi Decoder with Modified Traceback and Hybrid Register Exchange Processing,” ACM Int. Conf. ICAC3’09, pp 223-226, Jan 2009. [8] S. L. Haridas and Dr. N. K. Choudhari “Design of Viterbi Decoder with Minimum Transition Hybrid Register Exchange Processing,” ACM Int. Conf. ICWET’10, Feb.26-27, 2010. [9] S. Ranpara and Dong Sam Ha, ”A low power Viterbi Decoder design for wireless communications applications” Int. ASIC conference, Sept. 1999. [10] Jing-ling Yang, Alfred, K.K. Wong, “Designing of Precomputational based low power viterbi decoder” IEEE 6th CAS Symp. On Emerging Technologies: Mobile and Wireless Comm., Shanghai, China, May 31 – June 2, 2004. Authors S. L. Haridas received Bachelor of Engineering and Master of Engineering degrees from Nagpur University, M.S., India in 1988 and 1995 respectively. Currently he is pursuing the Ph. D. degree at R. T. M. Nagpur University. He is a Professor and Head of Electronics and Telecommunication Engineering department at B. D. College of Engineering, Sevagram, M. S., India. Dr. N. K. Choudhari received Bachelor of Engineering and Master of Engineering degrees from Nagpur University, M.S., India in 1987 and 1993 respectively. He received Ph. D. degree from J. M. University, New Delhi, India. Presently he is working as a Principal at Smt. Bhagvati Chaturvedi College of Engineering, Nagpur, M. S., India. He published almost 30 research papers in various conferences and reputed journals. He held different positions on various committees and bodies at university level. He guided nearly 10 research scholars in electroncs engineering.