Merge branch 'libnvdxgdmal' into 'main'

Add libnvdxgdmal library

See merge request nvidia/container-toolkit/container-toolkit!529
This commit is contained in:
Evan Lezar 2024-01-09 14:37:08 +00:00 committed by Evan Lezar
parent 68f0203a49
commit c1eae0deda
2 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@
* Fixed bug in `nvidia-ctk config` command when using `--set`. The types of applied config options are now applied correctly.
* Log explicitly requested runtime mode.
* Remove package dependency on libseccomp.
* Added detection of libnvdxgdmal.so.1 on WSL2.
## v1.14.3
* [toolkit-container] Bump CUDA base image version to 12.2.2.

View File

@ -33,6 +33,7 @@ var requiredDriverStoreFiles = []string{
"libnvidia-ml.so.1", /* Core library for nvml */
"libnvidia-ml_loader.so", /* Core library for nvml on WSL */
"libdxcore.so", /* Core library for dxcore support */
"libnvdxgdmal.so.1", /* dxgdmal library for cuda */
"nvcubins.bin", /* Binary containing GPU code for cuda */
"nvidia-smi", /* nvidia-smi binary*/
}