diagnostic tests and full-response fault dictionary

21
10/28/2009 VLSI Design & Test Seminar 1 Diagnostic Tests and Full-Response Fault Dictionary Vishwani D. Agrawal ECE Dept., Auburn University Auburn, AL 36849 October 28, 2009

Upload: enya

Post on 11-Feb-2016

37 views

Category:

Documents


0 download

DESCRIPTION

Diagnostic Tests and Full-Response Fault Dictionary. Vishwani D. Agrawal ECE Dept., Auburn University Auburn, AL 36849 October 28, 2009. Mohammed Ashfaq Shukoor Vishwani D. Agrawal. A Two Phase Approach for Minimal Diagnostic Test Set Generation. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1

Diagnostic Tests and Full-Response Fault Dictionary

Vishwani D. AgrawalECE Dept., Auburn University

Auburn, AL 36849

October 28, 2009

Page 2: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 2

A Two Phase Approach for Minimal Diagnostic Test Set

GenerationMohammed Ashfaq Shukoor

Vishwani D. Agrawal

14th IEEE European Test SymposiumSeville, Spain, May 25-28, 2009

Auburn University, Department of Electrical and Computer Engineering Auburn, AL 36849, USA

Page 3: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 3

A Primal-Dual Solution to Minimal Test Generation Problem

Auburn University, Department of Electrical and Computer Engineering Auburn, AL 36849, USA

Mohammed Ashfaq Shukoor Vishwani D. Agrawal

12th IEEE VLSI Design and Test Symposium, 2008, Bangalore

Page 4: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 44

Outline Introduction Motivation Fault Diagnostic Table Diagnostic ILP Diagnostic Fault Independence 2-phase Approach Results Conclusion & Future Work

Page 5: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 55

Fault Dictionary Based Diagnosis

• Fault dictionary is a database of simulated test responses for all modeled faults.

• Used by some diagnosis algorithms:– It is fast– No simulation at the time of diagnosis.

• Dictionary can be very large, however!• Two most popular forms of dictionaries are:

– Pass-Fail Dictionary– Full-Response Dictionary

Page 6: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 66

Pass-Fail Dictionary• For each vector store the list of all detectable faults.• Total storage requirement: F T bits, where F is number of

faults and T is number of vectors.

Faults

Test Vectors

t1 t2 t3 t4 t5

f1f2f3f4f5f6f7f8

10011111

01110010

11110001

01011000

01100001

Example:

Fault Syndrome (Signature)

‘1’ → detected (fail)

‘0’ → not detected (pass)

Page 7: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 77

Full-Response Dictionary

FaultsOutput Responses

t1 t2 t3 t4 t5

f1f2f3f4f5f6f7f8

1 01 11 10 10 00 00 00 0

1 01 11 10 11 01 00 01 0

1 01 01 00 00 10 10 11 0

1 01 11 00 10 01 01 01 0

0 01 01 10 00 00 00 01 0

‘1’ → detected

‘0’ → not detected

Fault Syndrome

• For each vector, store the fault detection data for all outputs.• Total storage requirement: F T O bits, where F is number

of faults, T is number of vectors and O is number of outputs.

Example:

2 outputs

Page 8: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 88

Motivation for Diagnostic Test Set Minimization

The amount of data in a full-response dictionary is (F T O).

Previous work on dictionary compaction has been concentrated on managing the dictionary organization and encoding.

Data in a full-response dictionary can be optimized by minimizing the number of vectors in the diagnostic test set.

Page 9: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 99

FaultsOutput Responses

T1 T2 T3 T4 T5

F1 1 0 1 0 1 0 1 0 0 0

F2 1 1 1 1 1 0 1 1 0 0

F3 0 1 1 1 1 0 0 0 0 0

F4 0 1 0 1 0 0 0 1 0 0

F5 0 0 0 0 0 1 0 0 1 1

F6 0 0 0 0 0 1 0 0 0 0

F7 1 0 0 0 0 1 0 0 0 1

F8 0 0 1 0 1 0 1 0 0 0

FaultsOutput Responses

T1 T2 T3 T4 T5

1

2

2

3

0

0

0

1

1

1

1

0

2

2

2

1

F1

F2

F3

F4

F5

F6

F7

F8

0

0

0

0

1

0

2

0

1

2

0

3

0

0

0

1

Fault Diagnostic Table We compact the full-response dictionary into a diagnostic table, which contains information on detection and distinguishability of faults.

Example: Consider a circuit with 2 outputs, having 8 faults that are detected and diagnosed by 5 test vectors

Full-response Dictionary Fault Diagnostic Table

1

2

3

0

3

0

1

0

Page 10: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1010

Diagnostic ILP

Subject to constraints:

J

jjv

1Objective: minimize

integer [0, 1], j = 1, 2, . . . , J vj

i = 1, 2, . . . , K (2)

(4)

(1)

If vj = 1, then vector j is included in the minimized vector set• If vj = 0, then vector j is not included in the minimized vector set

K is the number of faults in a combinational circuit

J is the number of vectors in the unoptimized vector set

coefficient aij ≥ 1 only if the fault i is detected by vector j, else it is 0

1.1

J

jpjkjj aav k = 1, 2, . . . , K-1 p = k+1, . . . , K (3)

11

J

jijjav

Faultnumber ( k)

Vector number ( j )1 2 3 4 . . . . . J

1 0 1 1 0 . . . . . 1

2 1 0 1 1 . . . . . 2

3 1 2 0 0 . . . . . 0

4 2 1 0 2 . . . . . 3

. . . . . . . . . . .

. . . . . . . . . . .

K 0 5 0 9 . . . . . 2

Page 11: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1111

Independent Faults [1]:Two faults are independent if and only if they cannot be detected

by the same test vector.

T(f1) T(f2)

f1 and f2 are independent f1 and f2 are not independent

T(f1) T(f2)

[1] S. B. Akers, C. Joseph, and B. Krishnamurthy, “On the Role of Independent Fault Sets in the Generation of Minimal Test Sets,” Proc. International Test Conf., 1987, pp. 1100–1107.

Generalized Fault Independence (Vector-Specific, Multiple-Outputs):

A pair of faults detectable by a vector set V is said to be independent with respect to vector set V, if there is no single vector that detects both faults and produces an identical output response.

Fault Independence

Page 12: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1212

Fault detection Table

Fault diagnostic Table

(a) Fault independence

(b) Generalized fault independence

Example (Two-Output Circuit) Guaranteed

diagnosis

Guaranteed diagnosis

Page 13: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1313

0

200000

400000

600000

800000

1000000

1200000

1400000

ALU and Benchmark Circuits

Num

ber o

f Con

stra

ints

Initial Constraints 231 25,651 125,751 271,953 392,941 1,308,153

Final Constraints 61 3,074 14,162 133,698 48,761 106,448

c17 4 alu c432 c499 c880 c1908

Effect of Generalized Independence Relation on the Constraint Set Sizes

Page 14: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1414

Phase-1: Use existing ILP minimization technique to obtain a minimal detection test set from the given unoptimized test set. Find the faults not diagnosed by the minimized detection test set.

Phase-2: Run the diagnostic ILP on the remaining unoptimized test set to obtain a minimal set of vectors to diagnose the undistinguished faults from Phase-1.

Minimal detection test set of Phase-1

Minimal set of diagnostic vectors

from Phase-2

Complete diagnostic

test set

Two-Phase Method

Page 15: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1515

0

10

20

30

40

50

60

Num

ber o

f Vec

tors

1-step 2-phase 1-step 2-phase 1-step 2-phase 1-step 2-phase

ALU and Benchmark Circuits

Additional Diagnostic Vectors

Detection Vectors

Comparison Between 1-Step Diagnostic ILP Run and 2-Phase Method

Complete Diagnostic

Test Set

4-b ALUc17 c432 c880

Page 16: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1616

Results

• SUN Fire 280R, 900 MHz Dual Core machine• ATPG – ATALANTA• Fault Simulator – HOPE• AMPL Package with CPLEX solver for formulating and

solving Linear Programs

Page 17: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1717

Circuit No. of faults

Phase-1 Phase-2Optimized diagnostic

test setOriginal unoptim. Vectors*

Minimal detection

tests

No. of undiag. faults

No. ofunoptim.vectors

No. ofconstraints

Minimized additional

vectors

4b ALU 227 270 12 43 258 30 6 18

c17 22 32 4 6 28 3 2 6

c432 520 2036 30 153 2006 101 21 51

c499 750 705 52 28 653 10 2 54

c880 942 1384 24 172 1358 41 7 33

c1355 1566 903 84 1172 1131 12 2 86

c1908 1870 1479 107 543 1372 186 21 128

c2670 2630 4200 70 833 4130 383 51 121

c3540 3291 3969 95 761 3874 146 27 122

c5315 5291 1295 63 1185 1232 405 42 105

c6288 7710 361 16 2416 345 534 12 28

c7552 7419 4924 122 1966 4802 196 31 153

2-Phase Method

* M. A. Shukoor, Fault Detection and Diagnostic Test Set Minimization, Master’s thesis, Auburn University, ECE Department, May 2009.* M. A. Shukoor and V. D. Agrawal, “A Primal-Dual Solution to the Minimal Test Generation Problem,” Proc. 12th VLSI Design and Test Symp., 2008, pp. 169–179.

Page 18: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1818

Diagnostic Characteristics of Minimized Complete Diagnostic Test Set

1Circuit

2Total

Vectors

3No. of Faults

4Uniquely

Diagnosed Faults

5No. of CEFS

6Undiag.Faults(3 – 4)

7No. of

Syndromes(4 + 5)

8Maximum Faults per Syndrome

9Diagnostic Resolution

4b ALU 18 227 227 0 0 227 1 1.000

c17 6 22 22 0 0 22 1 1.000

c432 51 520 488 16 32 504 2 1.032

c499 54 750 726 12 24 738 2 1.016

c880 33 942 832 55 110 887 2 1.132

c1355 86 1566 397 532 1169 929 3 1.686

c1908 127 1870 1380 238 490 1618 8 1.156

c2670 121 2630 2027 263 603 2290 11 1.149

c3540 122 3291 2720 234 571 3033 8 1.085

c5315 105 5291 4496 381 795 4877 4 1.085

c6288 28 7710 5690 1009 2020 6699 3 1.151

c7552 153 7419 5598 848 1821 6446 7 1.151

Page 19: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 1919

2-Phase vs. Previous WorkCircuit

Pass-fail dictionary compaction [1] 2-Phase Approach [This work]

Fault coverage

%

Minimized vectors

Undisting. fault Pairs

CPUs

Fault coverage

%

Minimized vectors

Undisting. Fault Pairs

CPUs

c432 97.52 68 93 0.1 98.66 54 15 0.94

c499 - - - - 98.95 54 12 0.39

c880 97.52 63 104 0.2 97.56 42 64 2.56

c1355 98.57 88 878 0.8 98.60 80 766 0.34

c1908 94.12 139 1208 2.1 95.69 101 399 0.49

c2670 84.40 79 1838 2.8 84.24 69 449 8.45

c3540 94.49 205 1585 10.6 94.52 135 590 17.26

c5315 98.83 188 1579 15.4 98.62 123 472 25.03

c6288 99.56 37 4491 1659 99.56 17 1013 337.89

c7552 91.97 198 4438 33.8 92.32 128 1289 18.57

[1] Y. Higami and K. K. Saluja and H. Takahashi and S. Kobayashi and Y. Takamatsu, “Compaction of Pass/Fail-based Diagnostic Test Vectors for Combinational and Sequential Circuits,” Proc. ASPDAC, 2006, pp. 75-80.

Page 20: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 2020

Conclusion• Minimization of a diagnostic test set is carried out without loss of

diagnostic resolution of a full-response dictionary.• We have formulated the diagnostic ILP which is an exact method to

minimize a diagnostic test set.• The newly defined generalized independence relation between pairs of

faults reduces the number of fault-pairs that needs to be distinguished.• The two-phase approach has polynomial time complexity (in empirical

sense) and is effective in producing compact diagnostic test sets.• New problems to be solved:

– Define a diagnostic coverage metric similar to the stuck-at detection coverage.– Develop ATPG algorithms to find a distinguishing test for a pair of faults.

Page 21: Diagnostic Tests and Full-Response Fault Dictionary

10/28/2009 VLSI Design & Test Seminar 2121

Thank you …