(self)
| 69 | assert gpu.vendor == "nvidia" |
| 70 | |
| 71 | def test_amd_rx_7900_xtx(self): |
| 72 | gpu = create_synthetic_gpu("RX 7900 XTX") |
| 73 | assert gpu.vram_bytes == 24 * _GiB |
| 74 | assert gpu.vendor == "amd" |
| 75 | assert gpu.memory_bandwidth_gbps is not None |
| 76 | |
| 77 | def test_amd_strix_halo_with_vram_override(self): |
| 78 | gpu = create_synthetic_gpu("Radeon 8060S", vram_override_gb=96) |
nothing calls this directly
no test coverage detected