(self)
| 88 | assert gpu.compute_capability == (6, 1) |
| 89 | |
| 90 | def test_a100_80gb_alias(self): |
| 91 | gpu = create_synthetic_gpu("A100 80GB") |
| 92 | assert gpu.vram_bytes == 80 * _GiB |
| 93 | assert gpu.vendor == "nvidia" |
| 94 | assert "(simulated)" in gpu.name |
| 95 | |
| 96 | def test_h100_80gb_alias(self): |
| 97 | gpu = create_synthetic_gpu("H100 80GB") |
nothing calls this directly
no test coverage detected