Add an upper bound for the video decoder workaround#3609
Merged
JanuszL merged 2 commits intoNVIDIA:mainfrom Jan 11, 2022
Merged
Add an upper bound for the video decoder workaround#3609JanuszL merged 2 commits intoNVIDIA:mainfrom
JanuszL merged 2 commits intoNVIDIA:mainfrom
Conversation
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
Contributor
Author
|
!build |
jantonguirao
approved these changes
Jan 10, 2022
mzient
reviewed
Jan 11, 2022
| nvml::Init(); | ||
| static float driver_version = nvml::GetDriverVersion(); | ||
| if (driver_version > 460) | ||
| if (driver_version > 460 && driver_version <= 470.21) |
Contributor
There was a problem hiding this comment.
Suggested change
| if (driver_version > 460 && driver_version <= 470.21) | |
| if (driver_version > 460 && driver_version < 470.21) |
I think it was fixed in 470.21 or even earlier.
Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
Contributor
Author
|
!build |
Collaborator
|
CI MESSAGE: [3734504]: BUILD STARTED |
mzient
approved these changes
Jan 11, 2022
Collaborator
|
CI MESSAGE: [3734504]: BUILD PASSED |
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jan 23, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Feb 21, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
May 13, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
cyyever
pushed a commit
to cyyever/DALI
that referenced
this pull request
Jun 7, 2022
- there is a bug when decoding video on non-default stream in selected driver leading to memory corruption. This PR adds a check for the last driver version that needs the workaround Signed-off-by: Janusz Lisiecki <jlisiecki@nvidia.com>
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
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.
in selected driver leading to memory corruption. This
PR adds a check for the last driver version that needs
the workaround
Signed-off-by: Janusz Lisiecki jlisiecki@nvidia.com
Description
What happened in this PR
in selected driver leading to memory corruption. This
PR adds a check for the last driver version that needs
the workaround
Additional information
Checklist
Tests
Documentation
DALI team only
Requirements
REQ IDs: N/A
JIRA TASK: DALI-2534