forked from openhwgroup/cvfpu
-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add configurable redundancy #11
Draft
Lynx005F
wants to merge
13
commits into
pulp-platform:pulp
Choose a base branch
from
Lynx005F:itemm/redundancy_rebase
base: pulp
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Lynx005F
force-pushed
the
itemm/redundancy_rebase
branch
from
June 21, 2024 14:58
f18ad43
to
28b46bd
Compare
…potential cases where a bitflip causes a stall due to activating a division lane that does not exist.
Lynx005F
force-pushed
the
itemm/redundancy_rebase
branch
4 times, most recently
from
July 10, 2024 05:21
c00cf66
to
08cb3fb
Compare
Lynx005F
force-pushed
the
itemm/redundancy_rebase
branch
from
July 16, 2024 12:52
08cb3fb
to
ecb623c
Compare
Lynx005F
force-pushed
the
itemm/redundancy_rebase
branch
4 times, most recently
from
July 30, 2024 12:50
bfa2753
to
ce009bc
Compare
Lynx005F
force-pushed
the
itemm/redundancy_rebase
branch
2 times, most recently
from
August 20, 2024 12:57
8416df1
to
bd7ad85
Compare
- New input signal redundancy_enable_i to switch in between redundant and non-redundant modes. - New output signal fault_detected_o for statistics - Redundancy Implementation selected via Enum in fpnew_pkg. - For TMR based redundancy use a large ID, for DMR base use a small ID and stall for divisions renamed modules
- Removed recursive assignments that can cause trouble in simulation - Removed repeated assignments in always_comb of classifier that cause trouble in simulation - Fixed format selection can evaluate to X when faults are injected into Enum in simulation.
Lynx005F
force-pushed
the
itemm/redundancy_rebase
branch
from
September 3, 2024 19:28
bd7ad85
to
8cd7e50
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds top level modules and ports for time-based redundancy e.g. protection against single event upsets.
Depends on #10 and redundancy cells PRs Redundancy Cells #25 and Redundancy Cells #26.
This changes the ports of the top level module. Newly added are:
fpnew_pkg::DEFAULT_NO_REDUNDANCY
results in the same unit as before)Testing
This version of FPNew can be error injected and analyzed for vulnerabilities to single event upsets with the
itemm/error_injection
branch offpnew_tb
.Synthesis
This version of FPNew can be synthesized with the scripts in the internal gitlab for the R5SCY and CVA6 Core configurations to evaluate area overhead. Depending on the choosen implementation (not disabled ofc), redundancy add 7% - 12% of Area and increases the length of the critical path by a similar amount.
Work in Progress Points