-
Notifications
You must be signed in to change notification settings - Fork 184
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
modules/dbe - lz4 encoder and decoder #1079
Closed
Closed
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
Temporary get improved version of the cocotb_test() rule from a forked repository. Internal-tag: [#44586] Signed-off-by: Robert Winkler <[email protected]>
Internal-tag: [#46586] Signed-off-by: Robert Winkler <[email protected]>
The library contains the XLSChannelDriver and XLSChannelMonitor classes, which can be used to send or receive data from an XLS channel in a Cocotb simulation, respectively. Internal-tag: [#46586] Signed-off-by: Robert Winkler <[email protected]>
This commit adds an example that uses the Cocotb framework to validate behavior of the Verilog file converted from a simple DSLX code Internal-tag: [#46586] Signed-off-by: Robert Winkler <[email protected]>
Creates cocotb_xls_test macro that generates a file with the timestamp specified in the rule definition. The macro is required to generate the timestamp for Icarus Verilog smulation in Cocotb. Internal-tag: [#46586] Signed-off-by: Robert Winkler <[email protected]>
Signed-off-by: Roman Dobrodii <[email protected]>
Initialization check did not work properly with masked reads when more partitions have been initialized than the read actually requested. Added test for masked reads and writes when NUM_PART != DATA_WIDTH. Signed-off-by: Roman Dobrodii <[email protected]>
Temporary solution. Without this, multiple cocotb test targets in the same dir do not work. Signed-off-by: Roman Dobrodii <[email protected]>
Example implementation of Lz4 - a dictionary-based data compression algorithm. Signed-off-by: Roman Dobrodii <[email protected]>
Superseded by #1092 |
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.
This is an implementation of Lz4 encoder and decoder in DSLX and accompanying cocotb testsuites. It supersedes #1075 .
The source branch additionally includes:
Above things will be dropped from this PR once we get the respective PRs merged.