SlideShare a Scribd company logo
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 177
Implementation and Analysis of Hybridization in Modified Parallel
Adder Circuits
Diptangshu Chattopadhyay1, Avinaba Tapadar2, Sujan Sarkar3
1 UG Student, Dept. of ECE, Jalpaiguri Government Engineering College, West Bengal, India
2 UG Student, Dept. of ECE, Jalpaiguri Government Engineering College, West Bengal, India
3 B.Tech, ECE, Jalpaiguri Government Engineering College, West Bengal, India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract—In today’s electronic world, we need a perfect
balance between device speed, power and area efficient path.
Most of the computational components contain adder circuits
in them which greatly affects the operation time. The number
of transistors in the VLSI circuit can only be reduced up to a
certain limit. So, to increase the efficiency there is a need for
modification and hybridization of different adders. SQRT is a
significant model. Adders like CSA-CSkA hybridadder,CSA-CIA
hybrid adder and modified CSLA using D-LATCH have been
compared here on the basis of delay, power consumption and
area calculations. Verilog hardware description language
(HDL) was used for coding and the simulation was done with
the support of Xilinx ISE 14.7 environment. The paper focuses
on the comparative study between adders. At the end, we are
successful in figuring out the adder taking the least amount of
delay, area and power consumption.
Keywords—Modified Adder, Ripple Carry Adder (RCA),
Carry Save Adder (CSA), Carry Skip Adder (CSkA), Carry
Increment Adder (CIA), Propagation Delay, Area efficient,
Power consumption, Hybrid Adder.
1. INTRODUCTION
Fromlastfew yearsweare witnessinga switchfrom32bitto
64 bit microprocessors and even more. With a thriving
demand for speed centric technologies, Very Large Scale
Integration (VLSI) has become the most sought after field of
research for designingarea and power efficient system with
high speed data path logic. But maintaining a balance
between the parameters is highly important. To make the
VLSI circuitmore portable with low computationaldelay,we
try to modify the fundamentally important adder circuits
present in them. Calculations like division, multiplication,
addition, subtraction, andlogicaloperationssuchasINV,OR,
AND can be encompassed by the basic adder circuits
included in the Arithmetic Logic Unit (ALU).
Half adder was the first proposed adder with two operands,
output sum and carry [1]. Following the success of half
adder, a full adder circuitwas proposed with 3 operands. At
the output side we have the sum and carry, very much
similar to that of half adder. We can have Cin as the third
input. A single circuit’s operation is limited to a single bit
addition. To remove this drawback and perform multi-bit
operation we have to connect a number of Full Adders in
parallel combination which is nothing but a Ripple Carry
Adder (RCA) model. In the case of high speed computation
there is an issue of time lag in propagating the carry
generated in (n-1)th block to (n)th block of the adder.
Modified adders like Carry Look Ahead Adder (CLA), Carry
Save Adder (CSA) [6] [8], Carry Skip Adder (CSkA) [8] [9],
CarrySelectAdder (CSLA), andCarryIncrementAdder (CIA)
have been designed so far [9] [10]. There are also a number
of hybrid adders like CIA-CLA and CIA-RCA with less delay
and penalty of more power consumption.
Keeping in mind both the advantages and disadvantages of
CSA and CSkA, the Proposed CSA-CSkA Hybrid Adder is
designed such a way that it can operate on three inputs to
speed up the calculation. Here CSkA is used instead of a
simple RCA after the first stage because it is more efficient
than RCA in higher bit operations. We reduce the circuit
complexity by using only one skip block [2]. Similarly to
reduce complexity in our proposed CSA-CIA Hybrid Adder,
less number of FA blocks has been used compared to that in
simple CSAcircuit. Inour ModifiedCSAwehave used Square
Root (SQRT) technique to make it morearea efficient as well
as power efficient.
2. BASIC CONCEPTS
2.1 Ripple Carry Adder (RCA)
The full adder’s computation process accepts two one-bit
inputs at a time. To solve this drawback, we have to use
Ripple Carry Adder. Basically Ripple Carry Adder is a
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 178
combination ofmultiple Full Adder blockscascadedinseries.
RCA is designed in sucha way that thecarrygenerated in(n-
1)th block to (n)th block of the adder. Fig. 1. shows a
conventional 4-Bit Ripple Carry Adder.
Fig.-1: A 4-Bit conventional RCA
Let us perform an addition operation which will involve two
4-bit input with A = 1 1 0 0 and B = 1 0 0 1. In the first stage,
addition will occur taking inputs A0 = 0 and B0 = 1 (Right
extreme end). WewillgetS0 =1andC1=0. C1 willpropagateto
the next block. So for the second Full Adder block the inputs
will be A1= 0, B1= 0 and C1= 0 which in turn will generate S1
=0 and C2 = 0. This will propagate like the previous stage.
Successively wewill haveS2=1, C3 =0and S3=0and carry-out
(C4) =1 as an ultimate output.
1 1 0 0
+ 1 0 0 1
____________________________
1 0 1 0 1
S3 S2 S1 S0
In this case carry-out=1
2.1.1 Advantages & disadvantages of RCA
Having lesscircuitcomplexitymakesitsimple tofabricate.In
fact it has the simplest design amongst all multiple bit adder
circuits. But unfortunately it faces disadvantages too. The
maincauseofits huge delayisdue tothe propagationofcarry
generated in each block, to the next block. So for N-bit
addition we have to use N number of Full adder blocks. As a
result, with the increase in bit size, overall delay and power
consumptionincreases. TheTotal delay(Td)ofaRippleCarry
Adder is given by Td= (N-1)tc + ts. Here N is the total number
ofgates used ina RCA, tcand ts denotes thecarrypropagation
delay and sum propagation delay. Its delay can be
functionalized by O(n) where n is number of bits. Fig. 2.
Showsa RegisterTransferLevel (RTL)Schematic diagramof
a 8-bit RCA.
Fig-2: RTL Schematic diagram of 8-bit RCA
2.2 Carry Save Adder (CSA)
Basically a Carry Save Adder is a combination of RCA. But
rather than propagating the carry, CSA saves it and
calculates it later. Let us imagine that we have to add three
numbers A, B, and C. Carry Save Adder arranges it into the
form A+ B+ C = S + C. CSA has n number of full adder which
perform the separate summation and develops the carry
individually. After shifting the carry on the left side we can
calculate the entire sum. The schematic diagramoftheCarry
Save Adder is shown in Fig. 3.
Fig-3: 4-bit Carry Save Adder
2.2.1 Advantages & Disadvantages of CSA
In a CSA, 3 different inputs can be calculated at a time.
Instead of propagating the carry through next stage, it gets
stored in present stage, and updated as addend value in the
next stage. The delay is O(log N). But there are certain
disadvantages too. For lower bit operations its propagation
delay and power consumptions is high. So it is only effective
for higher bit operations. The area is also high for the high
number of transistor. Fig.4. shows a RTL schematic of an 8-
bit CSA adder.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 179
Fig-4: RTL schematic of 8-bit CSA adder
2.3 Carry Skip Adder (CSkA)
A Carry Skip Adder is also called as Carry Bypass Adder. It
improves the delay of a RCA with very little modification.
CarrySkip Adder(CSkA)usesskip logic in the propagationof
carry. For each input bit pair operands, the propagation-
conditions are determined using an XOR gate. When all
propagate conditions are true(1), then carry-in bit decides
the carry-out bit. A standard n bit CSkA contains n bit carry
ripple chain, an n-input AND gate and a multiplexer. Carry
skip adder has delay in the order of O(n). Bowing down to
increasing demand for fast computational speed, most PCs
nowadays work on 64 bit architecture or above. As it has a
greatresponseinhigherbit, CSkAs hasbeenacceptedwidely
[2]. Fig. 5. Illustrates a 8 bit Carry Skip Adder.
Fig.-5: 8-bit Carry Skip Adder
2.3.1 Skip Logic Circuit
Fig. 6. Showsthe theskip logic circuit ofa 2-bitoperation.The
circuit uses a MUX [3]. It can also be replaced by an OR gate.
Fig. 6: 2-bit Carry Skip Circuit with Skip Logic
2.3.2 Advantages & Disadvantages of CSkA
CSkA is highly efficient for higher bit operations. Its skip
logic makes it much faster than other available adders. The
Pi logic circuit can be obtained from the Full Adder circuit
itself. But for a 4-bit operation we have to use 2 carry skip
logic circuits, making it consume more power. In case of
lower bit operation also, it has high power, delay and area
making it highly unsuitable. Fig.7. shows a RTL schematic of
a 8-bit CSkA.
Fig-7:RTL schematic of 8-bit CSkA
2.4 Carry Increment Adder ( CIA )
Carry Increment Adder is nothing but a combination of two
RCA circuit with an additional carry increment circuit. Two
4-bit RCA circuits are required to design an 8-bit CIA. Each
block of 4 bit RCA circuit processes the partial sum and
generates partial carry. It is then propagated to the
incremental circuit located separately. The first 4 sum from
the Ripple Carry Adder is directly taken from the block, but
the rest is calculated from the carry-out of the first blockand
the remaining input throughconditionalincrementalcircuit.
Second block will operate by summing and creating carry-
out. As the incremental circuit contains Half Adder, it has
less delay than simple RCA. The diagram is shown in Fig.8.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 180
Fig-8: Carry Increment Adder
The operation iscarried out in parallel by 2 blocks of 4-bit
RCAand thecarryout of thefirstblockistransferredtothe
increment circuit. Increment adder is shown in Figure 9.
Fig-9: 4 Bit Increment Adder
2.4.1 Advantages & Disadvantages of CIA
Half Adder (HA) blocks are used by CIA for carry
propagation. We know thatcarry propagation in HAismuch
faster than that of Full Adder (FA). That’s why total
propagation delay in CIA is much less that other adders. It
has less circuit complexity and is effective in higher bit
operation. But as CIA needs an additional carry increment
circuit, higher power consumption than RCA becomes a
major drawback. Chip area is higher than that of a similar n-
bit RCA circuit. In lower bit operation, it is not much
competent.
2.5 Carry Select Adder using Binary to Excess
Converter
The main drawback of conventional CSLA is its large area
than other multi-bit adder circuits. To make it area efficient
an (n+1)-bit Binary to excess 1 converter is used instead of
n-bit RCA with Cin=1, Then the area count of group 2 is
determined as follows [4]:
Gate count = 43 (FA + HA + Mux + BEC) FA = 13 (1 *13)
HA = 6 (1 * 6)
Mux = 12 (3 * 4)
NOT = 1
AND = 1
XOR = 10 (2 * 5)
BEC (3-BIT) = NOT + AND + XOR = 12
In every group each of the Ripple Carry Adder will
generate partial sum and carry taking carry input as Cin =
0. An (n+1)-bit Binary to excess 1 converter is used
instead of n-bit RCA with Cin=1. After that a multiplexer
selects the final sum and carry. In the case of two n-bit
addition the partial sums and partial carries that are
generated are S0, C0out for Cin=0 and Sin, C
1
out for Cin=1.
Equations from (5) to (9) presents the logical operations
relevant to theBEC[5]. Fig 10. showsa 16- bitCSLA using
BEC.
S
1
(0) =S
0
(0) ………………………(5)
C
1
(0) = S
0
(0) ………………………………..…(6)
S
1
(i) = S
0
(i)  C
1
(i-1)……….……..………(7)
C
1
(i) = S
0
(i).C
1
(i-1) ……………....……....(8)
C
1
out = C
0
(n-1) C
1
(n-1) ……………….….(9)
Fig-10:16-bit CLSA using BEC
2.5.1 Advantages & Disadvantages of a 16-bit CSLA
using BEC
The area efficiency of CSLA is more which consumes less
power than the previous model. BEC based 16-bit CSLAalso
has less delay than RCA. But unfortunately it has less
computational speed than conventional CSLA.
2.6 Modified CSLA using D-LATCH
As latches store one bit information, we, here use parallel
structure of D-Latches instead of traditional RCA structure,
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 181
either with the input of Cin=1 or Cin=0. The architecture has
been divided into five groups of different bit sized D-Latch
and RCA networks.In place of an n bit RCA structure, weare
using n D-Latches. The main difference with the traditional
Carry Select Adder model is thatinstead of theRCAstructure
with Cin we use enable pin, where enable signal is nothing
but a clock signal. The enable time period for ‘1’ is very less
when compared to the enable pin ‘0’. Initially RCA structure
will calculate for en=1 and then en =0 [7]. When enable pin
en =1, the RCA structure is calculated for Cin=1 storing the
result in a D-Latch [7]. When en =0, itwill calculateforCin=0.
The D-latch output and full adder output is given to the mux.
Using selection line proper output will be obtained.[6].So,in
this method weare usinga single RCA adder rather thantwo
separate adders, as used in the regular CSLA. This
replacement not only makes it more area efficient but also
reduces the power consumption. As each of the two
additions is performed in one clock cycle it has higher
computational speed. The architecture of a 16 bit Modified
CSLA using D-LATCH is shown in Fig. 11.
Fig-11:16-bit Modified CSLA using D-LATCH
3. PROPOSED HYBRID MODELS
3.1 Proposed CSA-CSkA Hybrid Adder
Considering the advantages of both CSA and CSkA, a
proposed hybrid 4 bit adder circuit as shown in fig.12.
3.1.1 Working process of the adder
A fulladder circuitwhile operating on two inputand a carry
in, produces a sum and carry out [1]. To operate on three
numbers we use the carry-in port as another input of
operand in carry save adder. In next stage we get a sum and
carryfromthefirst stage thatisactastwoinputsAandB[2].
To operate on two inputs we use a half adder by which we
can also reduce propagation delay. Now the halfadder gives
us the sum and a carry which will travel through the carry
skip adder circuit with skip logic.
Fig-12. 8-bit proposed circuit
3.1.2 Advantages of the proposed circuit
The proposed hybrid circuit is designed considering the
advantages of two adders. It has the capability of accepting
three inputs like CSA and like CSkAit can skipcarrytospeed
up the calculation process. In Carry Skip Adder, after first
stage we generally use a simple RCA for calculation. But
instead of that, here we use a CSkA which is far more
efficient than RCA in higher bit operations. In CSkAwe need
2 carry skip logic circuit in 4-bit operation. In our proposed
model only one skip block has been used which reduces the
circuit complexity.
3.2 Proposed CSA-CIA hybrid adder
This idea has been proposed to harness the advantages of
the Carry Save Adder and the Carry Increment Adder. An 8-
bit hybrid adder model is shown in Figure 13.
Fig. 13. 8 Bit Proposed Hybrid Adder
3.2.1 Working Principle of the CSA-CIA Hybrid
Adder
Carry Increment Adder shows the best performance in
propagation delay because of its increment block. So, in
the proposed adder we are having three inputs with an
incrementaddercircuit. Initiallyallthefulladdersoperate
in parallel and produce sum and carry which then passes
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 182
to the nextstage. Theadder split the operandsintoblocks
of 4-bit. So, every 4-bit block produces the sum and carry
at the simultaneously. Butwhenwegetthecarryoutfrom
the firststageitpropagatesto theincrementcircuit.InFig.
13. the red line demonstrates the path of carry
propagation. Unlike conventional CSAs, the proposed
adder circuit uses HA blocks for carry propagation in the
second stage which causes much less delay (Increment
Circuit).
Advantages of proposed hybrid adder
 It runs on three operands like a regular CSA.
 As carry propagates through the increment
circuit like a simple CIA, the propagation delay
is less than CSA.
 As the design needs less number of FA blocks
with respect to the CSA circuit, the circuit
complexity is less.
3.3 Modified CSLA
Our focus here will be to reduce the power consumption
and chip area and of the circuit. These problems mainly
arise due to high circuit complexity and increasing
number of transistors. Incarry selectadder,MUXcircuitis
used to select the perfect carry. In basic adder section we
haveshown that everyMUXgatecountis 3. Square Root(
SQRT)model showsa circuit sequencefor effectiveresult
with the drawbacks of large circuit area and high power
consumption. It needs 4 MUXs to design a normal 16-bit
CSLA adder. So we modify the earlier circuit and make it
use 3 MUXs. The enhanced circuit has been shown below
in Fig. 14.
Fig-14: Proposed circuit with modified SQRT sequence
For conventional CSLA circuit we have
Gate count = 57 (FA + HA + Mux) FA = 39 (3 * 13)
HA = 6 (1 * 6)
Mux = 12 (3 * 4).
Now we have made the same adder having
Gate count = 54 (FA + HA + Mux) FA = 39 (3 * 13)
HA = 6 (1 * 6)
Mux = 19 (3 * 3)
The simulation result of the proposed circuit in Xilinx ISE
14.7 has been in Fig. 15.
Fig-15: Proposed circuit with modified SQRT
sequence
4. RESULTS
In Table 1. we have compared different types of proposed
hybrid adder circuits from 8-bit to 64-bit with regards to
propagation delay, chip area and power consumption [11].
Table-1: Comparison of different types of proposed Hybrid
adder circuits
Bit
Size
Type of the
Adder
Delay
in ms
Power
in mW
Area in
nm2
8-bit Proposed
CSA-CSKA
Hybrid
Adder
3.245 9.56 824.96
Proposed
CSA-CIA
Hybrid
Adder
3.125 10.30 856.30
Modified
CSLA using
D- LATCH
2.15 12.94 914.75
16-bit Proposed
CSA-CSKA
Hybrid
Adder
5.32 21.94 1598.37
Proposed
CSA-CIA
Hybrid
Adder
4.74 23.50 1617.23
Modified
CSLA using
D- LATCH
2.98 27.45 1756.06
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 183
32-bit Proposed
CSA-CSKA
Hybrid
Adder
8.58 47.89 3175
Proposed
CSA-CIA
Hybrid
Adder
7.98 50.45 3244
Modified
CSLA using
D- LATCH
4.13 56.36 3489
64-bit Proposed
CSA-CSKA
Hybrid
Adder
18.69 97.5 6634
Proposed
CSA-CIA
Hybrid
Adder
15.64 99.85 6859
Modified
CSLA using
D- LATCH
4.821 104.85 7142.3
Graphsillustrating thetabular data hasbeendrawnforbetter
visualization and calculation
Chart-1: Delay Comparison of various adders
Chart-2: Power Comparison of various adders
Chart-3: Area Comparison of various adders
4.1 Delay Calculation
In the case of 16-bit and 64-bit three input hybrid adder
circuits (which we have previously designed), the CSA-CIA
Hybrid Adder is respectively 10.86% and 16.31% more
efficient than proposed CSA-CSkAHybrid Adder.FromTable
1. we can conclude that both for 16-bit or 32-bit systems,
Modified CSLA using D-LATCH has least delay thoughithasa
drawback that it can only operate on two inputs.
4.2 Power calculation
In the hybrid adder circuits, which we have previously
designed, proposedCSA-CSkAHybridAdderhaslessnumber
of high power consuming gates. For 16-bit it is 6.60% and
20.1% more power efficient than proposed CSA-CIA Hybrid
Adder and ModifiedCSLA usingD-LATCHrespectively.Inthe
case of 64-bit it is 2.36% and 7.02% more power efficient
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 184
than the CSA-CIA Hybrid Adder and Modified CSLA using D-
LATCH.
4.3 Area calculation
Fromtheabove mentionedTable 1. wecanconclude thatthe
proposed 16-bit CSA-CSkA Hybrid Adder is 98.8% and
91.08% area efficient than proposed CSA-CIA Hybrid Adder
and Modified CSLA using D-LATCH respectively. It is also
2.13% and 9.1% area efficient than the others in case of 32
bit system.
5. CONCLUSION
In this experimental paper, we have compared between
CSA-CSKA hybrid Adder [2], CSA-CIA hybrid Adder and
Modified CSLA using D-LATCH. Among them Modified CSLA
using D-LATCH and CSA-CIA Hybrid Adder has less delay in
the case oftwoinputandthree input operation respectively.
CSA-CSkA Hybrid Adder of 16-bit and 32-bit consumes less
powercompared to other proposedadder.Inthecaseofarea
efficiency CSA-CSkA Hybrid Adder is preferred over others.
The future aspects of this paper are based on the
improvement of thedrawbacksofthe proposedaddersinits
own respective flaws.
REFERENCES
[1] Salivahanan, S. “Digital Circuit and Design”, Fourth
edition,2012.
[2] Sarkar, S., & Mehedi, J. “ Design of Hybrid (CSA-
CSkA) Adder for Improvement of Propagation
Delay” in Third IEEE International Conference on
Research in Computational Intelligence and
Communication Networks (ICRCICN), pp 332-336,
West Bengal, India, Nov 2017
[3] Kumar, M. S., & Samundiswary, P. “Design and
Performance Analysis of Various Adders using
Verilog”, International Journal ofComputerScience
and Mobile Computing A Monthly Journal of
Computer Science and Information Technology
ISSN 2320–088X IJCSMC, Vol. 2, Issue. 9,September
2013, pg.128 – 138.
[4] Fatima, R., Ahmed, P. R. “Efficient Implementation
on Carry Select Adder Using Sum and Carry
Generation Unit”, International Journal of
Engineering Research and Technology, Volume
3,Issue 9, September,2015, PP 77-82,ISSN 2349-
4395(Print) & ISSN 2349- 4409 (Online)
[5] Kumar, G. K., & Balaji, N. “Reconfigurable Delay
Optimized Carry Select Adder”, ProceedingsofIEEE
International Conference on Innovations in
Electrical, Electronics, Instrumentation and Media
Technology ICIEEIMT 17.
[6] adin, J. P., & Palaniappan, C. “An Area and Delay
Efficient Csla Architecture”, IOSR Journal of
Electronics and Communication Engineering,
Volume 5, Issue 3 (Mar.- Apr.2013), PP 20-25.
[7] Reddy, G. K., & Rao, D. S. B. (2015). A comparative
study on low-power and high speed Carry Select
Adder. 2015 IEEE 9th International Conference on
Intelligent Systems and Control (ISCO).
[8] Javali, R. A., Nayak, R.J., Mhetar, A. M., Lakkannavar,
M. C. “Design ofHigh Speed Carry Save Adder using
Carry Lookahead Adder”, Proceedings of
International Conference on Circuits,
Communication, Control and Computing(I4C2014)
[9] A. Sai Ramya, Mounica CAN, BSSV Ramesh Babu,
“Performance analysis of different 8-bit Full
adders”, IOSR Journal of VLSI and Signal Processing
( IOSR-JVSP ) Volume 5, Issue 4, Ver.II (July-Aug.
2015), PP 35-39 e-ISSN: 2319-4200, p-ISSN No. :
2319-4197
[10] Kaur, J., & Sood, L. “Comparison Between Various
Types of Adder Topologies”, IJCST Vol. 6,Issue1,Jan
- March 2015 ISSN : 0976- 8491 (Online) | ISSN :
2229-4333 (Print), 62 International Journal of
Computer Science and Technology
[11] Panda, S., Banerjee, A., Majhi, B., Mukhopadhyay, A.
K. “Power and Delay Comparison in between
different types ofFull AdderCircuits”, International
Journal of Advanced Research in Electrical,
Electronicsandinstrumentation EngineeringVol.1,
Issue 3, September 2012, ISSN 2278-8875.
BIOGRAPHY
Diptangshu Chattopadhyay is a pre
final year student pursuing his
B.Tech in ECE from Jalpaiguri
Government Engineering College.
Hisarea ofinterest includeWireless
Communication Networks, Digital
electronics and VLSI.
Avinaba Tapadar is a Final year
undergraduate student pursuing
B.Tech in ECE from Jalpaiguri
Government Engineering College.
His areas of interest include Digital
System designing, VLSI physical
design and verification.
Sujan Sarkar has completed his
B.Tech in Electronics and
Communication Engineering from
Jalpaiguri Government Engineering
College. Hisareas ofinterest include
Digital Circuit Design, VLSI system
design, IC fabrication,
Communication System, Digital
Image processing.

More Related Content

What's hot

Design and Verification of Area Efficient Carry Select Adder
Design and Verification of Area Efficient Carry Select AdderDesign and Verification of Area Efficient Carry Select Adder
Design and Verification of Area Efficient Carry Select Adder
ijsrd.com
 
Final ppt
Final pptFinal ppt
Implementation of Low Power and Area Efficient Carry Select Adder
Implementation of Low Power and Area Efficient Carry Select AdderImplementation of Low Power and Area Efficient Carry Select Adder
Implementation of Low Power and Area Efficient Carry Select Adder
inventionjournals
 
Area–delay–power efficient carry select adder
Area–delay–power efficient carry select adderArea–delay–power efficient carry select adder
Area–delay–power efficient carry select adder
LogicMindtech Nologies
 
Design and Implementation of Low-Power and Area-Efficient 64 bit CSLA using VHDL
Design and Implementation of Low-Power and Area-Efficient 64 bit CSLA using VHDLDesign and Implementation of Low-Power and Area-Efficient 64 bit CSLA using VHDL
Design and Implementation of Low-Power and Area-Efficient 64 bit CSLA using VHDL
IJSRD
 
A Novel Efficient VLSI Architecture Modified 16-B SQRT Carry Select Adder
A Novel Efficient VLSI Architecture Modified 16-B SQRT Carry Select AdderA Novel Efficient VLSI Architecture Modified 16-B SQRT Carry Select Adder
A Novel Efficient VLSI Architecture Modified 16-B SQRT Carry Select Adder
IJERD Editor
 
M367578
M367578M367578
M367578
IJERA Editor
 
IRJET - A Speculative Approximate Adder for Error Recovery Unit
IRJET - A Speculative Approximate Adder for Error Recovery UnitIRJET - A Speculative Approximate Adder for Error Recovery Unit
IRJET - A Speculative Approximate Adder for Error Recovery Unit
IRJET Journal
 
IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...
IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...
IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...
IRJET Journal
 
Hybrid Adder
Hybrid AdderHybrid Adder
Hybrid Adder
Guru Prasanth
 
Design and development of carry select adder
Design and development of carry select adderDesign and development of carry select adder
Design and development of carry select adder
ABIN THOMAS
 
Bit Serial multiplier using Verilog
Bit Serial multiplier using VerilogBit Serial multiplier using Verilog
Bit Serial multiplier using Verilog
BhargavKatkam
 
Efficient Design of Ripple Carry Adder and Carry Skip Adder with Low Quantum ...
Efficient Design of Ripple Carry Adder and Carry Skip Adder with Low Quantum ...Efficient Design of Ripple Carry Adder and Carry Skip Adder with Low Quantum ...
Efficient Design of Ripple Carry Adder and Carry Skip Adder with Low Quantum ...
IJERA Editor
 
Implementation of Carry Skip Adder using PTL
Implementation of Carry Skip Adder using PTLImplementation of Carry Skip Adder using PTL
Implementation of Carry Skip Adder using PTL
IRJET Journal
 
Cmos Arithmetic Circuits
Cmos Arithmetic CircuitsCmos Arithmetic Circuits
Cmos Arithmetic Circuits
ankitgoel
 
Mini Project on 4 BIT SERIAL MULTIPLIER
Mini Project on 4 BIT SERIAL MULTIPLIERMini Project on 4 BIT SERIAL MULTIPLIER
Mini Project on 4 BIT SERIAL MULTIPLIER
j naga sai
 
Optimized Carry Speculative Adder
Optimized Carry Speculative AdderOptimized Carry Speculative Adder
Optimized Carry Speculative Adder
ijtsrd
 
Q010228189
Q010228189Q010228189
Q010228189
IOSR Journals
 
Area-Delay Efficient Binary Adders in QCA
Area-Delay Efficient Binary Adders in QCAArea-Delay Efficient Binary Adders in QCA
Area-Delay Efficient Binary Adders in QCA
IJERA Editor
 

What's hot (20)

Design and Verification of Area Efficient Carry Select Adder
Design and Verification of Area Efficient Carry Select AdderDesign and Verification of Area Efficient Carry Select Adder
Design and Verification of Area Efficient Carry Select Adder
 
Final ppt
Final pptFinal ppt
Final ppt
 
Implementation of Low Power and Area Efficient Carry Select Adder
Implementation of Low Power and Area Efficient Carry Select AdderImplementation of Low Power and Area Efficient Carry Select Adder
Implementation of Low Power and Area Efficient Carry Select Adder
 
carry select adder
carry select addercarry select adder
carry select adder
 
Area–delay–power efficient carry select adder
Area–delay–power efficient carry select adderArea–delay–power efficient carry select adder
Area–delay–power efficient carry select adder
 
Design and Implementation of Low-Power and Area-Efficient 64 bit CSLA using VHDL
Design and Implementation of Low-Power and Area-Efficient 64 bit CSLA using VHDLDesign and Implementation of Low-Power and Area-Efficient 64 bit CSLA using VHDL
Design and Implementation of Low-Power and Area-Efficient 64 bit CSLA using VHDL
 
A Novel Efficient VLSI Architecture Modified 16-B SQRT Carry Select Adder
A Novel Efficient VLSI Architecture Modified 16-B SQRT Carry Select AdderA Novel Efficient VLSI Architecture Modified 16-B SQRT Carry Select Adder
A Novel Efficient VLSI Architecture Modified 16-B SQRT Carry Select Adder
 
M367578
M367578M367578
M367578
 
IRJET - A Speculative Approximate Adder for Error Recovery Unit
IRJET - A Speculative Approximate Adder for Error Recovery UnitIRJET - A Speculative Approximate Adder for Error Recovery Unit
IRJET - A Speculative Approximate Adder for Error Recovery Unit
 
IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...
IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...
IRJET- A Review of Approximate Adders for Energy-Efficient Digital Signal Pro...
 
Hybrid Adder
Hybrid AdderHybrid Adder
Hybrid Adder
 
Design and development of carry select adder
Design and development of carry select adderDesign and development of carry select adder
Design and development of carry select adder
 
Bit Serial multiplier using Verilog
Bit Serial multiplier using VerilogBit Serial multiplier using Verilog
Bit Serial multiplier using Verilog
 
Efficient Design of Ripple Carry Adder and Carry Skip Adder with Low Quantum ...
Efficient Design of Ripple Carry Adder and Carry Skip Adder with Low Quantum ...Efficient Design of Ripple Carry Adder and Carry Skip Adder with Low Quantum ...
Efficient Design of Ripple Carry Adder and Carry Skip Adder with Low Quantum ...
 
Implementation of Carry Skip Adder using PTL
Implementation of Carry Skip Adder using PTLImplementation of Carry Skip Adder using PTL
Implementation of Carry Skip Adder using PTL
 
Cmos Arithmetic Circuits
Cmos Arithmetic CircuitsCmos Arithmetic Circuits
Cmos Arithmetic Circuits
 
Mini Project on 4 BIT SERIAL MULTIPLIER
Mini Project on 4 BIT SERIAL MULTIPLIERMini Project on 4 BIT SERIAL MULTIPLIER
Mini Project on 4 BIT SERIAL MULTIPLIER
 
Optimized Carry Speculative Adder
Optimized Carry Speculative AdderOptimized Carry Speculative Adder
Optimized Carry Speculative Adder
 
Q010228189
Q010228189Q010228189
Q010228189
 
Area-Delay Efficient Binary Adders in QCA
Area-Delay Efficient Binary Adders in QCAArea-Delay Efficient Binary Adders in QCA
Area-Delay Efficient Binary Adders in QCA
 

Similar to IRJET- Implementation and Analysis of Hybridization in Modified Parallel Adder Circuits

IRJET - High Speed Inexact Speculative Adder using Carry Look Ahead Adder...
IRJET -  	  High Speed Inexact Speculative Adder using Carry Look Ahead Adder...IRJET -  	  High Speed Inexact Speculative Adder using Carry Look Ahead Adder...
IRJET - High Speed Inexact Speculative Adder using Carry Look Ahead Adder...
IRJET Journal
 
A Comparative Analysis on Parameters of Different Adder Topologies
A Comparative Analysis on Parameters of Different Adder TopologiesA Comparative Analysis on Parameters of Different Adder Topologies
A Comparative Analysis on Parameters of Different Adder Topologies
IRJET Journal
 
IRJET- FPGA Implementation of High Speed and Low Power Speculative Adder
IRJET-  	  FPGA Implementation of  High Speed and Low Power Speculative AdderIRJET-  	  FPGA Implementation of  High Speed and Low Power Speculative Adder
IRJET- FPGA Implementation of High Speed and Low Power Speculative Adder
IRJET Journal
 
IRJET- Comparative Study of Implementation of 8-Bit Carry Select Adder us...
IRJET-  	  Comparative Study of Implementation of 8-Bit Carry Select Adder us...IRJET-  	  Comparative Study of Implementation of 8-Bit Carry Select Adder us...
IRJET- Comparative Study of Implementation of 8-Bit Carry Select Adder us...
IRJET Journal
 
IRJET - Low Power Design for Fast Full Adder
IRJET -  	  Low Power Design for Fast Full AdderIRJET -  	  Low Power Design for Fast Full Adder
IRJET - Low Power Design for Fast Full Adder
IRJET Journal
 
MODIFIED CARRY SELECT ADDER WITH BKA AND MGDI TECHNIQUE
MODIFIED CARRY SELECT ADDER WITH BKA AND MGDI TECHNIQUEMODIFIED CARRY SELECT ADDER WITH BKA AND MGDI TECHNIQUE
MODIFIED CARRY SELECT ADDER WITH BKA AND MGDI TECHNIQUE
IRJET Journal
 
Design & implementation of 16 bit low power ALU with clock gating
Design & implementation of 16 bit low power ALU with clock gatingDesign & implementation of 16 bit low power ALU with clock gating
Design & implementation of 16 bit low power ALU with clock gating
IRJET Journal
 
IRJET- An Efficient Wallace Tree Multiplier using Modified Adder
IRJET- An Efficient Wallace Tree Multiplier using Modified AdderIRJET- An Efficient Wallace Tree Multiplier using Modified Adder
IRJET- An Efficient Wallace Tree Multiplier using Modified Adder
IRJET Journal
 
Design & Simulation of Half Adder Circuit using AVL Technique Based on CMOS T...
Design & Simulation of Half Adder Circuit using AVL Technique Based on CMOS T...Design & Simulation of Half Adder Circuit using AVL Technique Based on CMOS T...
Design & Simulation of Half Adder Circuit using AVL Technique Based on CMOS T...
IRJET Journal
 
Design and Implementation of Different types of Carry skip adder
Design and Implementation of Different types of Carry skip adderDesign and Implementation of Different types of Carry skip adder
Design and Implementation of Different types of Carry skip adder
IRJET Journal
 
Design and Development of 4-Bit Adder Programmable QCA Design using ALU Techn...
Design and Development of 4-Bit Adder Programmable QCA Design using ALU Techn...Design and Development of 4-Bit Adder Programmable QCA Design using ALU Techn...
Design and Development of 4-Bit Adder Programmable QCA Design using ALU Techn...
IRJET Journal
 
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDERDESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
VLSICS Design
 
Hardware Implementation of Two’s Compliment Multiplier with Partial Product b...
Hardware Implementation of Two’s Compliment Multiplier with Partial Product b...Hardware Implementation of Two’s Compliment Multiplier with Partial Product b...
Hardware Implementation of Two’s Compliment Multiplier with Partial Product b...
IJERA Editor
 
High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...
High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...
High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...
IJERA Editor
 
128-Bit Area Efficient Reconfigurable Carry Select Adder
128-Bit Area Efficient Reconfigurable Carry Select Adder 128-Bit Area Efficient Reconfigurable Carry Select Adder
128-Bit Area Efficient Reconfigurable Carry Select Adder
ijcisjournal
 
Analysis of different bit carry look ahead adder using verilog code 2
Analysis of different bit carry look ahead adder using verilog code 2Analysis of different bit carry look ahead adder using verilog code 2
Analysis of different bit carry look ahead adder using verilog code 2IAEME Publication
 
Design and Implementation of an Efficient Carry Skip Adder
Design and Implementation of an Efficient Carry Skip AdderDesign and Implementation of an Efficient Carry Skip Adder
Design and Implementation of an Efficient Carry Skip Adder
IRJET Journal
 
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDERDESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
VLSICS Design
 
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
IRJET Journal
 
Design and implementation of Closed Loop Control of Three Phase Interleaved P...
Design and implementation of Closed Loop Control of Three Phase Interleaved P...Design and implementation of Closed Loop Control of Three Phase Interleaved P...
Design and implementation of Closed Loop Control of Three Phase Interleaved P...
IJMTST Journal
 

Similar to IRJET- Implementation and Analysis of Hybridization in Modified Parallel Adder Circuits (20)

IRJET - High Speed Inexact Speculative Adder using Carry Look Ahead Adder...
IRJET -  	  High Speed Inexact Speculative Adder using Carry Look Ahead Adder...IRJET -  	  High Speed Inexact Speculative Adder using Carry Look Ahead Adder...
IRJET - High Speed Inexact Speculative Adder using Carry Look Ahead Adder...
 
A Comparative Analysis on Parameters of Different Adder Topologies
A Comparative Analysis on Parameters of Different Adder TopologiesA Comparative Analysis on Parameters of Different Adder Topologies
A Comparative Analysis on Parameters of Different Adder Topologies
 
IRJET- FPGA Implementation of High Speed and Low Power Speculative Adder
IRJET-  	  FPGA Implementation of  High Speed and Low Power Speculative AdderIRJET-  	  FPGA Implementation of  High Speed and Low Power Speculative Adder
IRJET- FPGA Implementation of High Speed and Low Power Speculative Adder
 
IRJET- Comparative Study of Implementation of 8-Bit Carry Select Adder us...
IRJET-  	  Comparative Study of Implementation of 8-Bit Carry Select Adder us...IRJET-  	  Comparative Study of Implementation of 8-Bit Carry Select Adder us...
IRJET- Comparative Study of Implementation of 8-Bit Carry Select Adder us...
 
IRJET - Low Power Design for Fast Full Adder
IRJET -  	  Low Power Design for Fast Full AdderIRJET -  	  Low Power Design for Fast Full Adder
IRJET - Low Power Design for Fast Full Adder
 
MODIFIED CARRY SELECT ADDER WITH BKA AND MGDI TECHNIQUE
MODIFIED CARRY SELECT ADDER WITH BKA AND MGDI TECHNIQUEMODIFIED CARRY SELECT ADDER WITH BKA AND MGDI TECHNIQUE
MODIFIED CARRY SELECT ADDER WITH BKA AND MGDI TECHNIQUE
 
Design & implementation of 16 bit low power ALU with clock gating
Design & implementation of 16 bit low power ALU with clock gatingDesign & implementation of 16 bit low power ALU with clock gating
Design & implementation of 16 bit low power ALU with clock gating
 
IRJET- An Efficient Wallace Tree Multiplier using Modified Adder
IRJET- An Efficient Wallace Tree Multiplier using Modified AdderIRJET- An Efficient Wallace Tree Multiplier using Modified Adder
IRJET- An Efficient Wallace Tree Multiplier using Modified Adder
 
Design & Simulation of Half Adder Circuit using AVL Technique Based on CMOS T...
Design & Simulation of Half Adder Circuit using AVL Technique Based on CMOS T...Design & Simulation of Half Adder Circuit using AVL Technique Based on CMOS T...
Design & Simulation of Half Adder Circuit using AVL Technique Based on CMOS T...
 
Design and Implementation of Different types of Carry skip adder
Design and Implementation of Different types of Carry skip adderDesign and Implementation of Different types of Carry skip adder
Design and Implementation of Different types of Carry skip adder
 
Design and Development of 4-Bit Adder Programmable QCA Design using ALU Techn...
Design and Development of 4-Bit Adder Programmable QCA Design using ALU Techn...Design and Development of 4-Bit Adder Programmable QCA Design using ALU Techn...
Design and Development of 4-Bit Adder Programmable QCA Design using ALU Techn...
 
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDERDESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
 
Hardware Implementation of Two’s Compliment Multiplier with Partial Product b...
Hardware Implementation of Two’s Compliment Multiplier with Partial Product b...Hardware Implementation of Two’s Compliment Multiplier with Partial Product b...
Hardware Implementation of Two’s Compliment Multiplier with Partial Product b...
 
High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...
High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...
High Speed and Area Efficient Booth Multiplier Using SQRT CSLA with Zero Find...
 
128-Bit Area Efficient Reconfigurable Carry Select Adder
128-Bit Area Efficient Reconfigurable Carry Select Adder 128-Bit Area Efficient Reconfigurable Carry Select Adder
128-Bit Area Efficient Reconfigurable Carry Select Adder
 
Analysis of different bit carry look ahead adder using verilog code 2
Analysis of different bit carry look ahead adder using verilog code 2Analysis of different bit carry look ahead adder using verilog code 2
Analysis of different bit carry look ahead adder using verilog code 2
 
Design and Implementation of an Efficient Carry Skip Adder
Design and Implementation of an Efficient Carry Skip AdderDesign and Implementation of an Efficient Carry Skip Adder
Design and Implementation of an Efficient Carry Skip Adder
 
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDERDESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
DESIGN AND IMPLEMENTATION OF AN IMPROVED CARRY INCREMENT ADDER
 
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
High Speed and Area Efficient Matrix Multiplication using Radix-4 Booth Multi...
 
Design and implementation of Closed Loop Control of Three Phase Interleaved P...
Design and implementation of Closed Loop Control of Three Phase Interleaved P...Design and implementation of Closed Loop Control of Three Phase Interleaved P...
Design and implementation of Closed Loop Control of Three Phase Interleaved P...
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
IRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
IRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
IRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
IRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
IRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
IRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
ongomchris
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
MdTanvirMahtab2
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
manasideore6
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
ViniHema
 
Standard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - NeometrixStandard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
Vijay Dialani, PhD
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 

Recently uploaded (20)

一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
power quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptxpower quality voltage fluctuation UNIT - I.pptx
power quality voltage fluctuation UNIT - I.pptx
 
Standard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - NeometrixStandard Reomte Control Interface - Neometrix
Standard Reomte Control Interface - Neometrix
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 
road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 

IRJET- Implementation and Analysis of Hybridization in Modified Parallel Adder Circuits

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 177 Implementation and Analysis of Hybridization in Modified Parallel Adder Circuits Diptangshu Chattopadhyay1, Avinaba Tapadar2, Sujan Sarkar3 1 UG Student, Dept. of ECE, Jalpaiguri Government Engineering College, West Bengal, India 2 UG Student, Dept. of ECE, Jalpaiguri Government Engineering College, West Bengal, India 3 B.Tech, ECE, Jalpaiguri Government Engineering College, West Bengal, India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract—In today’s electronic world, we need a perfect balance between device speed, power and area efficient path. Most of the computational components contain adder circuits in them which greatly affects the operation time. The number of transistors in the VLSI circuit can only be reduced up to a certain limit. So, to increase the efficiency there is a need for modification and hybridization of different adders. SQRT is a significant model. Adders like CSA-CSkA hybridadder,CSA-CIA hybrid adder and modified CSLA using D-LATCH have been compared here on the basis of delay, power consumption and area calculations. Verilog hardware description language (HDL) was used for coding and the simulation was done with the support of Xilinx ISE 14.7 environment. The paper focuses on the comparative study between adders. At the end, we are successful in figuring out the adder taking the least amount of delay, area and power consumption. Keywords—Modified Adder, Ripple Carry Adder (RCA), Carry Save Adder (CSA), Carry Skip Adder (CSkA), Carry Increment Adder (CIA), Propagation Delay, Area efficient, Power consumption, Hybrid Adder. 1. INTRODUCTION Fromlastfew yearsweare witnessinga switchfrom32bitto 64 bit microprocessors and even more. With a thriving demand for speed centric technologies, Very Large Scale Integration (VLSI) has become the most sought after field of research for designingarea and power efficient system with high speed data path logic. But maintaining a balance between the parameters is highly important. To make the VLSI circuitmore portable with low computationaldelay,we try to modify the fundamentally important adder circuits present in them. Calculations like division, multiplication, addition, subtraction, andlogicaloperationssuchasINV,OR, AND can be encompassed by the basic adder circuits included in the Arithmetic Logic Unit (ALU). Half adder was the first proposed adder with two operands, output sum and carry [1]. Following the success of half adder, a full adder circuitwas proposed with 3 operands. At the output side we have the sum and carry, very much similar to that of half adder. We can have Cin as the third input. A single circuit’s operation is limited to a single bit addition. To remove this drawback and perform multi-bit operation we have to connect a number of Full Adders in parallel combination which is nothing but a Ripple Carry Adder (RCA) model. In the case of high speed computation there is an issue of time lag in propagating the carry generated in (n-1)th block to (n)th block of the adder. Modified adders like Carry Look Ahead Adder (CLA), Carry Save Adder (CSA) [6] [8], Carry Skip Adder (CSkA) [8] [9], CarrySelectAdder (CSLA), andCarryIncrementAdder (CIA) have been designed so far [9] [10]. There are also a number of hybrid adders like CIA-CLA and CIA-RCA with less delay and penalty of more power consumption. Keeping in mind both the advantages and disadvantages of CSA and CSkA, the Proposed CSA-CSkA Hybrid Adder is designed such a way that it can operate on three inputs to speed up the calculation. Here CSkA is used instead of a simple RCA after the first stage because it is more efficient than RCA in higher bit operations. We reduce the circuit complexity by using only one skip block [2]. Similarly to reduce complexity in our proposed CSA-CIA Hybrid Adder, less number of FA blocks has been used compared to that in simple CSAcircuit. Inour ModifiedCSAwehave used Square Root (SQRT) technique to make it morearea efficient as well as power efficient. 2. BASIC CONCEPTS 2.1 Ripple Carry Adder (RCA) The full adder’s computation process accepts two one-bit inputs at a time. To solve this drawback, we have to use Ripple Carry Adder. Basically Ripple Carry Adder is a
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 178 combination ofmultiple Full Adder blockscascadedinseries. RCA is designed in sucha way that thecarrygenerated in(n- 1)th block to (n)th block of the adder. Fig. 1. shows a conventional 4-Bit Ripple Carry Adder. Fig.-1: A 4-Bit conventional RCA Let us perform an addition operation which will involve two 4-bit input with A = 1 1 0 0 and B = 1 0 0 1. In the first stage, addition will occur taking inputs A0 = 0 and B0 = 1 (Right extreme end). WewillgetS0 =1andC1=0. C1 willpropagateto the next block. So for the second Full Adder block the inputs will be A1= 0, B1= 0 and C1= 0 which in turn will generate S1 =0 and C2 = 0. This will propagate like the previous stage. Successively wewill haveS2=1, C3 =0and S3=0and carry-out (C4) =1 as an ultimate output. 1 1 0 0 + 1 0 0 1 ____________________________ 1 0 1 0 1 S3 S2 S1 S0 In this case carry-out=1 2.1.1 Advantages & disadvantages of RCA Having lesscircuitcomplexitymakesitsimple tofabricate.In fact it has the simplest design amongst all multiple bit adder circuits. But unfortunately it faces disadvantages too. The maincauseofits huge delayisdue tothe propagationofcarry generated in each block, to the next block. So for N-bit addition we have to use N number of Full adder blocks. As a result, with the increase in bit size, overall delay and power consumptionincreases. TheTotal delay(Td)ofaRippleCarry Adder is given by Td= (N-1)tc + ts. Here N is the total number ofgates used ina RCA, tcand ts denotes thecarrypropagation delay and sum propagation delay. Its delay can be functionalized by O(n) where n is number of bits. Fig. 2. Showsa RegisterTransferLevel (RTL)Schematic diagramof a 8-bit RCA. Fig-2: RTL Schematic diagram of 8-bit RCA 2.2 Carry Save Adder (CSA) Basically a Carry Save Adder is a combination of RCA. But rather than propagating the carry, CSA saves it and calculates it later. Let us imagine that we have to add three numbers A, B, and C. Carry Save Adder arranges it into the form A+ B+ C = S + C. CSA has n number of full adder which perform the separate summation and develops the carry individually. After shifting the carry on the left side we can calculate the entire sum. The schematic diagramoftheCarry Save Adder is shown in Fig. 3. Fig-3: 4-bit Carry Save Adder 2.2.1 Advantages & Disadvantages of CSA In a CSA, 3 different inputs can be calculated at a time. Instead of propagating the carry through next stage, it gets stored in present stage, and updated as addend value in the next stage. The delay is O(log N). But there are certain disadvantages too. For lower bit operations its propagation delay and power consumptions is high. So it is only effective for higher bit operations. The area is also high for the high number of transistor. Fig.4. shows a RTL schematic of an 8- bit CSA adder.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 179 Fig-4: RTL schematic of 8-bit CSA adder 2.3 Carry Skip Adder (CSkA) A Carry Skip Adder is also called as Carry Bypass Adder. It improves the delay of a RCA with very little modification. CarrySkip Adder(CSkA)usesskip logic in the propagationof carry. For each input bit pair operands, the propagation- conditions are determined using an XOR gate. When all propagate conditions are true(1), then carry-in bit decides the carry-out bit. A standard n bit CSkA contains n bit carry ripple chain, an n-input AND gate and a multiplexer. Carry skip adder has delay in the order of O(n). Bowing down to increasing demand for fast computational speed, most PCs nowadays work on 64 bit architecture or above. As it has a greatresponseinhigherbit, CSkAs hasbeenacceptedwidely [2]. Fig. 5. Illustrates a 8 bit Carry Skip Adder. Fig.-5: 8-bit Carry Skip Adder 2.3.1 Skip Logic Circuit Fig. 6. Showsthe theskip logic circuit ofa 2-bitoperation.The circuit uses a MUX [3]. It can also be replaced by an OR gate. Fig. 6: 2-bit Carry Skip Circuit with Skip Logic 2.3.2 Advantages & Disadvantages of CSkA CSkA is highly efficient for higher bit operations. Its skip logic makes it much faster than other available adders. The Pi logic circuit can be obtained from the Full Adder circuit itself. But for a 4-bit operation we have to use 2 carry skip logic circuits, making it consume more power. In case of lower bit operation also, it has high power, delay and area making it highly unsuitable. Fig.7. shows a RTL schematic of a 8-bit CSkA. Fig-7:RTL schematic of 8-bit CSkA 2.4 Carry Increment Adder ( CIA ) Carry Increment Adder is nothing but a combination of two RCA circuit with an additional carry increment circuit. Two 4-bit RCA circuits are required to design an 8-bit CIA. Each block of 4 bit RCA circuit processes the partial sum and generates partial carry. It is then propagated to the incremental circuit located separately. The first 4 sum from the Ripple Carry Adder is directly taken from the block, but the rest is calculated from the carry-out of the first blockand the remaining input throughconditionalincrementalcircuit. Second block will operate by summing and creating carry- out. As the incremental circuit contains Half Adder, it has less delay than simple RCA. The diagram is shown in Fig.8.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 180 Fig-8: Carry Increment Adder The operation iscarried out in parallel by 2 blocks of 4-bit RCAand thecarryout of thefirstblockistransferredtothe increment circuit. Increment adder is shown in Figure 9. Fig-9: 4 Bit Increment Adder 2.4.1 Advantages & Disadvantages of CIA Half Adder (HA) blocks are used by CIA for carry propagation. We know thatcarry propagation in HAismuch faster than that of Full Adder (FA). That’s why total propagation delay in CIA is much less that other adders. It has less circuit complexity and is effective in higher bit operation. But as CIA needs an additional carry increment circuit, higher power consumption than RCA becomes a major drawback. Chip area is higher than that of a similar n- bit RCA circuit. In lower bit operation, it is not much competent. 2.5 Carry Select Adder using Binary to Excess Converter The main drawback of conventional CSLA is its large area than other multi-bit adder circuits. To make it area efficient an (n+1)-bit Binary to excess 1 converter is used instead of n-bit RCA with Cin=1, Then the area count of group 2 is determined as follows [4]: Gate count = 43 (FA + HA + Mux + BEC) FA = 13 (1 *13) HA = 6 (1 * 6) Mux = 12 (3 * 4) NOT = 1 AND = 1 XOR = 10 (2 * 5) BEC (3-BIT) = NOT + AND + XOR = 12 In every group each of the Ripple Carry Adder will generate partial sum and carry taking carry input as Cin = 0. An (n+1)-bit Binary to excess 1 converter is used instead of n-bit RCA with Cin=1. After that a multiplexer selects the final sum and carry. In the case of two n-bit addition the partial sums and partial carries that are generated are S0, C0out for Cin=0 and Sin, C 1 out for Cin=1. Equations from (5) to (9) presents the logical operations relevant to theBEC[5]. Fig 10. showsa 16- bitCSLA using BEC. S 1 (0) =S 0 (0) ………………………(5) C 1 (0) = S 0 (0) ………………………………..…(6) S 1 (i) = S 0 (i)  C 1 (i-1)……….……..………(7) C 1 (i) = S 0 (i).C 1 (i-1) ……………....……....(8) C 1 out = C 0 (n-1) C 1 (n-1) ……………….….(9) Fig-10:16-bit CLSA using BEC 2.5.1 Advantages & Disadvantages of a 16-bit CSLA using BEC The area efficiency of CSLA is more which consumes less power than the previous model. BEC based 16-bit CSLAalso has less delay than RCA. But unfortunately it has less computational speed than conventional CSLA. 2.6 Modified CSLA using D-LATCH As latches store one bit information, we, here use parallel structure of D-Latches instead of traditional RCA structure,
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 181 either with the input of Cin=1 or Cin=0. The architecture has been divided into five groups of different bit sized D-Latch and RCA networks.In place of an n bit RCA structure, weare using n D-Latches. The main difference with the traditional Carry Select Adder model is thatinstead of theRCAstructure with Cin we use enable pin, where enable signal is nothing but a clock signal. The enable time period for ‘1’ is very less when compared to the enable pin ‘0’. Initially RCA structure will calculate for en=1 and then en =0 [7]. When enable pin en =1, the RCA structure is calculated for Cin=1 storing the result in a D-Latch [7]. When en =0, itwill calculateforCin=0. The D-latch output and full adder output is given to the mux. Using selection line proper output will be obtained.[6].So,in this method weare usinga single RCA adder rather thantwo separate adders, as used in the regular CSLA. This replacement not only makes it more area efficient but also reduces the power consumption. As each of the two additions is performed in one clock cycle it has higher computational speed. The architecture of a 16 bit Modified CSLA using D-LATCH is shown in Fig. 11. Fig-11:16-bit Modified CSLA using D-LATCH 3. PROPOSED HYBRID MODELS 3.1 Proposed CSA-CSkA Hybrid Adder Considering the advantages of both CSA and CSkA, a proposed hybrid 4 bit adder circuit as shown in fig.12. 3.1.1 Working process of the adder A fulladder circuitwhile operating on two inputand a carry in, produces a sum and carry out [1]. To operate on three numbers we use the carry-in port as another input of operand in carry save adder. In next stage we get a sum and carryfromthefirst stage thatisactastwoinputsAandB[2]. To operate on two inputs we use a half adder by which we can also reduce propagation delay. Now the halfadder gives us the sum and a carry which will travel through the carry skip adder circuit with skip logic. Fig-12. 8-bit proposed circuit 3.1.2 Advantages of the proposed circuit The proposed hybrid circuit is designed considering the advantages of two adders. It has the capability of accepting three inputs like CSA and like CSkAit can skipcarrytospeed up the calculation process. In Carry Skip Adder, after first stage we generally use a simple RCA for calculation. But instead of that, here we use a CSkA which is far more efficient than RCA in higher bit operations. In CSkAwe need 2 carry skip logic circuit in 4-bit operation. In our proposed model only one skip block has been used which reduces the circuit complexity. 3.2 Proposed CSA-CIA hybrid adder This idea has been proposed to harness the advantages of the Carry Save Adder and the Carry Increment Adder. An 8- bit hybrid adder model is shown in Figure 13. Fig. 13. 8 Bit Proposed Hybrid Adder 3.2.1 Working Principle of the CSA-CIA Hybrid Adder Carry Increment Adder shows the best performance in propagation delay because of its increment block. So, in the proposed adder we are having three inputs with an incrementaddercircuit. Initiallyallthefulladdersoperate in parallel and produce sum and carry which then passes
  • 6. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 182 to the nextstage. Theadder split the operandsintoblocks of 4-bit. So, every 4-bit block produces the sum and carry at the simultaneously. Butwhenwegetthecarryoutfrom the firststageitpropagatesto theincrementcircuit.InFig. 13. the red line demonstrates the path of carry propagation. Unlike conventional CSAs, the proposed adder circuit uses HA blocks for carry propagation in the second stage which causes much less delay (Increment Circuit). Advantages of proposed hybrid adder  It runs on three operands like a regular CSA.  As carry propagates through the increment circuit like a simple CIA, the propagation delay is less than CSA.  As the design needs less number of FA blocks with respect to the CSA circuit, the circuit complexity is less. 3.3 Modified CSLA Our focus here will be to reduce the power consumption and chip area and of the circuit. These problems mainly arise due to high circuit complexity and increasing number of transistors. Incarry selectadder,MUXcircuitis used to select the perfect carry. In basic adder section we haveshown that everyMUXgatecountis 3. Square Root( SQRT)model showsa circuit sequencefor effectiveresult with the drawbacks of large circuit area and high power consumption. It needs 4 MUXs to design a normal 16-bit CSLA adder. So we modify the earlier circuit and make it use 3 MUXs. The enhanced circuit has been shown below in Fig. 14. Fig-14: Proposed circuit with modified SQRT sequence For conventional CSLA circuit we have Gate count = 57 (FA + HA + Mux) FA = 39 (3 * 13) HA = 6 (1 * 6) Mux = 12 (3 * 4). Now we have made the same adder having Gate count = 54 (FA + HA + Mux) FA = 39 (3 * 13) HA = 6 (1 * 6) Mux = 19 (3 * 3) The simulation result of the proposed circuit in Xilinx ISE 14.7 has been in Fig. 15. Fig-15: Proposed circuit with modified SQRT sequence 4. RESULTS In Table 1. we have compared different types of proposed hybrid adder circuits from 8-bit to 64-bit with regards to propagation delay, chip area and power consumption [11]. Table-1: Comparison of different types of proposed Hybrid adder circuits Bit Size Type of the Adder Delay in ms Power in mW Area in nm2 8-bit Proposed CSA-CSKA Hybrid Adder 3.245 9.56 824.96 Proposed CSA-CIA Hybrid Adder 3.125 10.30 856.30 Modified CSLA using D- LATCH 2.15 12.94 914.75 16-bit Proposed CSA-CSKA Hybrid Adder 5.32 21.94 1598.37 Proposed CSA-CIA Hybrid Adder 4.74 23.50 1617.23 Modified CSLA using D- LATCH 2.98 27.45 1756.06
  • 7. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 183 32-bit Proposed CSA-CSKA Hybrid Adder 8.58 47.89 3175 Proposed CSA-CIA Hybrid Adder 7.98 50.45 3244 Modified CSLA using D- LATCH 4.13 56.36 3489 64-bit Proposed CSA-CSKA Hybrid Adder 18.69 97.5 6634 Proposed CSA-CIA Hybrid Adder 15.64 99.85 6859 Modified CSLA using D- LATCH 4.821 104.85 7142.3 Graphsillustrating thetabular data hasbeendrawnforbetter visualization and calculation Chart-1: Delay Comparison of various adders Chart-2: Power Comparison of various adders Chart-3: Area Comparison of various adders 4.1 Delay Calculation In the case of 16-bit and 64-bit three input hybrid adder circuits (which we have previously designed), the CSA-CIA Hybrid Adder is respectively 10.86% and 16.31% more efficient than proposed CSA-CSkAHybrid Adder.FromTable 1. we can conclude that both for 16-bit or 32-bit systems, Modified CSLA using D-LATCH has least delay thoughithasa drawback that it can only operate on two inputs. 4.2 Power calculation In the hybrid adder circuits, which we have previously designed, proposedCSA-CSkAHybridAdderhaslessnumber of high power consuming gates. For 16-bit it is 6.60% and 20.1% more power efficient than proposed CSA-CIA Hybrid Adder and ModifiedCSLA usingD-LATCHrespectively.Inthe case of 64-bit it is 2.36% and 7.02% more power efficient
  • 8. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 11 | Nov 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 184 than the CSA-CIA Hybrid Adder and Modified CSLA using D- LATCH. 4.3 Area calculation Fromtheabove mentionedTable 1. wecanconclude thatthe proposed 16-bit CSA-CSkA Hybrid Adder is 98.8% and 91.08% area efficient than proposed CSA-CIA Hybrid Adder and Modified CSLA using D-LATCH respectively. It is also 2.13% and 9.1% area efficient than the others in case of 32 bit system. 5. CONCLUSION In this experimental paper, we have compared between CSA-CSKA hybrid Adder [2], CSA-CIA hybrid Adder and Modified CSLA using D-LATCH. Among them Modified CSLA using D-LATCH and CSA-CIA Hybrid Adder has less delay in the case oftwoinputandthree input operation respectively. CSA-CSkA Hybrid Adder of 16-bit and 32-bit consumes less powercompared to other proposedadder.Inthecaseofarea efficiency CSA-CSkA Hybrid Adder is preferred over others. The future aspects of this paper are based on the improvement of thedrawbacksofthe proposedaddersinits own respective flaws. REFERENCES [1] Salivahanan, S. “Digital Circuit and Design”, Fourth edition,2012. [2] Sarkar, S., & Mehedi, J. “ Design of Hybrid (CSA- CSkA) Adder for Improvement of Propagation Delay” in Third IEEE International Conference on Research in Computational Intelligence and Communication Networks (ICRCICN), pp 332-336, West Bengal, India, Nov 2017 [3] Kumar, M. S., & Samundiswary, P. “Design and Performance Analysis of Various Adders using Verilog”, International Journal ofComputerScience and Mobile Computing A Monthly Journal of Computer Science and Information Technology ISSN 2320–088X IJCSMC, Vol. 2, Issue. 9,September 2013, pg.128 – 138. [4] Fatima, R., Ahmed, P. R. “Efficient Implementation on Carry Select Adder Using Sum and Carry Generation Unit”, International Journal of Engineering Research and Technology, Volume 3,Issue 9, September,2015, PP 77-82,ISSN 2349- 4395(Print) & ISSN 2349- 4409 (Online) [5] Kumar, G. K., & Balaji, N. “Reconfigurable Delay Optimized Carry Select Adder”, ProceedingsofIEEE International Conference on Innovations in Electrical, Electronics, Instrumentation and Media Technology ICIEEIMT 17. [6] adin, J. P., & Palaniappan, C. “An Area and Delay Efficient Csla Architecture”, IOSR Journal of Electronics and Communication Engineering, Volume 5, Issue 3 (Mar.- Apr.2013), PP 20-25. [7] Reddy, G. K., & Rao, D. S. B. (2015). A comparative study on low-power and high speed Carry Select Adder. 2015 IEEE 9th International Conference on Intelligent Systems and Control (ISCO). [8] Javali, R. A., Nayak, R.J., Mhetar, A. M., Lakkannavar, M. C. “Design ofHigh Speed Carry Save Adder using Carry Lookahead Adder”, Proceedings of International Conference on Circuits, Communication, Control and Computing(I4C2014) [9] A. Sai Ramya, Mounica CAN, BSSV Ramesh Babu, “Performance analysis of different 8-bit Full adders”, IOSR Journal of VLSI and Signal Processing ( IOSR-JVSP ) Volume 5, Issue 4, Ver.II (July-Aug. 2015), PP 35-39 e-ISSN: 2319-4200, p-ISSN No. : 2319-4197 [10] Kaur, J., & Sood, L. “Comparison Between Various Types of Adder Topologies”, IJCST Vol. 6,Issue1,Jan - March 2015 ISSN : 0976- 8491 (Online) | ISSN : 2229-4333 (Print), 62 International Journal of Computer Science and Technology [11] Panda, S., Banerjee, A., Majhi, B., Mukhopadhyay, A. K. “Power and Delay Comparison in between different types ofFull AdderCircuits”, International Journal of Advanced Research in Electrical, Electronicsandinstrumentation EngineeringVol.1, Issue 3, September 2012, ISSN 2278-8875. BIOGRAPHY Diptangshu Chattopadhyay is a pre final year student pursuing his B.Tech in ECE from Jalpaiguri Government Engineering College. Hisarea ofinterest includeWireless Communication Networks, Digital electronics and VLSI. Avinaba Tapadar is a Final year undergraduate student pursuing B.Tech in ECE from Jalpaiguri Government Engineering College. His areas of interest include Digital System designing, VLSI physical design and verification. Sujan Sarkar has completed his B.Tech in Electronics and Communication Engineering from Jalpaiguri Government Engineering College. Hisareas ofinterest include Digital Circuit Design, VLSI system design, IC fabrication, Communication System, Digital Image processing.