mirror of
https://github.com/clearml/go-nvlib
synced 2025-01-31 02:47:02 +00:00
nvpci: Add GetGPUByIndex()
Signed-off-by: Christopher Desiniotis <cdesiniotis@nvidia.com>
This commit is contained in:
parent
09ae86c8e0
commit
6ff7845b92
@ -46,6 +46,7 @@ type Interface interface {
|
||||
GetVGAControllers() ([]*NvidiaPCIDevice, error)
|
||||
GetNVSwitches() ([]*NvidiaPCIDevice, error)
|
||||
GetGPUs() ([]*NvidiaPCIDevice, error)
|
||||
GetGPUByIndex(int) (*NvidiaPCIDevice, error)
|
||||
}
|
||||
|
||||
// MemoryResources a more human readable handle
|
||||
@ -353,3 +354,17 @@ func (p *nvpci) GetGPUs() ([]*NvidiaPCIDevice, error) {
|
||||
|
||||
return filtered, nil
|
||||
}
|
||||
|
||||
// GetGPUByIndex returns an NVIDIA GPU device at a particular index
|
||||
func (p *nvpci) GetGPUByIndex(i int) (*NvidiaPCIDevice, error) {
|
||||
gpus, err := p.GetGPUs()
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("error getting all gpus: %v", err)
|
||||
}
|
||||
|
||||
if i < 0 || i >= len(gpus) {
|
||||
return nil, fmt.Errorf("invalid index '%d'", i)
|
||||
}
|
||||
|
||||
return gpus[i], nil
|
||||
}
|
||||
|
@ -66,6 +66,13 @@ func TestNvpci(t *testing.T) {
|
||||
require.Equal(t, ga100PmcID, bar0.Read32(0))
|
||||
|
||||
require.Equal(t, devices[0].IsVF, false, "Device incorrectly identified as a VF")
|
||||
|
||||
device, err := nvpci.GetGPUByIndex(0)
|
||||
require.Nil(t, err, "Error getting GPU at index 0")
|
||||
require.Equal(t, "0000:80:05.1", device.Address, "Wrong Address found for device")
|
||||
|
||||
device, err = nvpci.GetGPUByIndex(1)
|
||||
require.Error(t, err, "No error returned when getting GPU at invalid index")
|
||||
}
|
||||
|
||||
func TestNvpciNUMANode(t *testing.T) {
|
||||
|
Loading…
Reference in New Issue
Block a user