| 40 | } |
| 41 | |
| 42 | void TearDown() override { |
| 43 | forceMemoryCleanup(); |
| 44 | auto [used, total] = getGPUMemoryMB(); |
| 45 | LOG_INFO("Final VRAM: {} MB (delta from baseline: {} MB)", |
| 46 | used, static_cast<int>(used) - static_cast<int>(baseline_vram_mb_)); |
| 47 | } |
| 48 | |
| 49 | size_t baseline_vram_mb_ = 0; |
| 50 | }; |
nothing calls this directly
no test coverage detected