-
Notifications
You must be signed in to change notification settings - Fork 415
Update the vqm2blif parser to add support for Stratix 10 and Agliex vqm files #1936
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
2a7e1fc
modify the yacc file in order for the parser to accept a mix of
kimiatkh 9d31a4a
modify the flex file to skip ! operator
kimiatkh 1693be2
modify the flex file in order for the parser to accept bit strings in
kimiatkh ff3dd1b
modify the flex file so if there is no space before ; at the end of the
kimiatkh 452a0af
modify the yacc file so the names that start with \ (TOKEN_ESCAPEID) can
kimiatkh 8c65d7f
modify the flex file so that the synthesis attributes and directives
kimiatkh dc95c1e
Add Stratix 10 and Agilex to the device parameter database so they are
kimiatkh fc53f08
add a few comments
kimiatkh 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
This file contains hidden or 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 hidden or 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 hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -197,7 +197,9 @@ extern t_boolean buffd_outs; //user-set flag that regulates whether to keep buff | |
*/ | ||
const map<std::string, DeviceInfo> device_parameter_database { | ||
// stratix 4 device | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add a more descriptive comment here (device family, combinational cell name, output name, 1?, dff name, dff output name). |
||
{"stratixiv", {"stratixiv_lcell_comb", "combout", 1, "dffeas", "q" }} | ||
{"stratixiv", {"stratixiv_lcell_comb", "combout", 1, "dffeas", "q" }}, | ||
{"stratix10", {"fourteennm_lcell_comb", "combout", 1, "fourteennm_ff", "q" }}, | ||
{"agilex", {"tennm_lcell_comb", "combout", 1, "tennm_ff", "q" }} | ||
}; | ||
|
||
#endif | ||
|
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.
probably want to explain this means inversion in the vqm netlist, but we are ignoring it (hence the LUTmask won't be correct).