Skip to content

Commit 0fd1450

Browse files
Merge branch 'raytracing-support' into 'master'
Raytracing support See merge request nvidia/container-toolkit/libnvidia-container!11
2 parents 2b2b0e1 + 48d33cc commit 0fd1450

File tree

5 files changed

+32
-22
lines changed

5 files changed

+32
-22
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.0.7-1) UNRELEASED; urgency=medium
2+
3+
* 8d90918a Add Raytracing library
4+
5+
-- NVIDIA CORPORATION <[email protected]> Mon, 11 Nov 2019 13:23:58 -0700
6+
17
libnvidia-container (1.0.6-1) UNRELEASED; urgency=medium
28

39
* b6aff41 Update error messages for CUDA version requirements
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
libnvidia-container.so.1 libnvidia-container1 #MINVER#
2-
NVC_1.0@NVC_1.0 1.0.6
3-
nvc_config_free@NVC_1.0 1.0.6
4-
nvc_config_new@NVC_1.0 1.0.6
5-
nvc_container_config_free@NVC_1.0 1.0.6
6-
nvc_container_config_new@NVC_1.0 1.0.6
7-
nvc_container_free@NVC_1.0 1.0.6
8-
nvc_container_new@NVC_1.0 1.0.6
9-
nvc_context_free@NVC_1.0 1.0.6
10-
nvc_context_new@NVC_1.0 1.0.6
11-
nvc_device_info_free@NVC_1.0 1.0.6
12-
nvc_device_info_new@NVC_1.0 1.0.6
13-
nvc_device_mount@NVC_1.0 1.0.6
14-
nvc_driver_info_free@NVC_1.0 1.0.6
15-
nvc_driver_info_new@NVC_1.0 1.0.6
16-
nvc_driver_mount@NVC_1.0 1.0.6
17-
nvc_error@NVC_1.0 1.0.6
18-
nvc_init@NVC_1.0 1.0.6
19-
nvc_ldcache_update@NVC_1.0 1.0.6
20-
nvc_shutdown@NVC_1.0 1.0.6
21-
nvc_version@NVC_1.0 1.0.6
2+
NVC_1.0@NVC_1.0 1.0.7
3+
nvc_config_free@NVC_1.0 1.0.7
4+
nvc_config_new@NVC_1.0 1.0.7
5+
nvc_container_config_free@NVC_1.0 1.0.7
6+
nvc_container_config_new@NVC_1.0 1.0.7
7+
nvc_container_free@NVC_1.0 1.0.7
8+
nvc_container_new@NVC_1.0 1.0.7
9+
nvc_context_free@NVC_1.0 1.0.7
10+
nvc_context_new@NVC_1.0 1.0.7
11+
nvc_device_info_free@NVC_1.0 1.0.7
12+
nvc_device_info_new@NVC_1.0 1.0.7
13+
nvc_device_mount@NVC_1.0 1.0.7
14+
nvc_driver_info_free@NVC_1.0 1.0.7
15+
nvc_driver_info_new@NVC_1.0 1.0.7
16+
nvc_driver_mount@NVC_1.0 1.0.7
17+
nvc_error@NVC_1.0 1.0.7
18+
nvc_init@NVC_1.0 1.0.7
19+
nvc_ldcache_update@NVC_1.0 1.0.7
20+
nvc_shutdown@NVC_1.0 1.0.7
21+
nvc_version@NVC_1.0 1.0.7

pkg/rpm/SPECS/libnvidia-container.spec

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

8787
%changelog
88+
* Mon Nov 11 2019 NVIDIA CORPORATION <[email protected]> 1.0.7-1
89+
- 8d90918a Add Raytracing library
90+
8891
* Fri Sep 013 2019 NVIDIA CORPORATION <[email protected]> 1.0.6-1
8992
- b6aff41 Update error messages for CUDA version requirements
9093

src/nvc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ extern "C" {
1515

1616
#define NVC_MAJOR 1
1717
#define NVC_MINOR 0
18-
#define NVC_PATCH 6
19-
#define NVC_VERSION "1.0.6"
18+
#define NVC_PATCH 7
19+
#define NVC_VERSION "1.0.7"
2020

2121
#define NVC_ARG_MAX 256
2222

src/nvc_info.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ static const char * const graphics_libs_glvnd[] = {
105105
"libGLESv2_nvidia.so", /* OpenGL ES v2 ICD */
106106
"libGLESv1_CM_nvidia.so", /* OpenGL ES v1 common profile ICD */
107107
"libnvidia-glvkspirv.so", /* SPIR-V Lib for Vulkan */
108+
"libnvidia-cbl.so", /* VK_NV_ray_tracing */
108109
};
109110

110111
static const char * const graphics_libs_compat[] = {

0 commit comments

Comments
 (0)