SlideShare ist ein Scribd-Unternehmen logo
1 von 11
Downloaden Sie, um offline zu lesen
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
DOI : 10.5121/vlsic.2014.5202 11
ADVANCED ATPG BASED ON FAN,
TESTABILITY MEASURES AND FAULT
REDUCTION
Vaishali Dhare and Dr. Usha Mehta
Institute of Technology, Nirma University, Ahmedabad, Gujarat, India
ABSTRACT
To generate test patterns for the complex VLSI designs, an efficient and simple technique is required. This
paper present the development of combinational ATPG based on FAN algorithm, testability measures and
fault equivalence. The prime aspect of this work is to develop the ATPG algorithm with less number of
faults and testability measures. The proposed ATPG algorithm is simple and can be used as an open source
for academicians. Analysis on ISCAS 85 circuit along with some basic combinational circuits are present
for stuck-at faults.
KEYWORDS
ATPG, fault equivalence, testability measures, ISCAS, FAN.
1. INTRODUCTION
Automatic Test Pattern Generation (ATPG) is the process of generating patterns to test a circuit.
A significant amount of research has been done in the area of gate-level combinational ATPG
using the stuck-at-fault model. As the numbers of transistors are increasing on chip, it is
becoming difficult to generate the test vectors to test all faults. The objective of testing is filtering
defective chips from manufactured ones to reduce the fraction of defective parts those are
erroneously sold to customers as defect-free parts [1]. The commercial ATPG tools are available
in the market like FastScan by Mentor Graphics, TetraMAX by Synopsys. The cost of these
ATPGs is high also it is not possible to analyze the algorithm of it. Our aim was to develop an
open source advanced ATPG which would be freely available to generate the test patterns and to
analyze the concept of controllability, observability and fault equivalence. The single stuck-at-
fault model has been widely accepted as a standard target model to generate a set of test patterns
to detect all the stuck faults in the circuit [2]. In this paper single stuck at fault model is
considered. If we consider single stuck at fault (Stuck at 0 and Stuck at 1) then the number of
faults and test vectors are 2n, where n is number of nets. Size of test vector becomes large for
large combinational circuits. The bandwidth requirement of ATE and test time may be more in
this case [3]. No doubt that test vector compression methods are available but prior to it fault
reduction is possible using fault equivalence method. The reduced fault set concept using fault
equivalence is described and developed in [4]. ATPG (Automatic Test Pattern Generation) should
be guided by the testability measures to choose a decision during justification and propagation.
These measures serve as heuristics and represent the relative difficulty of justifying a gate value
to a control input or propagating a fault effect to an observe point. The testability measures,
controllability and observability is described and developed in [5].
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
12
The proposed ATPG algorithm is based on the concept of fault equivalence to reduce the number
of faults and testability measure. The algorithm used for the development of this kind of ATPG is
based on FAN: fanout oriented test generation algorithm. The proposed algorithm is developed
using C++ language. The results for ISCAS (International Symposium on Circuits and Systems)
85 C17 benchmark circuit are given in result section.
2. FAN: FANOUT ORIENTED TEST GENERATION ALGORITHM
FAN algorithm is developed by H. Fujiwara and Shimono [6]. Terminology: When a line L is
reachable from a fanout point, L is said to be bound. A signal line that is not bound is said to be
free. When a line is adjacent to some bound line, it is said to be head line. D-frontier consists
gates whose output values are X, but have D (or D’) on their inputs.
Fan algorithm’s strategies are discussed in brief. The proposed ATPG algorithm uses some of
these concepts to make it less complex.
‱ In each step of the algorithm, determine as many signal values as possible which can be
uniquely implied
‱ Assign a faulty signal value D or D’ which is uniquely determined or implied by the fault
under consideration
‱ When the D-frontier consists of a single gate, apply a unique sensitization
‱ Stop the backtrace at a head line, and postpone the line justification for the head line to
the last
‱ Do multiple backtracing, that is, concurrent tracing along more than one path. This is
more efficient than the backtrace along a single path.
3. IMPLEMENTATION OF PROPOSED ADVANCED ATPG
The first task is to develop program to find the number of headlines, bound lines and free lines in
the combinational circuit. Head line, bound lines and free lines are static i.e. they are fixed
according to circuit topology. The status of all these line is stored in text file which will be act as
an input to the further programs like multiple backtracing, forward implication, backward
implication. The flow chart to find head line, bound line and free line is given in figure 1.
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
13
Figure 1. Flow chart to find head, bound and free lines
Logic to find headlines, bound lines and free lines
1. Define all the directives, data and variable type.
2. Read the netlist file using ‘fopen’ in read mode for which head line, bound lines and free
lines are to be decided. Netlist is in ISCAS format.
3. Open file in write mode "output headlines.txt" in which output is be stored.
4. Here 1 is used head line, 2 for bound line, 3 for free line. Integers are taken instead of
character sothat variable type will not differ.
5. Initially assign number 3 which is considered as free line to all the nets of the circuit.
6. Search fanout branches net numbers (netno) from the netlist which is written in ISCAS
format. Assign fanout branch as 2-bound line.
7. Search the ‘stem’ of fanout branches from netlist. Assign the stem’s netno 1-head line.
8. assign that net as 1-head line.
9. Assign that net as 1-head line if 3-free line is present and no 2-bound line is assigned
earlier to that net.
10. Search the gate to which the fanout branch works as an input, find second input to that
gate.
11. Fanout branch may be first input (fanin1) or second input (fanin2), if it is fanin1 then
assign 1-head line to fanin2 and if it is fanin2 assign 1-head line to fanin1, provided that
there is 3-free line available and no 2-bound line is assigned.
The flow chart of proposed ATPG algorithm is given in figure 2. It is used for combinational
circuit with 2-fanin-fanout gate like and, nand, or, nor, not and exor. Here single stuck at fault is
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
14
considered. The reduced fault list generated by fault equivalence method [4] is used as fault list
for this algorithm. Now the number of faults are less. The different functions like backward
implication, multiple backtrace, forward implication are developed separately (A, B,C
respectively shown in figure 2).
Figure 2 .Proposed ATPG algorithm
FAN algorithm applies unique implication in both forward and backward directions, in the
proposed ATPG algorithm first backward implication is performed.
Take justification value v’ where v (value-logic 0 or 1) is stuck at fault present on the net. Now
perform the implication in backward direction. The flow chart of backward implication is given in
figure 3. With justification value start backward implication until primary input reaches. In this
strategy use testability measures controllability 0 and controllability 1 .When only one fanin is to
be justify then use fanin with minimum controllability value. We got the values of combinational
controllability 0 and 1 (CC0, CC1) from [5]. Here ‘8’ is used as don’t care bit ‘X’.
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
15
Figure 3. Flow chart of backward implication
Next step is to decide the current objective for multiple backtracing for each fault. If fault is
present on PI (primary Input) and it is stem then find branches of it, assign justification values to
branches. The branches may be fanin to gate, take gate type and non-controlling value of the gate
.This is now ‘current objective’ value and that net number is current objective netno. If fault is on
PI and it is fanin to gate then again repeat the process mentioned as above. In case of exor gate
where controlling value is not exists, according to the justification value, both the fanins will be
added to current objective netno with corresponding values.
After getting the final current objectives start multiple backtrace with current objective netno and
value. We used multiple backtrace as used by FAN algorithm. Do backtracing until the current
objective reaches null. If stem comes in between then add it to ‘stem objective’. Here an array is
formed for ‘stem objective’ with stem netno, n0 (netno), n1 (netno). Where n0 (netno) shows how
many times the logic value 0 comes at the stem netno and n1 (netno) shows the how many times
the logic 1 value comes at stem netno. If one of them is zero then contradiction will not occurs. If
n0>n1 then take logic value 0 for further backtracing. If n1>n0 then take logic value 1 for further
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
16
backtracing. Here again testability measures controllability 0 and controllability 1 is used while
deciding the value of one fanin or both the fanins Take stem objective one by one as current
objective and do multiple backtracing until head objective reaches. Store the head objective .The
flow chart of multiple backtracing is shown is figure 4. The outcome of multiple backtrace is head
objective’s netno and its logical value.
Figure 4. Flow chart of multiple backtrace
In next step take head objective one by one and perform forward implication. This process starts
from head line upto PO .If PO reaches then stop, making PO flag ON. In each step of forward
implication, check the value on net assigned during the backward implication. If both the values,
assigned during backward implication and value to be assign during forward implication are
matches then only assign otherwise take the reverse decision, make complimentary value of head
objective and do forward implication. Even if there is a mismatch or contradiction then return to
the end of program. Forward implication logic is described by the flow chart given in figure 5.
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
17
Figure 5 .Flow chart of forward implication
Check whether error reached at PO or not. Also check the D-frontier. It checks the D-frontier at
one level. Check whether all bound lines are justified or not. If some bound lines are remain
unjustified then according to the gate type, other fanin and output value decide value of
unjustified bound line and take them as current objective. Call multiple backtrace function for
these lines.
It might be possible that the head line may not be primary input. If it is not primary input then call
backward implication function for those lines.
4. EXAMPLE OF PROPOSED ATPG ALGORITHM
ISCAS 85 C17 benchmark circuit is taken to explain the working of proposed ATPG algorithm.
Consider the stuck at 0 (s_a_0) fault on net no. 23.Now the justification value j value (v’) is 1.
1. Initially consider don't care bit X on each net.
2. First apply backward implication: start from net under fault up to the primary input with j
value =1. Implied values are shown in figure 6. In this case when only one input is to be
justify then compare the controllability values of both the fanins of gate and assign value
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
18
to the fanin with less controllability value (cc0 ,cc1 depending upon the value to be
justified.
Figure 6. C17 circuit with backward implication values
3. Fault is at PO sothat D-frontier of it becomes gate ahead to net number 23. Initial
objective is (23, 1). Select one gate from D-frontier, assign controlling value to the input
of that gate which has X value. In this case assign controlling value of nand gate 0 to net
no. 21 which has X value. So (21, 1) is current objective.
4. Start multiple backtrace with current objectives.
5. Remove one current objective, which is process entry for multiple backtrace.
6. (21, 1) is fanout branch, assign value to stem 16. (16, 1) is added to stem objective.
7. Now current objective is null but stem objective is present sothat take (16, 1) as current
objective.
8. (16, 1) is output of gate. Calculate inval= Vk exored i, Where Vk is multiple backtrace
value and i is inversion value of that gate. Here inval=0. So inval is equal to controlling
value of nand gate (0=0). Assign controlling value C to one of the input i.e. 0. Again it
uses controllability to assign value to the input. Here value 0 is assign to input netno 2.
Now a current objective is (2, 0).
9. Take one current objective (2, 0). It is head line so stop the backtrace here for this
objective. Store net no. and value in head objective (2, 0).The various objective status is
shown in table 1.
Table 1. Status of various objectives
10. At this stage stem and current objectives are null. Take head objective one by one and
apply forward implication. Forward implication values are shown in figure 7. Here only
one head objective is present (2, 0).
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
19
11. Here no contradiction has occurred while doing forward implication.
Figure 7. C17 circuit with forward implication values
12. Now check whether there is any unjustified bound line present or not. Netno10 and 22
are bound lines and these are unjustified. Start from PO, unjustified line closest to PO is
22, both of these inputs are not set to value. Take another unjustified bound line. 10 is
input to nand gate, output of nand gate is undefined and other input is 1. So set value of
10 as non-controlling value of gate i.e. 1.
13. Now the current objective is (1, 0).The value of netno 1 is set to 0.Thus the test vector
generated is 000X1.
5. RESULTS
The programs for all above concepts are developed in C++.The snap shots of output window are
shown in this section. The proposed ATPG algorithm is generic. Figure 8 shows the reduced fault
list for ISCAS85 C17 benchmark circuit. The first column of the output window shows the net
number and second column shows the fault present on that corresponding net number. The fault
present is either stuck at 0 or stuck at 1.
Figure 8. Snap shot of output of ISCAS 85 C17 benchmark circuit for reduced fault set
Figure 9 shows the output of testability measures controllability and observability. Here first
column of output window shows the net number, second column is for controllability 0- CC0,
third is controllability 1-CC1 and forth column shows the observability–ob for corresponding net
number.
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
20
Figure 9. Snap shot of output of ISCAS 85 C17 benchmark circuit for controllability and
observability
Figure 10 shows the test vector generated by proposed ATPG algorithm. The size of test vector is
same as the number of PIs. The first column is net number, second column is stuck at fault
present on that net either stuck at 0 or stuck at 1. All other columns represents test vector for
corresponding fault on net. Here “8” is stored instead of don’t care (x).
Figure 10. Snap shot of output of proposed ATPG for ISCAS 85 C17 benchmark circuit
The test patterns are generated for some combinational circuits using proposed ATPG. The
number of reduced bits and computing time for these circuits are mentioned in table 2.
International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014
21
Circuit
#
net
# bits Computing
time
(sec)
Before
fault
reduction
After
fault
reduction
C17 17 170 110 0.0467000
Circuit 1 29 348 312 0.0560000
Circuit 2 12 72 63 0.0260000
Table 2. Comparisons of bits and computing time
6. CONCLUSION
The proposed combinational ATPG algorithm is less complex. Initial fault reduction is done
using fault equivalence method. The algorithm is also follows the testability measures for better
assignment of justification values. This can be keep as freeware for test generation and analyses
purpose to academicians.
REFERENCES
[1] Sooryong Lee, Brad Cobb, Jennifer Dworak, Michael R. Grimaila and M. Ray Mercer, “A New
ATPG Algorithm to Limit Test Set Size and Achieve Multiple Detections of all Faults”, in the
proceedings of the Design Automation and Test in Europe Conference, 2002.
[2] Abramovici, M.A. Breuer and A.D. Friedman, “Digital Systems Testing and Testable Design”, IEEE
Press, NJ 1990
[3] Nur A. Touba, "Survey of Test Vector Compression Techniques,"IEEE Design & Test of Computers,
vol. 23, no. 4, pp. 294-303, July/August, 2006.
[4] Vaishali Dhare, Usha Mehta, “Implementation of Compaction Algorithm for ATPG Generated
Partially Specified Test Data”, International Journal of VLSI design & Communication Systems,
Pg.no.93-103,Vol.4, No.1, February 2013.
[5] Vaishali Dhare, Usha Mehta, “Development of Controllability Observability Aided Combinational
ATPG with Fault Reduction”, Lecture Notes in Computer Science, Recent Trends in Networks and
Communications, Springer, Pg. No 682-692, July 2010.
[6] Hideo Fujiwara., Takeshi Shimono, “On the Acceleration of Test Generation Algorithm”, IEEE
transaction on computers, Vol C-32, No 12, December 1983, pp.1137-1144.
[7] S.C. Chang, W.B. Jone and SS. Chang, “TAIR: Testability Analysis by Implication Reasoning”, IEEE
Trans on CAD, Vol. 19, No. 1, January 2000, pp. 152-160.
[8] David Bryan, ISCAS’85 benchmark circuits and netlist format, North Carolina State University.
[9] Micheal Bushnell and Vishwani Agrawal, “Essentials of Electronic Testing”. Springer Publication.

Weitere Àhnliche Inhalte

Was ist angesagt?

05 dataflow
05 dataflow05 dataflow
05 dataflowali Hussien
 
A bypass of cohen's impossibility result
A bypass of cohen's impossibility resultA bypass of cohen's impossibility result
A bypass of cohen's impossibility resultUltraUploader
 
Pointers Refrences & dynamic memory allocation in C++
Pointers Refrences & dynamic memory allocation in C++Pointers Refrences & dynamic memory allocation in C++
Pointers Refrences & dynamic memory allocation in C++Gamindu Udayanga
 
C Programming : Pointers and Strings
C Programming : Pointers and StringsC Programming : Pointers and Strings
C Programming : Pointers and StringsSelvaraj Seerangan
 
Intro To C++ - Class #17: Pointers!, Objects Talking To Each Other
Intro To C++ - Class #17: Pointers!, Objects Talking To Each OtherIntro To C++ - Class #17: Pointers!, Objects Talking To Each Other
Intro To C++ - Class #17: Pointers!, Objects Talking To Each OtherBlue Elephant Consulting
 
A study of dipole antennas using mat lab
A study of dipole antennas using mat labA study of dipole antennas using mat lab
A study of dipole antennas using mat labLe Professionist
 
C faqs interview questions placement paper 2013
C faqs interview questions placement paper 2013C faqs interview questions placement paper 2013
C faqs interview questions placement paper 2013srikanthreddy004
 
An incremental algorithm for transition-based CCG parsing
An incremental algorithm for transition-based CCG parsingAn incremental algorithm for transition-based CCG parsing
An incremental algorithm for transition-based CCG parsingAkira Miyazawa
 
Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...
Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...
Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...Universitat PolitĂšcnica de Catalunya
 
Diagnosis of Faulty Sensors in Antenna Array using Hybrid Differential Evolut...
Diagnosis of Faulty Sensors in Antenna Array using Hybrid Differential Evolut...Diagnosis of Faulty Sensors in Antenna Array using Hybrid Differential Evolut...
Diagnosis of Faulty Sensors in Antenna Array using Hybrid Differential Evolut...IJECEIAES
 
Datastructure notes
Datastructure notesDatastructure notes
Datastructure notesSrikanth
 
DNA Compression (Encoded using Huffman Encoding Method)
DNA Compression (Encoded using Huffman Encoding Method)DNA Compression (Encoded using Huffman Encoding Method)
DNA Compression (Encoded using Huffman Encoding Method)Marwa Al-Rikaby
 
Finite Wordlength Linear-Phase FIR Filter Design Using Babai's Algorithm
Finite Wordlength Linear-Phase FIR Filter Design Using Babai's AlgorithmFinite Wordlength Linear-Phase FIR Filter Design Using Babai's Algorithm
Finite Wordlength Linear-Phase FIR Filter Design Using Babai's AlgorithmCSCJournals
 
Explainable AI
Explainable AIExplainable AI
Explainable AIArithmer Inc.
 
Effective Java - Methods Common to All Objects
Effective Java - Methods Common to All ObjectsEffective Java - Methods Common to All Objects
Effective Java - Methods Common to All ObjectsRoshan Deniyage
 

Was ist angesagt? (20)

05 dataflow
05 dataflow05 dataflow
05 dataflow
 
A bypass of cohen's impossibility result
A bypass of cohen's impossibility resultA bypass of cohen's impossibility result
A bypass of cohen's impossibility result
 
Pointers Refrences & dynamic memory allocation in C++
Pointers Refrences & dynamic memory allocation in C++Pointers Refrences & dynamic memory allocation in C++
Pointers Refrences & dynamic memory allocation in C++
 
Data structures
Data structuresData structures
Data structures
 
C Programming : Pointers and Strings
C Programming : Pointers and StringsC Programming : Pointers and Strings
C Programming : Pointers and Strings
 
C Programming - Refresher - Part II
C Programming - Refresher - Part II C Programming - Refresher - Part II
C Programming - Refresher - Part II
 
J45015460
J45015460J45015460
J45015460
 
Chap14
Chap14Chap14
Chap14
 
Intro To C++ - Class #17: Pointers!, Objects Talking To Each Other
Intro To C++ - Class #17: Pointers!, Objects Talking To Each OtherIntro To C++ - Class #17: Pointers!, Objects Talking To Each Other
Intro To C++ - Class #17: Pointers!, Objects Talking To Each Other
 
A study of dipole antennas using mat lab
A study of dipole antennas using mat labA study of dipole antennas using mat lab
A study of dipole antennas using mat lab
 
C faqs interview questions placement paper 2013
C faqs interview questions placement paper 2013C faqs interview questions placement paper 2013
C faqs interview questions placement paper 2013
 
An incremental algorithm for transition-based CCG parsing
An incremental algorithm for transition-based CCG parsingAn incremental algorithm for transition-based CCG parsing
An incremental algorithm for transition-based CCG parsing
 
Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...
Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...
Attention-based Models (DLAI D8L 2017 UPC Deep Learning for Artificial Intell...
 
Diagnosis of Faulty Sensors in Antenna Array using Hybrid Differential Evolut...
Diagnosis of Faulty Sensors in Antenna Array using Hybrid Differential Evolut...Diagnosis of Faulty Sensors in Antenna Array using Hybrid Differential Evolut...
Diagnosis of Faulty Sensors in Antenna Array using Hybrid Differential Evolut...
 
Datastructure notes
Datastructure notesDatastructure notes
Datastructure notes
 
DNA Compression (Encoded using Huffman Encoding Method)
DNA Compression (Encoded using Huffman Encoding Method)DNA Compression (Encoded using Huffman Encoding Method)
DNA Compression (Encoded using Huffman Encoding Method)
 
Finite Wordlength Linear-Phase FIR Filter Design Using Babai's Algorithm
Finite Wordlength Linear-Phase FIR Filter Design Using Babai's AlgorithmFinite Wordlength Linear-Phase FIR Filter Design Using Babai's Algorithm
Finite Wordlength Linear-Phase FIR Filter Design Using Babai's Algorithm
 
Explainable AI
Explainable AIExplainable AI
Explainable AI
 
Effective Java - Methods Common to All Objects
Effective Java - Methods Common to All ObjectsEffective Java - Methods Common to All Objects
Effective Java - Methods Common to All Objects
 
report
reportreport
report
 

Andere mochten auch

Feasible methodology for
Feasible methodology forFeasible methodology for
Feasible methodology forVLSICS Design
 
Design of 6 bit flash analog to digital converter using variable switching vo...
Design of 6 bit flash analog to digital converter using variable switching vo...Design of 6 bit flash analog to digital converter using variable switching vo...
Design of 6 bit flash analog to digital converter using variable switching vo...VLSICS Design
 
Low power reduced instruction set architecture using clock gating technique
Low power reduced instruction set architecture using clock gating techniqueLow power reduced instruction set architecture using clock gating technique
Low power reduced instruction set architecture using clock gating techniqueVLSICS Design
 
Dynamic task scheduling on multicore automotive ec us
Dynamic task scheduling on multicore automotive ec usDynamic task scheduling on multicore automotive ec us
Dynamic task scheduling on multicore automotive ec usVLSICS Design
 
Optimization of Cmos 0.18 ”M Low Noise Amplifier Using Nsga-Ii for UWB Applic...
Optimization of Cmos 0.18 ”M Low Noise Amplifier Using Nsga-Ii for UWB Applic...Optimization of Cmos 0.18 ”M Low Noise Amplifier Using Nsga-Ii for UWB Applic...
Optimization of Cmos 0.18 ”M Low Noise Amplifier Using Nsga-Ii for UWB Applic...VLSICS Design
 
Low Power-Area Design of Full Adder Using Self Resetting Logic with GDI Techn...
Low Power-Area Design of Full Adder Using Self Resetting Logic with GDI Techn...Low Power-Area Design of Full Adder Using Self Resetting Logic with GDI Techn...
Low Power-Area Design of Full Adder Using Self Resetting Logic with GDI Techn...VLSICS Design
 
DESIGN OF HIGH EFFICIENCY TWO STAGE POWER AMPLIFIER IN 0.13UM RF CMOS TECHNOL...
DESIGN OF HIGH EFFICIENCY TWO STAGE POWER AMPLIFIER IN 0.13UM RF CMOS TECHNOL...DESIGN OF HIGH EFFICIENCY TWO STAGE POWER AMPLIFIER IN 0.13UM RF CMOS TECHNOL...
DESIGN OF HIGH EFFICIENCY TWO STAGE POWER AMPLIFIER IN 0.13UM RF CMOS TECHNOL...VLSICS Design
 
Analytical modeling of electric field distribution in dual material junctionl...
Analytical modeling of electric field distribution in dual material junctionl...Analytical modeling of electric field distribution in dual material junctionl...
Analytical modeling of electric field distribution in dual material junctionl...VLSICS Design
 
A New Transistor Sizing Approach for Digital Integrated Circuits Using Firefl...
A New Transistor Sizing Approach for Digital Integrated Circuits Using Firefl...A New Transistor Sizing Approach for Digital Integrated Circuits Using Firefl...
A New Transistor Sizing Approach for Digital Integrated Circuits Using Firefl...VLSICS Design
 
CMOS LOW POWER CELL LIBRARY FOR DIGITAL DESIGN
CMOS LOW POWER CELL LIBRARY FOR DIGITAL DESIGNCMOS LOW POWER CELL LIBRARY FOR DIGITAL DESIGN
CMOS LOW POWER CELL LIBRARY FOR DIGITAL DESIGNVLSICS Design
 
Analysis of pocket double gate tunnel fet for low stand by power logic circuits
Analysis of pocket double gate tunnel fet for low stand by power logic circuitsAnalysis of pocket double gate tunnel fet for low stand by power logic circuits
Analysis of pocket double gate tunnel fet for low stand by power logic circuitsVLSICS Design
 
Accelerating system verilog uvm based vip to improve methodology for verifica...
Accelerating system verilog uvm based vip to improve methodology for verifica...Accelerating system verilog uvm based vip to improve methodology for verifica...
Accelerating system verilog uvm based vip to improve methodology for verifica...VLSICS Design
 
POWER EFFICIENT CARRY PROPAGATE ADDER
POWER EFFICIENT CARRY PROPAGATE ADDERPOWER EFFICIENT CARRY PROPAGATE ADDER
POWER EFFICIENT CARRY PROPAGATE ADDERVLSICS Design
 
Low cost reversible signed comparator
Low cost reversible signed comparatorLow cost reversible signed comparator
Low cost reversible signed comparatorVLSICS Design
 
ESTABLISHING A MOLECULAR COMMUNICATION CHANNEL FOR NANO NETWORKS
ESTABLISHING A MOLECULAR COMMUNICATION  CHANNEL FOR NANO NETWORKSESTABLISHING A MOLECULAR COMMUNICATION  CHANNEL FOR NANO NETWORKS
ESTABLISHING A MOLECULAR COMMUNICATION CHANNEL FOR NANO NETWORKSVLSICS Design
 
ENHANCING MULTIPLIER SPEED IN FAST FOURIER TRANSFORM BASED ON VEDIC MATHEMATICS
ENHANCING MULTIPLIER SPEED IN FAST FOURIER TRANSFORM BASED ON VEDIC MATHEMATICSENHANCING MULTIPLIER SPEED IN FAST FOURIER TRANSFORM BASED ON VEDIC MATHEMATICS
ENHANCING MULTIPLIER SPEED IN FAST FOURIER TRANSFORM BASED ON VEDIC MATHEMATICSVLSICS Design
 
Crdom cell re ordering based domino on-the-fly mapping
Crdom  cell re ordering based domino on-the-fly mappingCrdom  cell re ordering based domino on-the-fly mapping
Crdom cell re ordering based domino on-the-fly mappingVLSICS Design
 

Andere mochten auch (18)

Feasible methodology for
Feasible methodology forFeasible methodology for
Feasible methodology for
 
Design of 6 bit flash analog to digital converter using variable switching vo...
Design of 6 bit flash analog to digital converter using variable switching vo...Design of 6 bit flash analog to digital converter using variable switching vo...
Design of 6 bit flash analog to digital converter using variable switching vo...
 
Vlsics08
Vlsics08Vlsics08
Vlsics08
 
Low power reduced instruction set architecture using clock gating technique
Low power reduced instruction set architecture using clock gating techniqueLow power reduced instruction set architecture using clock gating technique
Low power reduced instruction set architecture using clock gating technique
 
Dynamic task scheduling on multicore automotive ec us
Dynamic task scheduling on multicore automotive ec usDynamic task scheduling on multicore automotive ec us
Dynamic task scheduling on multicore automotive ec us
 
Optimization of Cmos 0.18 ”M Low Noise Amplifier Using Nsga-Ii for UWB Applic...
Optimization of Cmos 0.18 ”M Low Noise Amplifier Using Nsga-Ii for UWB Applic...Optimization of Cmos 0.18 ”M Low Noise Amplifier Using Nsga-Ii for UWB Applic...
Optimization of Cmos 0.18 ”M Low Noise Amplifier Using Nsga-Ii for UWB Applic...
 
Low Power-Area Design of Full Adder Using Self Resetting Logic with GDI Techn...
Low Power-Area Design of Full Adder Using Self Resetting Logic with GDI Techn...Low Power-Area Design of Full Adder Using Self Resetting Logic with GDI Techn...
Low Power-Area Design of Full Adder Using Self Resetting Logic with GDI Techn...
 
DESIGN OF HIGH EFFICIENCY TWO STAGE POWER AMPLIFIER IN 0.13UM RF CMOS TECHNOL...
DESIGN OF HIGH EFFICIENCY TWO STAGE POWER AMPLIFIER IN 0.13UM RF CMOS TECHNOL...DESIGN OF HIGH EFFICIENCY TWO STAGE POWER AMPLIFIER IN 0.13UM RF CMOS TECHNOL...
DESIGN OF HIGH EFFICIENCY TWO STAGE POWER AMPLIFIER IN 0.13UM RF CMOS TECHNOL...
 
Analytical modeling of electric field distribution in dual material junctionl...
Analytical modeling of electric field distribution in dual material junctionl...Analytical modeling of electric field distribution in dual material junctionl...
Analytical modeling of electric field distribution in dual material junctionl...
 
A New Transistor Sizing Approach for Digital Integrated Circuits Using Firefl...
A New Transistor Sizing Approach for Digital Integrated Circuits Using Firefl...A New Transistor Sizing Approach for Digital Integrated Circuits Using Firefl...
A New Transistor Sizing Approach for Digital Integrated Circuits Using Firefl...
 
CMOS LOW POWER CELL LIBRARY FOR DIGITAL DESIGN
CMOS LOW POWER CELL LIBRARY FOR DIGITAL DESIGNCMOS LOW POWER CELL LIBRARY FOR DIGITAL DESIGN
CMOS LOW POWER CELL LIBRARY FOR DIGITAL DESIGN
 
Analysis of pocket double gate tunnel fet for low stand by power logic circuits
Analysis of pocket double gate tunnel fet for low stand by power logic circuitsAnalysis of pocket double gate tunnel fet for low stand by power logic circuits
Analysis of pocket double gate tunnel fet for low stand by power logic circuits
 
Accelerating system verilog uvm based vip to improve methodology for verifica...
Accelerating system verilog uvm based vip to improve methodology for verifica...Accelerating system verilog uvm based vip to improve methodology for verifica...
Accelerating system verilog uvm based vip to improve methodology for verifica...
 
POWER EFFICIENT CARRY PROPAGATE ADDER
POWER EFFICIENT CARRY PROPAGATE ADDERPOWER EFFICIENT CARRY PROPAGATE ADDER
POWER EFFICIENT CARRY PROPAGATE ADDER
 
Low cost reversible signed comparator
Low cost reversible signed comparatorLow cost reversible signed comparator
Low cost reversible signed comparator
 
ESTABLISHING A MOLECULAR COMMUNICATION CHANNEL FOR NANO NETWORKS
ESTABLISHING A MOLECULAR COMMUNICATION  CHANNEL FOR NANO NETWORKSESTABLISHING A MOLECULAR COMMUNICATION  CHANNEL FOR NANO NETWORKS
ESTABLISHING A MOLECULAR COMMUNICATION CHANNEL FOR NANO NETWORKS
 
ENHANCING MULTIPLIER SPEED IN FAST FOURIER TRANSFORM BASED ON VEDIC MATHEMATICS
ENHANCING MULTIPLIER SPEED IN FAST FOURIER TRANSFORM BASED ON VEDIC MATHEMATICSENHANCING MULTIPLIER SPEED IN FAST FOURIER TRANSFORM BASED ON VEDIC MATHEMATICS
ENHANCING MULTIPLIER SPEED IN FAST FOURIER TRANSFORM BASED ON VEDIC MATHEMATICS
 
Crdom cell re ordering based domino on-the-fly mapping
Crdom  cell re ordering based domino on-the-fly mappingCrdom  cell re ordering based domino on-the-fly mapping
Crdom cell re ordering based domino on-the-fly mapping
 

Ähnlich wie Advanced atpg based on fan, testability measures and fault reduction

IMPLEMENTATION OF COMPACTION ALGORITHM FOR ATPG GENERATED PARTIALLY SPECIFIED...
IMPLEMENTATION OF COMPACTION ALGORITHM FOR ATPG GENERATED PARTIALLY SPECIFIED...IMPLEMENTATION OF COMPACTION ALGORITHM FOR ATPG GENERATED PARTIALLY SPECIFIED...
IMPLEMENTATION OF COMPACTION ALGORITHM FOR ATPG GENERATED PARTIALLY SPECIFIED...VLSICS Design
 
MITIGATION OF SOFT ERRORS ON 65NM COMBINATIONAL LOGIC GATES VIA BUFFER GATE
MITIGATION OF SOFT ERRORS ON 65NM COMBINATIONAL LOGIC GATES VIA BUFFER GATE MITIGATION OF SOFT ERRORS ON 65NM COMBINATIONAL LOGIC GATES VIA BUFFER GATE
MITIGATION OF SOFT ERRORS ON 65NM COMBINATIONAL LOGIC GATES VIA BUFFER GATE VLSICS Design
 
Fault detection and test minimization methods
Fault detection and test minimization methodsFault detection and test minimization methods
Fault detection and test minimization methodspraveenkaundal
 
Optimization of Test Pattern Using Genetic Algorithm for Testing SRAM
Optimization of Test Pattern Using Genetic Algorithm for Testing SRAMOptimization of Test Pattern Using Genetic Algorithm for Testing SRAM
Optimization of Test Pattern Using Genetic Algorithm for Testing SRAMIJERA Editor
 
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDINGAN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDINGijfcstjournal
 
An optimized hybrid approach for path
An optimized hybrid approach for pathAn optimized hybrid approach for path
An optimized hybrid approach for pathijfcstjournal
 
Fault Modeling of Combinational and Sequential Circuits at Register Transfer ...
Fault Modeling of Combinational and Sequential Circuits at Register Transfer ...Fault Modeling of Combinational and Sequential Circuits at Register Transfer ...
Fault Modeling of Combinational and Sequential Circuits at Register Transfer ...VLSICS Design
 
FAULT MODELING OF COMBINATIONAL AND SEQUENTIAL CIRCUITS AT REGISTER TRANSFER ...
FAULT MODELING OF COMBINATIONAL AND SEQUENTIAL CIRCUITS AT REGISTER TRANSFER ...FAULT MODELING OF COMBINATIONAL AND SEQUENTIAL CIRCUITS AT REGISTER TRANSFER ...
FAULT MODELING OF COMBINATIONAL AND SEQUENTIAL CIRCUITS AT REGISTER TRANSFER ...VLSICS Design
 
User_42751212015Module1and2pagestocompetework.pdf.docx
User_42751212015Module1and2pagestocompetework.pdf.docxUser_42751212015Module1and2pagestocompetework.pdf.docx
User_42751212015Module1and2pagestocompetework.pdf.docxdickonsondorris
 
Fault Modeling for Verilog Register Transfer Level
Fault Modeling for Verilog Register Transfer LevelFault Modeling for Verilog Register Transfer Level
Fault Modeling for Verilog Register Transfer Levelidescitation
 
Design and Implementation of Test Vector Generation using Random Forest Techn...
Design and Implementation of Test Vector Generation using Random Forest Techn...Design and Implementation of Test Vector Generation using Random Forest Techn...
Design and Implementation of Test Vector Generation using Random Forest Techn...IRJET Journal
 
A genetic algorithm to solve the
A genetic algorithm to solve theA genetic algorithm to solve the
A genetic algorithm to solve theIJCNCJournal
 
Electricity Demand Forecasting Using ANN
Electricity Demand Forecasting Using ANNElectricity Demand Forecasting Using ANN
Electricity Demand Forecasting Using ANNNaren Chandra Kattla
 
Energy-Aware Multipath Routing Scheme Based on Particle Swarm Optimization (E...
Energy-Aware Multipath Routing Scheme Based on Particle Swarm Optimization (E...Energy-Aware Multipath Routing Scheme Based on Particle Swarm Optimization (E...
Energy-Aware Multipath Routing Scheme Based on Particle Swarm Optimization (E...IRJET Journal
 
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTORARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTORijac123
 
An Algorithm For Vector Quantizer Design
An Algorithm For Vector Quantizer DesignAn Algorithm For Vector Quantizer Design
An Algorithm For Vector Quantizer DesignAngie Miller
 

Ähnlich wie Advanced atpg based on fan, testability measures and fault reduction (20)

IMPLEMENTATION OF COMPACTION ALGORITHM FOR ATPG GENERATED PARTIALLY SPECIFIED...
IMPLEMENTATION OF COMPACTION ALGORITHM FOR ATPG GENERATED PARTIALLY SPECIFIED...IMPLEMENTATION OF COMPACTION ALGORITHM FOR ATPG GENERATED PARTIALLY SPECIFIED...
IMPLEMENTATION OF COMPACTION ALGORITHM FOR ATPG GENERATED PARTIALLY SPECIFIED...
 
Bt34433436
Bt34433436Bt34433436
Bt34433436
 
MITIGATION OF SOFT ERRORS ON 65NM COMBINATIONAL LOGIC GATES VIA BUFFER GATE
MITIGATION OF SOFT ERRORS ON 65NM COMBINATIONAL LOGIC GATES VIA BUFFER GATE MITIGATION OF SOFT ERRORS ON 65NM COMBINATIONAL LOGIC GATES VIA BUFFER GATE
MITIGATION OF SOFT ERRORS ON 65NM COMBINATIONAL LOGIC GATES VIA BUFFER GATE
 
Fault detection and test minimization methods
Fault detection and test minimization methodsFault detection and test minimization methods
Fault detection and test minimization methods
 
Optimization of Test Pattern Using Genetic Algorithm for Testing SRAM
Optimization of Test Pattern Using Genetic Algorithm for Testing SRAMOptimization of Test Pattern Using Genetic Algorithm for Testing SRAM
Optimization of Test Pattern Using Genetic Algorithm for Testing SRAM
 
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDINGAN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
AN OPTIMIZED HYBRID APPROACH FOR PATH FINDING
 
An optimized hybrid approach for path
An optimized hybrid approach for pathAn optimized hybrid approach for path
An optimized hybrid approach for path
 
Bh36352357
Bh36352357Bh36352357
Bh36352357
 
Fault Modeling of Combinational and Sequential Circuits at Register Transfer ...
Fault Modeling of Combinational and Sequential Circuits at Register Transfer ...Fault Modeling of Combinational and Sequential Circuits at Register Transfer ...
Fault Modeling of Combinational and Sequential Circuits at Register Transfer ...
 
FAULT MODELING OF COMBINATIONAL AND SEQUENTIAL CIRCUITS AT REGISTER TRANSFER ...
FAULT MODELING OF COMBINATIONAL AND SEQUENTIAL CIRCUITS AT REGISTER TRANSFER ...FAULT MODELING OF COMBINATIONAL AND SEQUENTIAL CIRCUITS AT REGISTER TRANSFER ...
FAULT MODELING OF COMBINATIONAL AND SEQUENTIAL CIRCUITS AT REGISTER TRANSFER ...
 
User_42751212015Module1and2pagestocompetework.pdf.docx
User_42751212015Module1and2pagestocompetework.pdf.docxUser_42751212015Module1and2pagestocompetework.pdf.docx
User_42751212015Module1and2pagestocompetework.pdf.docx
 
Fault Modeling for Verilog Register Transfer Level
Fault Modeling for Verilog Register Transfer LevelFault Modeling for Verilog Register Transfer Level
Fault Modeling for Verilog Register Transfer Level
 
Design and Implementation of Test Vector Generation using Random Forest Techn...
Design and Implementation of Test Vector Generation using Random Forest Techn...Design and Implementation of Test Vector Generation using Random Forest Techn...
Design and Implementation of Test Vector Generation using Random Forest Techn...
 
A genetic algorithm to solve the
A genetic algorithm to solve theA genetic algorithm to solve the
A genetic algorithm to solve the
 
Electricity Demand Forecasting Using ANN
Electricity Demand Forecasting Using ANNElectricity Demand Forecasting Using ANN
Electricity Demand Forecasting Using ANN
 
Energy-Aware Multipath Routing Scheme Based on Particle Swarm Optimization (E...
Energy-Aware Multipath Routing Scheme Based on Particle Swarm Optimization (E...Energy-Aware Multipath Routing Scheme Based on Particle Swarm Optimization (E...
Energy-Aware Multipath Routing Scheme Based on Particle Swarm Optimization (E...
 
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTORARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
ARTIFICIAL NEURAL NETWORK APPROACH TO MODELING OF POLYPROPYLENE REACTOR
 
Ab35157161
Ab35157161Ab35157161
Ab35157161
 
Ab35157161
Ab35157161Ab35157161
Ab35157161
 
An Algorithm For Vector Quantizer Design
An Algorithm For Vector Quantizer DesignAn Algorithm For Vector Quantizer Design
An Algorithm For Vector Quantizer Design
 

KĂŒrzlich hochgeladen

Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...gurkirankumar98700
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 

KĂŒrzlich hochgeladen (20)

Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 

Advanced atpg based on fan, testability measures and fault reduction

  • 1. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 DOI : 10.5121/vlsic.2014.5202 11 ADVANCED ATPG BASED ON FAN, TESTABILITY MEASURES AND FAULT REDUCTION Vaishali Dhare and Dr. Usha Mehta Institute of Technology, Nirma University, Ahmedabad, Gujarat, India ABSTRACT To generate test patterns for the complex VLSI designs, an efficient and simple technique is required. This paper present the development of combinational ATPG based on FAN algorithm, testability measures and fault equivalence. The prime aspect of this work is to develop the ATPG algorithm with less number of faults and testability measures. The proposed ATPG algorithm is simple and can be used as an open source for academicians. Analysis on ISCAS 85 circuit along with some basic combinational circuits are present for stuck-at faults. KEYWORDS ATPG, fault equivalence, testability measures, ISCAS, FAN. 1. INTRODUCTION Automatic Test Pattern Generation (ATPG) is the process of generating patterns to test a circuit. A significant amount of research has been done in the area of gate-level combinational ATPG using the stuck-at-fault model. As the numbers of transistors are increasing on chip, it is becoming difficult to generate the test vectors to test all faults. The objective of testing is filtering defective chips from manufactured ones to reduce the fraction of defective parts those are erroneously sold to customers as defect-free parts [1]. The commercial ATPG tools are available in the market like FastScan by Mentor Graphics, TetraMAX by Synopsys. The cost of these ATPGs is high also it is not possible to analyze the algorithm of it. Our aim was to develop an open source advanced ATPG which would be freely available to generate the test patterns and to analyze the concept of controllability, observability and fault equivalence. The single stuck-at- fault model has been widely accepted as a standard target model to generate a set of test patterns to detect all the stuck faults in the circuit [2]. In this paper single stuck at fault model is considered. If we consider single stuck at fault (Stuck at 0 and Stuck at 1) then the number of faults and test vectors are 2n, where n is number of nets. Size of test vector becomes large for large combinational circuits. The bandwidth requirement of ATE and test time may be more in this case [3]. No doubt that test vector compression methods are available but prior to it fault reduction is possible using fault equivalence method. The reduced fault set concept using fault equivalence is described and developed in [4]. ATPG (Automatic Test Pattern Generation) should be guided by the testability measures to choose a decision during justification and propagation. These measures serve as heuristics and represent the relative difficulty of justifying a gate value to a control input or propagating a fault effect to an observe point. The testability measures, controllability and observability is described and developed in [5].
  • 2. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 12 The proposed ATPG algorithm is based on the concept of fault equivalence to reduce the number of faults and testability measure. The algorithm used for the development of this kind of ATPG is based on FAN: fanout oriented test generation algorithm. The proposed algorithm is developed using C++ language. The results for ISCAS (International Symposium on Circuits and Systems) 85 C17 benchmark circuit are given in result section. 2. FAN: FANOUT ORIENTED TEST GENERATION ALGORITHM FAN algorithm is developed by H. Fujiwara and Shimono [6]. Terminology: When a line L is reachable from a fanout point, L is said to be bound. A signal line that is not bound is said to be free. When a line is adjacent to some bound line, it is said to be head line. D-frontier consists gates whose output values are X, but have D (or D’) on their inputs. Fan algorithm’s strategies are discussed in brief. The proposed ATPG algorithm uses some of these concepts to make it less complex. ‱ In each step of the algorithm, determine as many signal values as possible which can be uniquely implied ‱ Assign a faulty signal value D or D’ which is uniquely determined or implied by the fault under consideration ‱ When the D-frontier consists of a single gate, apply a unique sensitization ‱ Stop the backtrace at a head line, and postpone the line justification for the head line to the last ‱ Do multiple backtracing, that is, concurrent tracing along more than one path. This is more efficient than the backtrace along a single path. 3. IMPLEMENTATION OF PROPOSED ADVANCED ATPG The first task is to develop program to find the number of headlines, bound lines and free lines in the combinational circuit. Head line, bound lines and free lines are static i.e. they are fixed according to circuit topology. The status of all these line is stored in text file which will be act as an input to the further programs like multiple backtracing, forward implication, backward implication. The flow chart to find head line, bound line and free line is given in figure 1.
  • 3. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 13 Figure 1. Flow chart to find head, bound and free lines Logic to find headlines, bound lines and free lines 1. Define all the directives, data and variable type. 2. Read the netlist file using ‘fopen’ in read mode for which head line, bound lines and free lines are to be decided. Netlist is in ISCAS format. 3. Open file in write mode "output headlines.txt" in which output is be stored. 4. Here 1 is used head line, 2 for bound line, 3 for free line. Integers are taken instead of character sothat variable type will not differ. 5. Initially assign number 3 which is considered as free line to all the nets of the circuit. 6. Search fanout branches net numbers (netno) from the netlist which is written in ISCAS format. Assign fanout branch as 2-bound line. 7. Search the ‘stem’ of fanout branches from netlist. Assign the stem’s netno 1-head line. 8. assign that net as 1-head line. 9. Assign that net as 1-head line if 3-free line is present and no 2-bound line is assigned earlier to that net. 10. Search the gate to which the fanout branch works as an input, find second input to that gate. 11. Fanout branch may be first input (fanin1) or second input (fanin2), if it is fanin1 then assign 1-head line to fanin2 and if it is fanin2 assign 1-head line to fanin1, provided that there is 3-free line available and no 2-bound line is assigned. The flow chart of proposed ATPG algorithm is given in figure 2. It is used for combinational circuit with 2-fanin-fanout gate like and, nand, or, nor, not and exor. Here single stuck at fault is
  • 4. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 14 considered. The reduced fault list generated by fault equivalence method [4] is used as fault list for this algorithm. Now the number of faults are less. The different functions like backward implication, multiple backtrace, forward implication are developed separately (A, B,C respectively shown in figure 2). Figure 2 .Proposed ATPG algorithm FAN algorithm applies unique implication in both forward and backward directions, in the proposed ATPG algorithm first backward implication is performed. Take justification value v’ where v (value-logic 0 or 1) is stuck at fault present on the net. Now perform the implication in backward direction. The flow chart of backward implication is given in figure 3. With justification value start backward implication until primary input reaches. In this strategy use testability measures controllability 0 and controllability 1 .When only one fanin is to be justify then use fanin with minimum controllability value. We got the values of combinational controllability 0 and 1 (CC0, CC1) from [5]. Here ‘8’ is used as don’t care bit ‘X’.
  • 5. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 15 Figure 3. Flow chart of backward implication Next step is to decide the current objective for multiple backtracing for each fault. If fault is present on PI (primary Input) and it is stem then find branches of it, assign justification values to branches. The branches may be fanin to gate, take gate type and non-controlling value of the gate .This is now ‘current objective’ value and that net number is current objective netno. If fault is on PI and it is fanin to gate then again repeat the process mentioned as above. In case of exor gate where controlling value is not exists, according to the justification value, both the fanins will be added to current objective netno with corresponding values. After getting the final current objectives start multiple backtrace with current objective netno and value. We used multiple backtrace as used by FAN algorithm. Do backtracing until the current objective reaches null. If stem comes in between then add it to ‘stem objective’. Here an array is formed for ‘stem objective’ with stem netno, n0 (netno), n1 (netno). Where n0 (netno) shows how many times the logic value 0 comes at the stem netno and n1 (netno) shows the how many times the logic 1 value comes at stem netno. If one of them is zero then contradiction will not occurs. If n0>n1 then take logic value 0 for further backtracing. If n1>n0 then take logic value 1 for further
  • 6. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 16 backtracing. Here again testability measures controllability 0 and controllability 1 is used while deciding the value of one fanin or both the fanins Take stem objective one by one as current objective and do multiple backtracing until head objective reaches. Store the head objective .The flow chart of multiple backtracing is shown is figure 4. The outcome of multiple backtrace is head objective’s netno and its logical value. Figure 4. Flow chart of multiple backtrace In next step take head objective one by one and perform forward implication. This process starts from head line upto PO .If PO reaches then stop, making PO flag ON. In each step of forward implication, check the value on net assigned during the backward implication. If both the values, assigned during backward implication and value to be assign during forward implication are matches then only assign otherwise take the reverse decision, make complimentary value of head objective and do forward implication. Even if there is a mismatch or contradiction then return to the end of program. Forward implication logic is described by the flow chart given in figure 5.
  • 7. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 17 Figure 5 .Flow chart of forward implication Check whether error reached at PO or not. Also check the D-frontier. It checks the D-frontier at one level. Check whether all bound lines are justified or not. If some bound lines are remain unjustified then according to the gate type, other fanin and output value decide value of unjustified bound line and take them as current objective. Call multiple backtrace function for these lines. It might be possible that the head line may not be primary input. If it is not primary input then call backward implication function for those lines. 4. EXAMPLE OF PROPOSED ATPG ALGORITHM ISCAS 85 C17 benchmark circuit is taken to explain the working of proposed ATPG algorithm. Consider the stuck at 0 (s_a_0) fault on net no. 23.Now the justification value j value (v’) is 1. 1. Initially consider don't care bit X on each net. 2. First apply backward implication: start from net under fault up to the primary input with j value =1. Implied values are shown in figure 6. In this case when only one input is to be justify then compare the controllability values of both the fanins of gate and assign value
  • 8. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 18 to the fanin with less controllability value (cc0 ,cc1 depending upon the value to be justified. Figure 6. C17 circuit with backward implication values 3. Fault is at PO sothat D-frontier of it becomes gate ahead to net number 23. Initial objective is (23, 1). Select one gate from D-frontier, assign controlling value to the input of that gate which has X value. In this case assign controlling value of nand gate 0 to net no. 21 which has X value. So (21, 1) is current objective. 4. Start multiple backtrace with current objectives. 5. Remove one current objective, which is process entry for multiple backtrace. 6. (21, 1) is fanout branch, assign value to stem 16. (16, 1) is added to stem objective. 7. Now current objective is null but stem objective is present sothat take (16, 1) as current objective. 8. (16, 1) is output of gate. Calculate inval= Vk exored i, Where Vk is multiple backtrace value and i is inversion value of that gate. Here inval=0. So inval is equal to controlling value of nand gate (0=0). Assign controlling value C to one of the input i.e. 0. Again it uses controllability to assign value to the input. Here value 0 is assign to input netno 2. Now a current objective is (2, 0). 9. Take one current objective (2, 0). It is head line so stop the backtrace here for this objective. Store net no. and value in head objective (2, 0).The various objective status is shown in table 1. Table 1. Status of various objectives 10. At this stage stem and current objectives are null. Take head objective one by one and apply forward implication. Forward implication values are shown in figure 7. Here only one head objective is present (2, 0).
  • 9. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 19 11. Here no contradiction has occurred while doing forward implication. Figure 7. C17 circuit with forward implication values 12. Now check whether there is any unjustified bound line present or not. Netno10 and 22 are bound lines and these are unjustified. Start from PO, unjustified line closest to PO is 22, both of these inputs are not set to value. Take another unjustified bound line. 10 is input to nand gate, output of nand gate is undefined and other input is 1. So set value of 10 as non-controlling value of gate i.e. 1. 13. Now the current objective is (1, 0).The value of netno 1 is set to 0.Thus the test vector generated is 000X1. 5. RESULTS The programs for all above concepts are developed in C++.The snap shots of output window are shown in this section. The proposed ATPG algorithm is generic. Figure 8 shows the reduced fault list for ISCAS85 C17 benchmark circuit. The first column of the output window shows the net number and second column shows the fault present on that corresponding net number. The fault present is either stuck at 0 or stuck at 1. Figure 8. Snap shot of output of ISCAS 85 C17 benchmark circuit for reduced fault set Figure 9 shows the output of testability measures controllability and observability. Here first column of output window shows the net number, second column is for controllability 0- CC0, third is controllability 1-CC1 and forth column shows the observability–ob for corresponding net number.
  • 10. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 20 Figure 9. Snap shot of output of ISCAS 85 C17 benchmark circuit for controllability and observability Figure 10 shows the test vector generated by proposed ATPG algorithm. The size of test vector is same as the number of PIs. The first column is net number, second column is stuck at fault present on that net either stuck at 0 or stuck at 1. All other columns represents test vector for corresponding fault on net. Here “8” is stored instead of don’t care (x). Figure 10. Snap shot of output of proposed ATPG for ISCAS 85 C17 benchmark circuit The test patterns are generated for some combinational circuits using proposed ATPG. The number of reduced bits and computing time for these circuits are mentioned in table 2.
  • 11. International Journal of VLSI design & Communication Systems (VLSICS) Vol.5, No.2, April 2014 21 Circuit # net # bits Computing time (sec) Before fault reduction After fault reduction C17 17 170 110 0.0467000 Circuit 1 29 348 312 0.0560000 Circuit 2 12 72 63 0.0260000 Table 2. Comparisons of bits and computing time 6. CONCLUSION The proposed combinational ATPG algorithm is less complex. Initial fault reduction is done using fault equivalence method. The algorithm is also follows the testability measures for better assignment of justification values. This can be keep as freeware for test generation and analyses purpose to academicians. REFERENCES [1] Sooryong Lee, Brad Cobb, Jennifer Dworak, Michael R. Grimaila and M. Ray Mercer, “A New ATPG Algorithm to Limit Test Set Size and Achieve Multiple Detections of all Faults”, in the proceedings of the Design Automation and Test in Europe Conference, 2002. [2] Abramovici, M.A. Breuer and A.D. Friedman, “Digital Systems Testing and Testable Design”, IEEE Press, NJ 1990 [3] Nur A. Touba, "Survey of Test Vector Compression Techniques,"IEEE Design & Test of Computers, vol. 23, no. 4, pp. 294-303, July/August, 2006. [4] Vaishali Dhare, Usha Mehta, “Implementation of Compaction Algorithm for ATPG Generated Partially Specified Test Data”, International Journal of VLSI design & Communication Systems, Pg.no.93-103,Vol.4, No.1, February 2013. [5] Vaishali Dhare, Usha Mehta, “Development of Controllability Observability Aided Combinational ATPG with Fault Reduction”, Lecture Notes in Computer Science, Recent Trends in Networks and Communications, Springer, Pg. No 682-692, July 2010. [6] Hideo Fujiwara., Takeshi Shimono, “On the Acceleration of Test Generation Algorithm”, IEEE transaction on computers, Vol C-32, No 12, December 1983, pp.1137-1144. [7] S.C. Chang, W.B. Jone and SS. Chang, “TAIR: Testability Analysis by Implication Reasoning”, IEEE Trans on CAD, Vol. 19, No. 1, January 2000, pp. 152-160. [8] David Bryan, ISCAS’85 benchmark circuits and netlist format, North Carolina State University. [9] Micheal Bushnell and Vishwani Agrawal, “Essentials of Electronic Testing”. Springer Publication.