(t *testing.T)
| 26 | } |
| 27 | |
| 28 | func TestGPUOptions(t *testing.T) { |
| 29 | s := testSpecStore() |
| 30 | |
| 31 | got := s.GPUOptions() |
| 32 | assert.Equal(t, []string{"a6000", "a100xl", "l40", "h100"}, got) |
| 33 | } |
| 34 | |
| 35 | func TestGPUOptions_UnknownGPUAppended(t *testing.T) { |
| 36 | s := NewSpecStore(map[string]api.GpuSpecConfig{ |
nothing calls this directly
no test coverage detected