| 25 | } |
| 26 | |
| 27 | void ZeQueue::Launch(std::shared_ptr<preempt::HwCommand> hw_cmd) |
| 28 | { |
| 29 | auto cmd = std::dynamic_pointer_cast<ZeListExecuteCommand>(hw_cmd); |
| 30 | XASSERT(cmd != nullptr, "hw_cmd is not a ZeListExecuteCommand"); |
| 31 | ZE_ASSERT(cmd->Launch(kCmdq)); |
| 32 | } |
| 33 | |
| 34 | void ZeQueue::Synchronize() |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected