generated from riscv-software-src/template-riscv-code
-
Notifications
You must be signed in to change notification settings - Fork 58
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
Added Vector Uop Generation Support for Mask Generation and Widening Instructions #181
Merged
kathlenemagnus
merged 16 commits into
riscv-software-src:master
from
kathlenemagnus:vec_mask
Jul 25, 2024
Merged
Changes from 15 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
09a51d9
Added VMASK pipe target and target-to-string map
kathlenemagnus 119d500
Updated logs because of printing unit name bug fix
kathlenemagnus b5d4156
Merge remote-tracking branch 'origin/master' into vec_mask
kathlenemagnus a745ca8
Fixed calculation for number of passes
kathlenemagnus 0839dfe
Added support for different uop gen types
kathlenemagnus e64e657
Cleaned up vector tester and tests
kathlenemagnus 0febeec
Added counter for num uops retired
kathlenemagnus 8ae2465
Added support for single dest and wide dest instructions
kathlenemagnus 47ab576
Added more vec uop gen testing and fixed transfer scalar sources
kathlenemagnus ff9a842
Enabled more vector instructions in the ISA json and script
kathlenemagnus 74cbd30
Rename vector test JSONs to include vset config
kathlenemagnus 5e19ee7
Updated and enabled the multiple vset test
kathlenemagnus 0599189
Merge remote-tracking branch 'origin' into vec_mask
kathlenemagnus f1b4541
Added LMUL 2 test to multiple vset test
kathlenemagnus 75d341a
Append uops to the ROB
kathlenemagnus 8e9c268
PR clean up
kathlenemagnus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to define some additional resources for other types of vector resources like boolean logicals, compares, min/max, multiplies and divides. I'm not sure which operations should be supported by the VALU adder.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we can just support all under VALU adder, and then have a separate unit for masks, slides, and more complex computations like scatter/gather. I guess in the case of scatter/gathers, we just define a new unit that has a state machine to track for the VALU that is used only by that unit.