sec_ded_trim
Component for trimming and distributing residual and latent fault rates after SEC-DED processing (LPDDR5).
SecDedTrim
Bases: Base
Component for trimming and distributing residual and latent fault rates after SEC-DED processing.
This module chains sequential split operations for SBE, DBE, and TBE fault types to model the final trimming behavior of the LPDDR5 architecture.
Source code in src/ecc_analyzer/models/lpddr5/sec_ded_trim.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | |
__init__(name)
Initializes the SecDedTrim component with predefined split parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The descriptive name of the component. |
required |
Source code in src/ecc_analyzer/models/lpddr5/sec_ded_trim.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | |
configure_blocks()
Configures the root block as a collection of split operations.
Redistributes faults for both residual (SPFM) and latent (LFM) paths.
Source code in src/ecc_analyzer/models/lpddr5/sec_ded_trim.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | |