(t *testing.T)
| 78 | } |
| 79 | |
| 80 | func TestNeedsGPUCountPhase(t *testing.T) { |
| 81 | s := testSpecStore() |
| 82 | |
| 83 | assert.False(t, s.NeedsGPUCountPhase("a6000"), "single-count GPU should not need count phase") |
| 84 | assert.True(t, s.NeedsGPUCountPhase("a100xl"), "multi-count GPU should need count phase") |
| 85 | assert.True(t, s.NeedsGPUCountPhase("h100"), "h100 has multiple counts") |
| 86 | } |
| 87 | |
| 88 | func TestVCPUOptions(t *testing.T) { |
| 89 | s := testSpecStore() |
nothing calls this directly
no test coverage detected