forked from Xilinx/finn
-
Notifications
You must be signed in to change notification settings - Fork 3
[Thresholding] Generalize data layouts for node execution #50
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
27 commits merged into
eki-project:dev
from
iksnagreb:feature/generalized_thresholding_layouts
Mar 12, 2025
Merged
[Thresholding] Generalize data layouts for node execution #50
27 commits merged into
eki-project:dev
from
iksnagreb:feature/generalized_thresholding_layouts
Mar 12, 2025
Conversation
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
Fix: Replace distutil copy_tree with shutil
Previously, hw_deployment_* directories were being found. The result of this "find" was a list of directory paths which Jenkins was not handling correctly. Removed this find and instead wrapped the copy in a try/catch, if an error occurs catch it and error accordingly.
Jenkinsfile updates
[Docker] Derive FINN_DOCKER_TAG from the SCRIPTPATH
[Deps] Add "pyyaml==6.0.1" dependency to Dockerfile
[Lookup] Relax input datatype constraints
…_safe Fix: Make Test Suite Parallelizable
…tting fifos in the set_fifo_depths transformation as it is unsupported and leads to backpressure issues.
…ing with a fifo depth of 1, added an assertion to check all fifo depths are okay
Guard Q_srl against Instantiation with a Depth below Two
…e shallow fifos is enabled
See fastmachinelearning/qonnx#143 for the similar generalization applied to QONNX MultiThreshold
e16eaed
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.
See fastmachinelearning/qonnx#143 for the similar generalization applied to QONNX MultiThreshold
See Xilinx#1289