Build run list
| 522 | |
| 523 | // Build run list |
| 524 | struct RunSpec { |
| 525 | const ModelEntry * entry; |
| 526 | bool use_gpu; |
| 527 | }; |
| 528 | std::vector<RunSpec> runs; |
| 529 | for (const auto & e : entries) { |
| 530 | if (!gpu_only) runs.push_back({&e, false}); |
nothing calls this directly
no outgoing calls
no test coverage detected