NVIDIA DeepStream SDK API Reference

6.4 Release
Version Number API

Detailed Description

Defines the API used to get the current version number of DeepStream and its dependencies.

Macros

#define NVDS_VERSION_MAJOR   6
 
#define NVDS_VERSION_MINOR   4
 
#define NVDS_VERSION_MICRO   0
 

Functions

void nvds_version (unsigned int *major, unsigned int *minor)
 Get the DEEPSTREAM_SDK major and minor version numbers and return them in major and minor variable pointers. More...
 
void nvds_version_print (void)
 Print the version as major.minor. More...
 
void nvds_dependencies_version_print (void)
 Print the versions of dependencies such as Cuda, cuDNN and TensorRT. More...
 

Macro Definition Documentation

◆ NVDS_VERSION_MAJOR

#define NVDS_VERSION_MAJOR   6

Definition at line 32 of file nvds_version.h.

◆ NVDS_VERSION_MICRO

#define NVDS_VERSION_MICRO   0

Definition at line 34 of file nvds_version.h.

◆ NVDS_VERSION_MINOR

#define NVDS_VERSION_MINOR   4

Definition at line 33 of file nvds_version.h.

Function Documentation

◆ nvds_dependencies_version_print()

void nvds_dependencies_version_print ( void  )

Print the versions of dependencies such as Cuda, cuDNN and TensorRT.

◆ nvds_version()

void nvds_version ( unsigned int *  major,
unsigned int *  minor 
)

Get the DEEPSTREAM_SDK major and minor version numbers and return them in major and minor variable pointers.

Parameters
[in]majorholds the major part of DEEPSTREAM_SDK version.
[in]minorholds the minor part of DEEPSTREAM_SDK version.

◆ nvds_version_print()

void nvds_version_print ( void  )

Print the version as major.minor.

To obtain major and minor, this function calls nvds_version.