Skip to content

Commit 66607bd

Browse files
author
Evan Lezar
committed
Merge branch 'cherry-pick-v1.13.5' into 'release-1.13'
Backport changes for v1.13.5 release See merge request nvidia/container-toolkit/libnvidia-container!223
2 parents 31e068e + c83fe42 commit 66607bd

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

pkg/deb/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
libnvidia-container (1.13.5-1) UNRELEASED; urgency=medium
2+
3+
* Include Shared Compiler Library (libnvidia-gpucomp.so) in the list of compute libaries.
4+
5+
-- NVIDIA CORPORATION <[email protected]> Thu, 13 Jul 2023 15:55:20 +0200
6+
17
libnvidia-container (1.13.4-1) UNRELEASED; urgency=medium
28

39
* Bump version to 1.13.4

pkg/rpm/SPECS/libnvidia-container.spec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,9 @@ This package contains command-line tools that facilitate using the library.
9999
%{_bindir}/*
100100

101101
%changelog
102+
* Thu Jul 13 2023 NVIDIA CORPORATION <[email protected]> 1.13.5-1
103+
- Include Shared Compiler Library (libnvidia-gpucomp.so) in the list of compute libaries.
104+
102105
* Tue Jul 11 2023 NVIDIA CORPORATION <[email protected]> 1.13.4-1
103106
- Bump version to 1.13.4
104107

src/nvc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ extern "C" {
2727

2828
#define NVC_MAJOR 1
2929
#define NVC_MINOR 13
30-
#define NVC_PATCH 4
30+
#define NVC_PATCH 5
3131

3232
// Specify the release tag.
3333
// For stable releases, this should be defined as empty.
3434
// For release candidates, this should be defined with the format "rc.1"
3535
// The version string should also be updated accordingly, using a - separator where applicable.
3636
#define NVC_TAG
37-
#define NVC_VERSION "1.13.4"
37+
#define NVC_VERSION "1.13.5"
3838

3939
#define NVC_ARG_MAX 256
4040

src/nvc_info.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ static const char * const compute_libs[] = {
8383
"libcuda.so", /* CUDA driver library */
8484
"libcudadebugger.so", /* CUDA Debugger Library */
8585
"libnvidia-opencl.so", /* NVIDIA OpenCL ICD */
86+
"libnvidia-gpucomp.so", /* Shared Compiler Library */
8687
"libnvidia-ptxjitcompiler.so", /* PTX-SASS JIT compiler (used by libcuda) */
8788
"libnvidia-fatbinaryloader.so", /* fatbin loader (used by libcuda) */
8889
"libnvidia-allocator.so", /* NVIDIA allocator runtime library */

0 commit comments

Comments
 (0)