(self)
| 63 | assert gpu.compute_capability is not None |
| 64 | |
| 65 | def test_nvidia_rtx_3060_ti(self): |
| 66 | gpu = create_synthetic_gpu("RTX 3060 Ti") |
| 67 | assert "RTX 3060 Ti" in gpu.name |
| 68 | assert gpu.vram_bytes == 8 * _GiB |
| 69 | assert gpu.vendor == "nvidia" |
| 70 | |
| 71 | def test_amd_rx_7900_xtx(self): |
| 72 | gpu = create_synthetic_gpu("RX 7900 XTX") |
nothing calls this directly
no test coverage detected