This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 169
Fix hang caused by OUT_ALLOC and remove macro #523
Merged
Merged
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
1. The reason of hang caused by OUT_ALLOC is lack of available output stream buffer. The fix is to seperate the outputBufferFifoInitCount from inputOutputBufferFifoInitCount. And increase its size. 2. Clean up the OUT_ALLOC macro. 3. Fix typo in PK. Signed-off-by: Jun Tian <jun.tian@intel.com>
intelmark
reviewed
Apr 15, 2020
intelmark
reviewed
Apr 15, 2020
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.
Seems like the PR is removing the OUT_ALLOC define and always outputting bitstream allocations at run time. "Fix and remove OUT_ALLOC" would be more appropriate
Austin-Hu
reviewed
Apr 15, 2020
Signed-off-by: Jun Tian <jun.tian@intel.com>
tianjunwork
changed the title
Fix and clean up OUT_ALLOC
Fix hang caused by OUT_ALLOC and remove macro
Apr 15, 2020
Finished test with -n 1000. No hang. No new failed cases other than the existing issues.
|
Hi @intelmark @Austin-Hu , good to go? |
Austin-Hu
approved these changes
Apr 17, 2020
looks good! (aside from those test failures which we'll tackle separately) |
Closed
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
The fix is to seperate the outputBufferFifoInitCount from inputOutputBufferFifoInitCount.
And increase its size.
Signed-off-by: Jun Tian jun.tian@intel.com
closes #514, #497