()
| 51 | |
| 52 | |
| 53 | def test_only_inference_gpu_ids(): |
| 54 | with pytest.raises(ValueError, match="must both be set or both unset"): |
| 55 | validate_dedicated_config(InternalModelConfig(inference_gpu_ids=[1])) |
| 56 | |
| 57 | |
| 58 | def test_empty_trainer_gpu_ids(): |
nothing calls this directly
no test coverage detected