bus_trim
Component for trimming and distributing failure rates across the bus architecture (LPDDR4).
BusTrim
Bases: Base
Component for trimming and distributing failure rates across the bus architecture.
This module injects specific bus-related fault sources (MBE, AZ) and redistributes SBE, DBE, and TBE faults for both SPFM and LFM paths.
Source code in src/ecc_analyzer/models/lpddr4/bus_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 52 53 54 55 | |
__init__(name)
Initializes the BusTrim component with LPDDR4-specific split parameters.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The descriptive name of the component. |
required |
Source code in src/ecc_analyzer/models/lpddr4/bus_trim.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | |
configure_blocks()
Configures the root block as a collection of fault injections and split operations.
Uses a SumBlock to aggregate source injections and parallel redistribution (SplitBlocks) of incoming faults.
Source code in src/ecc_analyzer/models/lpddr4/bus_trim.py
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | |