cadvisor/vendor/github.com/mindprince/gonvml
2020-02-26 09:52:57 -05:00
..
.travis.gofmt.sh update opencontainers/selinux to 1.3.2 2020-02-26 09:52:57 -05:00
.travis.yml update opencontainers/selinux to 1.3.2 2020-02-26 09:52:57 -05:00
bindings_nocgo.go update opencontainers/selinux to 1.3.2 2020-02-26 09:52:57 -05:00
bindings.go update containerd, docker/distribution and mindprince/gonvml 2020-02-26 09:52:49 -05:00
LICENSE Vendor Go bindings for NVML. Don't build a static binary. 2017-11-01 14:41:35 -07:00
Makefile update containerd, docker/distribution and mindprince/gonvml 2020-02-26 09:52:49 -05:00
NVML_NOTICE Vendor Go bindings for NVML. Don't build a static binary. 2017-11-01 14:41:35 -07:00
nvml.h Vendor Go bindings for NVML. Don't build a static binary. 2017-11-01 14:41:35 -07:00
README.md Vendor Go bindings for NVML. Don't build a static binary. 2017-11-01 14:41:35 -07:00

Go Bindings for NVML

NVML or NVIDIA Management Library is a C-based API that can be used for monitoring NVIDIA GPU devices. It's closed source but can be downloaded as part of the GPU Deployment Kit.

The NVML API Reference describe various methods that are available as part of NVML.

The nvml.h file is included in this repository so that we don't depend on the presence of NVML in the build environment.

The bindings.go file is the cgo bridge which calls the NVML functions. The cgo preamble in bindings.go uses dlopen to dynamically load NVML and makes its functions available.