| 12 | ExecutionFrame::ExecutionFrame() {} |
| 13 | |
| 14 | IExecutionFrame* ExecutionFrame::ExecuteWorkloads(IExecutionFrame* previousFrame) |
| 15 | { |
| 16 | IgnoreUnused(previousFrame); |
| 17 | for (auto& workload: m_WorkloadQueue) |
| 18 | { |
| 19 | workload->Execute(); |
| 20 | } |
| 21 | return m_NextExecutionFrame; |
| 22 | } |
| 23 | |
| 24 | void ExecutionFrame::PostAllocationConfigure() |
| 25 | { |
no test coverage detected