Skip to content

Commit 90bc7a5

Browse files
author
Evan Lezar
committed
Merge branch 'fix-opencl' into 'main'
Add support for NVVM Compiler library See merge request nvidia/container-toolkit/libnvidia-container!182
2 parents c8f267b + dc75747 commit 90bc7a5

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
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.12.0~rc.1-1) experimental; urgency=medium
2+
3+
* Include NVVM compiler library in compute libs
4+
5+
-- NVIDIA CORPORATION <[email protected]> Wed, 28 Sep 2022 10:52:27 +0200
6+
17
libnvidia-container (1.11.0-1) UNRELEASED; urgency=medium
28

39
* Promote 1.11.0~rc.3-1 to 1.11.0-1

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+
* Wed Sep 28 2022 NVIDIA CORPORATION <[email protected]> 1.12.0-0.1.rc.1
103+
- Include NVVM compiler library in compute libs
104+
102105
* Mon Sep 05 2022 NVIDIA CORPORATION <[email protected]> 1.11.0-1
103106
- Promote 1.11.0-0.1.rc.3 to 1.11.0-1
104107

src/nvc.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ extern "C" {
2626
#endif /* __cplusplus */
2727

2828
#define NVC_MAJOR 1
29-
#define NVC_MINOR 11
29+
#define NVC_MINOR 12
3030
#define NVC_PATCH 0
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.
36-
#define NVC_TAG
37-
#define NVC_VERSION "1.11.0"
36+
#define NVC_TAG "rc.1"
37+
#define NVC_VERSION "1.12.0~rc.1"
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
@@ -88,6 +88,7 @@ static const char * const compute_libs[] = {
8888
"libnvidia-allocator.so", /* NVIDIA allocator runtime library */
8989
"libnvidia-compiler.so", /* NVVM-PTX compiler for OpenCL (used by libnvidia-opencl) */
9090
"libnvidia-pkcs11.so", /* Encrypt/Decrypt library */
91+
"libnvidia-nvvm.so", /* The NVVM Compiler library */
9192
};
9293

9394
static const char * const video_libs[] = {

0 commit comments

Comments
 (0)