(self)
| 82 | assert gpu.memory_bandwidth_gbps == 256.0 |
| 83 | |
| 84 | def test_nvidia_gtx_1080(self): |
| 85 | gpu = create_synthetic_gpu("GTX 1080") |
| 86 | assert gpu.vram_bytes == 8 * _GiB |
| 87 | assert gpu.vendor == "nvidia" |
| 88 | assert gpu.compute_capability == (6, 1) |
| 89 | |
| 90 | def test_a100_80gb_alias(self): |
| 91 | gpu = create_synthetic_gpu("A100 80GB") |
nothing calls this directly
no test coverage detected