Skip to content

Commit f6b4227

Browse files
Merge pull request #96 from NVIDIA/dependabot/go_modules/main/github.com/NVIDIA/go-nvml-0.13.1-0
Bump github.com/NVIDIA/go-nvml from 0.13.0-1 to 0.13.1-0
2 parents 34fa8ec + b006f0f commit f6b4227

18 files changed

Lines changed: 2050 additions & 542 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/NVIDIA/go-nvlib
33
go 1.25.0
44

55
require (
6-
github.com/NVIDIA/go-nvml v0.13.0-1
6+
github.com/NVIDIA/go-nvml v0.13.1-0
77
github.com/google/uuid v1.6.0
88
github.com/stretchr/testify v1.11.1
99
golang.org/x/sys v0.46.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
github.com/NVIDIA/go-nvml v0.13.0-1 h1:OLX8Jq3dONuPOQPC7rndB6+iDmDakw0XTYgzMxObkEw=
2-
github.com/NVIDIA/go-nvml v0.13.0-1/go.mod h1:+KNA7c7gIBH7SKSJ1ntlwkfN80zdx8ovl4hrK3LmPt4=
1+
github.com/NVIDIA/go-nvml v0.13.1-0 h1:iazm3YDW1mYzvuY0uGyFsDvU87Ahr8P9AATN/VD4PZg=
2+
github.com/NVIDIA/go-nvml v0.13.1-0/go.mod h1:ahi2psRYoa+wYUBIrZPRO+wJs9lcvMhxSSkjjvsJJNQ=
33
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
44
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
55
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=

pkg/nvlib/device/device_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
func pciInfoWithBusID(busID string) nvml.PciInfo {
2929
var info nvml.PciInfo
3030
for i := 0; i < len(busID) && i < len(info.BusId); i++ {
31-
info.BusId[i] = uint8(busID[i])
31+
info.BusId[i] = int8(busID[i])
3232
}
3333
return info
3434
}

vendor/github.com/NVIDIA/go-nvml/pkg/dl/dl.go

Lines changed: 22 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/NVIDIA/go-nvml/pkg/dl/dl_linux.go

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/NVIDIA/go-nvml/pkg/dl/dl_other.go

Lines changed: 33 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/NVIDIA/go-nvml/pkg/nvml/api.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/NVIDIA/go-nvml/pkg/nvml/cgo_helpers_static.go

Lines changed: 48 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)