fix(api/libnvml): fix removal for process info v3 APIs on the upstream 535.98 driver #89
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.
Issue Type
Description
Add an extra handler to check the removal of the process info v3 APIs.
Copied from #88 (comment):
Version change:
495.46 -> 510.39.01: NVIDIA/nvidia-settings@b2f0e7f
Add process info v3 APIs but use v2
nvmlProcessInfo_st
struct typedefault:
nvmlDeviceGetComputeRunningProcesses
->nvmlDeviceGetComputeRunningProcesses_v3
nvmlProcessInfo_st
->nvmlProcessInfo_v2_st
530.41.03 -> 535.43.02: NVIDIA/nvidia-settings@39c3e28
Process info v3 APIs use v3
nvmlProcessInfo_st
struct type without a version bumpdefault:
nvmlDeviceGetComputeRunningProcesses
->nvmlDeviceGetComputeRunningProcesses_v3
nvmlProcessInfo_st
->nvmlProcessInfo_v3_st
535.86.05 -> 535.98: NVIDIA/nvidia-settings@0cb3bef
Remove process info v3 APIs and v3
nvmlProcessInfo_st
struct typedefault:
nvmlDeviceGetComputeRunningProcesses
->nvmlDeviceGetComputeRunningProcesses_v2
nvmlProcessInfo_st
->nvmlProcessInfo_v2_st
UPDATE:
535.98 -> 535.104.05: NVIDIA/nvidia-settings@74cae7f
Re-add process info v3 APIs but use v2
nvmlProcessInfo_st
struct typedefault:
nvmlDeviceGetComputeRunningProcesses
->nvmlDeviceGetComputeRunningProcesses_v3
nvmlProcessInfo_st
->nvmlProcessInfo_v2_st
Motivation and Context
Fixes #88